diff options
author | Mario Domenech Goulart <mario@ossystems.com.br> | 2012-12-03 16:03:23 +0000 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-12-04 10:46:09 +0100 |
commit | 3becce8504033dfac7c497fa12675f873a5df9e0 (patch) | |
tree | e1bb4ab00f3ca251c14d0852fe6e61a9b6d93cbb /meta-oe/recipes-graphics/openbox/openbox_3.5.0.bb | |
parent | e7e3fd797b46a85ffc03cc7c4b2267d686476f93 (diff) | |
download | meta-openembedded-3becce8504033dfac7c497fa12675f873a5df9e0.tar.gz |
openbox: separate package for configuration files (openbox-config)
Change-Id: I528392100854fb73c2a14973fd1bfa9c94e836a7
Signed-off-by: Mario Domenech Goulart <mario@ossystems.com.br>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-graphics/openbox/openbox_3.5.0.bb')
-rw-r--r-- | meta-oe/recipes-graphics/openbox/openbox_3.5.0.bb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/meta-oe/recipes-graphics/openbox/openbox_3.5.0.bb b/meta-oe/recipes-graphics/openbox/openbox_3.5.0.bb index 3f6d7673c..a2c5a66bb 100644 --- a/meta-oe/recipes-graphics/openbox/openbox_3.5.0.bb +++ b/meta-oe/recipes-graphics/openbox/openbox_3.5.0.bb | |||
@@ -9,6 +9,8 @@ SRC_URI = "http://icculus.org/openbox/releases/openbox-${PV}.tar.gz" | |||
9 | SRC_URI[md5sum] = "00441b53cf14c03566c8e82643544ff9" | 9 | SRC_URI[md5sum] = "00441b53cf14c03566c8e82643544ff9" |
10 | SRC_URI[sha256sum] = "6fa90016530b3aa6102e254079461977439398531fb23e7ec076ff2c140fea0a" | 10 | SRC_URI[sha256sum] = "6fa90016530b3aa6102e254079461977439398531fb23e7ec076ff2c140fea0a" |
11 | 11 | ||
12 | PR = "1" | ||
13 | |||
12 | inherit autotools gettext update-alternatives | 14 | inherit autotools gettext update-alternatives |
13 | 15 | ||
14 | ALTERNATIVE_PATH = "${bindir}/openbox" | 16 | ALTERNATIVE_PATH = "${bindir}/openbox" |
@@ -18,7 +20,7 @@ ALTERNATIVE_PRIORITY = "10" | |||
18 | 20 | ||
19 | EXTRA_OECONF += "--with-plugins=none" | 21 | EXTRA_OECONF += "--with-plugins=none" |
20 | 22 | ||
21 | PACKAGES =+ "${PN}-core ${PN}-lxde ${PN}-gnome" | 23 | PACKAGES =+ "${PN}-core ${PN}-lxde ${PN}-gnome ${PN}-config" |
22 | 24 | ||
23 | PACKAGES_DYNAMIC += "^${PN}-theme-.*" | 25 | PACKAGES_DYNAMIC += "^${PN}-theme-.*" |
24 | 26 | ||
@@ -28,7 +30,7 @@ python populate_packages_prepend() { | |||
28 | do_split_packages(d, theme_dir, '(.*)', theme_name, '${PN} theme for %s', extra_depends='', allow_dirs=True) | 30 | do_split_packages(d, theme_dir, '(.*)', theme_name, '${PN} theme for %s', extra_depends='', allow_dirs=True) |
29 | } | 31 | } |
30 | 32 | ||
31 | RDEPENDS_${PN} += "${PN}-core" | 33 | RDEPENDS_${PN} += "${PN}-core ${PN}-config" |
32 | FILES_${PN}-core = "${bindir}/openbox ${libdir}/*${SOLIBS}" | 34 | FILES_${PN}-core = "${bindir}/openbox ${libdir}/*${SOLIBS}" |
33 | 35 | ||
34 | FILES_${PN}-lxde += "${datadir}/lxde/ \ | 36 | FILES_${PN}-lxde += "${datadir}/lxde/ \ |
@@ -37,3 +39,5 @@ FILES_${PN}-lxde += "${datadir}/lxde/ \ | |||
37 | ${datadir}/icons" | 39 | ${datadir}/icons" |
38 | 40 | ||
39 | FILES_${PN}-gnome += "${datadir}/gnome/" | 41 | FILES_${PN}-gnome += "${datadir}/gnome/" |
42 | |||
43 | FILES_${PN}-config += "${sysconfdir}" | ||