diff options
author | Richard Purdie <richard@openedhand.com> | 2005-09-28 17:22:42 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2005-09-28 17:22:42 +0000 |
commit | ae628e564939adbe4475ffd0eda7ad340118add4 (patch) | |
tree | 1f77246ba44883b21d1fa2db67a13b910e9cc4a2 /openembedded/packages/matchbox-themes-gtk | |
parent | c335f42133a0c16c2f9b5f9e7db0069694f8e96d (diff) | |
download | openembedded-core-ae628e564939adbe4475ffd0eda7ad340118add4.tar.gz openembedded-core-ae628e564939adbe4475ffd0eda7ad340118add4.tar.bz2 openembedded-core-ae628e564939adbe4475ffd0eda7ad340118add4.zip |
Add missing matchbox packages
git-svn-id: https://svn.o-hand.com/repos/poky@48 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/matchbox-themes-gtk')
-rw-r--r-- | openembedded/packages/matchbox-themes-gtk/files/gtkrc | 1 | ||||
-rw-r--r-- | openembedded/packages/matchbox-themes-gtk/matchbox-themes-gtk.bb | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/openembedded/packages/matchbox-themes-gtk/files/gtkrc b/openembedded/packages/matchbox-themes-gtk/files/gtkrc new file mode 100644 index 0000000000..b22b9972cd --- /dev/null +++ b/openembedded/packages/matchbox-themes-gtk/files/gtkrc @@ -0,0 +1 @@ +include "/usr/share/themes/Angelistic/gtk-2.0/gtkrc" diff --git a/openembedded/packages/matchbox-themes-gtk/matchbox-themes-gtk.bb b/openembedded/packages/matchbox-themes-gtk/matchbox-themes-gtk.bb new file mode 100644 index 0000000000..769aeecb10 --- /dev/null +++ b/openembedded/packages/matchbox-themes-gtk/matchbox-themes-gtk.bb @@ -0,0 +1,15 @@ +DESCRIPTION = "Gtk2 theme files to accompany default Matchbox themes" +LICENSE = "GPL" +RDEPENDS = "matchbox-wm gtk2-theme-angelistic" +SECTION = "x11/base" + +SRC_URI = "file://gtkrc" + +FILES_${PN} = "${datadir}/themes" + +do_install() { + install -d ${D}${datadir}/themes/blondie/gtk-2.0 + install -d ${D}${datadir}/themes/MBOpus/gtk-2.0 + install -m 644 ${WORKDIR}/gtkrc ${D}${datadir}/themes/blondie/gtk-2.0/ + install -m 644 ${WORKDIR}/gtkrc ${D}${datadir}/themes/MBOpus/gtk-2.0/ +} |