diff options
-rw-r--r-- | recipes/gnome/libgdata_0.5.1.bb | 2 | ||||
-rw-r--r-- | recipes/gtkmm/gtkmm_2.18.1.bb | 9 | ||||
-rw-r--r-- | recipes/pango/pangomm_2.26.0.bb | 12 |
3 files changed, 6 insertions, 17 deletions
diff --git a/recipes/gnome/libgdata_0.5.1.bb b/recipes/gnome/libgdata_0.5.1.bb index 7c510d0b5f..23b2056b4f 100644 --- a/recipes/gnome/libgdata_0.5.1.bb +++ b/recipes/gnome/libgdata_0.5.1.bb @@ -8,6 +8,8 @@ SRC_URI += " \ file://gtk-doc.make \ " +PARALLEL_MAKE = "" + do_configure_prepend() { cp ${WORKDIR}/gtk-doc.make ${S}/ sed -i -e s:docs::g ${S}/Makefile.am diff --git a/recipes/gtkmm/gtkmm_2.18.1.bb b/recipes/gtkmm/gtkmm_2.18.1.bb index 198fbd4f43..45d5c38d27 100644 --- a/recipes/gtkmm/gtkmm_2.18.1.bb +++ b/recipes/gtkmm/gtkmm_2.18.1.bb @@ -2,12 +2,7 @@ require gtkmm.inc DEPENDS += "pangomm" -EXTRA_OECONF = " --disable-documentation " - -do_configure() { - libtoolize --force - gnu-configize - oe_runconf -} +PR = "r1" +EXTRA_OECONF = " --disable-documentation " diff --git a/recipes/pango/pangomm_2.26.0.bb b/recipes/pango/pangomm_2.26.0.bb index 127daa5d50..52c9022fb4 100644 --- a/recipes/pango/pangomm_2.26.0.bb +++ b/recipes/pango/pangomm_2.26.0.bb @@ -2,8 +2,9 @@ DESCRIPTION = "C++ bindings for the pango library." SECTION = "libs" PRIORITY = "optional" LICENSE = "LGPL" -DEPENDS = "cairomm glibmm" +DEPENDS = "mm-common cairomm glibmm" SHRT_VER = "${@bb.data.getVar('PV',d,1).split('.')[0]}.${@bb.data.getVar('PV',d,1).split('.')[1]}" +PR = "r1" SRC_URI = "ftp://ftp.gnome.org/pub/GNOME/sources/pangomm/${SHRT_VER}/pangomm-${PV}.tar.bz2" @@ -14,14 +15,5 @@ FILES_${PN}-dev += "${libdir}/*/include/" EXTRA_OECONF = " --disable-documentation " -do_configure() { - libtoolize --force - gnu-configize - oe_runconf -} - AUTOTOOLS_STAGE_PKGCONFIG = "1" -do_stage () { - autotools_stage_all -} |