diff options
| -rw-r--r-- | meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb | 1 | ||||
| -rw-r--r-- | meta-oe/recipes-graphics/openbox/obconf_git.bb | 33 |
2 files changed, 34 insertions, 0 deletions
diff --git a/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb b/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb index 4ad76934ac..2a84d669a1 100644 --- a/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb +++ b/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb | |||
| @@ -463,6 +463,7 @@ RDEPENDS_packagegroup-meta-oe-graphics ="\ | |||
| 463 | libforms \ | 463 | libforms \ |
| 464 | lxdm \ | 464 | lxdm \ |
| 465 | numlockx \ | 465 | numlockx \ |
| 466 | obconf \ | ||
| 466 | openbox \ | 467 | openbox \ |
| 467 | packagegroup-fonts-truetype \ | 468 | packagegroup-fonts-truetype \ |
| 468 | qrencode \ | 469 | qrencode \ |
diff --git a/meta-oe/recipes-graphics/openbox/obconf_git.bb b/meta-oe/recipes-graphics/openbox/obconf_git.bb new file mode 100644 index 0000000000..53c5898211 --- /dev/null +++ b/meta-oe/recipes-graphics/openbox/obconf_git.bb | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | SUMMARY = "Openbox configuration tool" | ||
| 2 | AUTHOR = "Dana Jansens & Tim Riley & Javeed Shaikh" | ||
| 3 | HOMEPAGE = "http://openbox.org/wiki/ObConf:About" | ||
| 4 | SECTION = "x11/wm" | ||
| 5 | LICENSE = "GPLv2+" | ||
| 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | ||
| 7 | DEPENDS = " \ | ||
| 8 | openbox \ | ||
| 9 | startup-notification \ | ||
| 10 | gtk+3 \ | ||
| 11 | " | ||
| 12 | PV = "2.0.4+git${SRCPV}" | ||
| 13 | |||
| 14 | SRCREV = "63ec47c5e295ad4f09d1df6d92afb7e10c3fec39" | ||
| 15 | SRC_URI = " \ | ||
| 16 | git://git.openbox.org/dana/obconf \ | ||
| 17 | " | ||
| 18 | |||
| 19 | S = "${WORKDIR}/git" | ||
| 20 | |||
| 21 | inherit autotools gettext pkgconfig mime mime-xdg features_check | ||
| 22 | # depends on openbox, which is X11-only | ||
| 23 | REQUIRED_DISTRO_FEATURES = "x11" | ||
| 24 | |||
| 25 | EXTRA_AUTORECONF = "" | ||
| 26 | |||
| 27 | FILES_${PN} += "\ | ||
| 28 | ${datadir}/mime \ | ||
| 29 | " | ||
| 30 | |||
| 31 | do_install_append () { | ||
| 32 | rm -rf ${D}${datadir}/mimelnk | ||
| 33 | } | ||
