diff options
author | Andreas Müller <schnitzeltony@googlemail.com> | 2014-04-01 11:00:26 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-04-20 10:40:27 +0200 |
commit | 7676240b63aa27959b5bb219470e57d0b3e2b4cb (patch) | |
tree | c669cd82d1c61f1a2a02968b07db8e897cf0bc26 /meta-xfce | |
parent | 0f348ea9baf42f41f208607e3eebd50ae8f1d71d (diff) | |
download | meta-openembedded-7676240b63aa27959b5bb219470e57d0b3e2b4cb.tar.gz |
libxfce4ui: fix configue by inheriting xfce-git.bbclass
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
Diffstat (limited to 'meta-xfce')
-rw-r--r-- | meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.10.0.bb | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.10.0.bb b/meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.10.0.bb index 1e141c41e8..52792f585e 100644 --- a/meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.10.0.bb +++ b/meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.10.0.bb | |||
@@ -4,7 +4,7 @@ LICENSE = "GPLv2" | |||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=252890d9eee26aab7b432e8b8a616475" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=252890d9eee26aab7b432e8b8a616475" |
5 | DEPENDS = "perl-native glib-2.0 gtk+ intltool libxfce4util xfconf xfce4-dev-tools virtual/libx11 libsm libice" | 5 | DEPENDS = "perl-native glib-2.0 gtk+ intltool libxfce4util xfconf xfce4-dev-tools virtual/libx11 libsm libice" |
6 | 6 | ||
7 | inherit autotools gettext xfce | 7 | inherit autotools gettext xfce xfce-git |
8 | 8 | ||
9 | SRC_URI = " \ | 9 | SRC_URI = " \ |
10 | git://git.xfce.org/xfce/libxfce4ui;protocol=git \ | 10 | git://git.xfce.org/xfce/libxfce4ui;protocol=git \ |
@@ -21,15 +21,9 @@ PACKAGECONFIG ??= "" | |||
21 | PACKAGECONFIG[gladeui] = "--enable-gladeui,--disable-gladeui,glade3" | 21 | PACKAGECONFIG[gladeui] = "--enable-gladeui,--disable-gladeui,glade3" |
22 | PACKAGECONFIG[startup-notification] = "--enable-startup-notification,--disable-startup-notification,startup-notification" | 22 | PACKAGECONFIG[startup-notification] = "--enable-startup-notification,--disable-startup-notification,startup-notification" |
23 | 23 | ||
24 | do_src_prepare() { | ||
25 | NOCONFIGURE=yes ./autogen.sh | ||
26 | } | ||
27 | |||
28 | FILES_${PN}-dbg += "${libdir}/glade3/modules/.debug" | 24 | FILES_${PN}-dbg += "${libdir}/glade3/modules/.debug" |
29 | FILES_${PN}-dev += "${libdir}/glade3/modules/*.la \ | 25 | FILES_${PN}-dev += "${libdir}/glade3/modules/*.la \ |
30 | ${datadir}/glade3/catalogs/*.in" | 26 | ${datadir}/glade3/catalogs/*.in" |
31 | PACKAGES += "${PN}-glade" | 27 | PACKAGES += "${PN}-glade" |
32 | FILES_${PN}-glade = "${libdir}/glade3 \ | 28 | FILES_${PN}-glade = "${libdir}/glade3 \ |
33 | ${datadir}/glade3" | 29 | ${datadir}/glade3" |
34 | |||
35 | addtask do_src_prepare before do_configure after do_patch | ||