diff options
-rw-r--r-- | meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.10.0.bb | 14 |
1 files changed, 10 insertions, 4 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 cc63a9f03..1e141c41e 100644 --- a/meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.10.0.bb +++ b/meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.10.0.bb | |||
@@ -2,9 +2,9 @@ SUMMARY = "Xfce4 Widget library and X Window System interaction" | |||
2 | SECTION = "x11/libs" | 2 | SECTION = "x11/libs" |
3 | LICENSE = "GPLv2" | 3 | LICENSE = "GPLv2" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=252890d9eee26aab7b432e8b8a616475" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=252890d9eee26aab7b432e8b8a616475" |
5 | DEPENDS = "gtk+ intltool libxfce4util startup-notification xfconf glade3" | 5 | DEPENDS = "perl-native glib-2.0 gtk+ intltool libxfce4util xfconf xfce4-dev-tools virtual/libx11 libsm libice" |
6 | 6 | ||
7 | inherit xfce | 7 | inherit autotools gettext xfce |
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 \ |
@@ -15,9 +15,13 @@ SRCREV = "530b72f50fcbd8cb4b970fcc97be0321bf78183e" | |||
15 | PV = "4.10.0+git${SRCPV}" | 15 | PV = "4.10.0+git${SRCPV}" |
16 | S = "${WORKDIR}/git" | 16 | S = "${WORKDIR}/git" |
17 | 17 | ||
18 | EXTRA_OECONF += "--enable-maintainer-mode --disable-debug" | 18 | EXTRA_OECONF += "--enable-maintainer-mode --disable-debug --with-vendor-info=${DISTRO}" |
19 | 19 | ||
20 | do_configure_prepend() { | 20 | PACKAGECONFIG ??= "" |
21 | PACKAGECONFIG[gladeui] = "--enable-gladeui,--disable-gladeui,glade3" | ||
22 | PACKAGECONFIG[startup-notification] = "--enable-startup-notification,--disable-startup-notification,startup-notification" | ||
23 | |||
24 | do_src_prepare() { | ||
21 | NOCONFIGURE=yes ./autogen.sh | 25 | NOCONFIGURE=yes ./autogen.sh |
22 | } | 26 | } |
23 | 27 | ||
@@ -27,3 +31,5 @@ FILES_${PN}-dev += "${libdir}/glade3/modules/*.la \ | |||
27 | PACKAGES += "${PN}-glade" | 31 | PACKAGES += "${PN}-glade" |
28 | FILES_${PN}-glade = "${libdir}/glade3 \ | 32 | FILES_${PN}-glade = "${libdir}/glade3 \ |
29 | ${datadir}/glade3" | 33 | ${datadir}/glade3" |
34 | |||
35 | addtask do_src_prepare before do_configure after do_patch | ||