diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-21 10:58:08 +0200 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-06-21 13:06:13 +0200 |
| commit | 36d57b9234c8d940205cf83e541302ef60b755c9 (patch) | |
| tree | 111b53cf879e62ba22bbdb892b0589023c91f2d8 /meta-oe | |
| parent | 0ee108356873f69229642d0c6f025f3328c5ff2f (diff) | |
| download | meta-openembedded-36d57b9234c8d940205cf83e541302ef60b755c9.tar.gz | |
recipes: add missing pkgconfig class inherits
* These recipes all use pkg-config in some way but were missing
dependencies on the tool, this patch adds them.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe')
26 files changed, 26 insertions, 27 deletions
diff --git a/meta-oe/recipes-connectivity/irssi/irssi_0.8.16-rc1.bb b/meta-oe/recipes-connectivity/irssi/irssi_0.8.16-rc1.bb index 7880a06f0b..b4fbf7a8fc 100644 --- a/meta-oe/recipes-connectivity/irssi/irssi_0.8.16-rc1.bb +++ b/meta-oe/recipes-connectivity/irssi/irssi_0.8.16-rc1.bb | |||
| @@ -15,7 +15,7 @@ SRC_URI[sha256sum] = "bb6c0125db30b697f80837941c17372b7484c64d57a6920b8bfa7ee3de | |||
| 15 | 15 | ||
| 16 | S = "${WORKDIR}/irssi-${REALPV}" | 16 | S = "${WORKDIR}/irssi-${REALPV}" |
| 17 | 17 | ||
| 18 | inherit autotools | 18 | inherit autotools pkgconfig |
| 19 | 19 | ||
| 20 | EXTRA_OECONF = "--enable-ssl" | 20 | EXTRA_OECONF = "--enable-ssl" |
| 21 | 21 | ||
diff --git a/meta-oe/recipes-connectivity/libtorrent/libtorrent_0.13.3.bb b/meta-oe/recipes-connectivity/libtorrent/libtorrent_0.13.3.bb index a7f81e66fe..124b8ca57d 100644 --- a/meta-oe/recipes-connectivity/libtorrent/libtorrent_0.13.3.bb +++ b/meta-oe/recipes-connectivity/libtorrent/libtorrent_0.13.3.bb | |||
| @@ -13,5 +13,5 @@ SRC_URI = "http://libtorrent.rakshasa.no/downloads/${PN}-${PV}.tar.gz \ | |||
| 13 | SRC_URI[md5sum] = "e94f6c590bb02aaf4d58618f738a85f2" | 13 | SRC_URI[md5sum] = "e94f6c590bb02aaf4d58618f738a85f2" |
| 14 | SRC_URI[sha256sum] = "34317d6783b7f8d0805274c9467475b5432a246c0de8e28fc16e3b0b43f35677" | 14 | SRC_URI[sha256sum] = "34317d6783b7f8d0805274c9467475b5432a246c0de8e28fc16e3b0b43f35677" |
| 15 | 15 | ||
| 16 | inherit autotools | 16 | inherit autotools pkgconfig |
| 17 | 17 | ||
diff --git a/meta-oe/recipes-connectivity/obex/obex-data-server_0.4.6.bb b/meta-oe/recipes-connectivity/obex/obex-data-server_0.4.6.bb index f12941e103..4a2b2b1d60 100644 --- a/meta-oe/recipes-connectivity/obex/obex-data-server_0.4.6.bb +++ b/meta-oe/recipes-connectivity/obex/obex-data-server_0.4.6.bb | |||
| @@ -8,7 +8,7 @@ SRC_URI = "http://tadas.dailyda.com/software/obex-data-server-${PV}.tar.gz" | |||
| 8 | SRC_URI[md5sum] = "961ca5db6fe9c97024e133cc6203cc4d" | 8 | SRC_URI[md5sum] = "961ca5db6fe9c97024e133cc6203cc4d" |
| 9 | SRC_URI[sha256sum] = "b399465ddbd6d0217abedd9411d9d74a820effa0a6a142adc448268d3920094f" | 9 | SRC_URI[sha256sum] = "b399465ddbd6d0217abedd9411d9d74a820effa0a6a142adc448268d3920094f" |
| 10 | 10 | ||
| 11 | inherit autotools-brokensep | 11 | inherit autotools-brokensep pkgconfig |
| 12 | 12 | ||
| 13 | FILES_${PN} += "${datadir}/dbus-1/" | 13 | FILES_${PN} += "${datadir}/dbus-1/" |
| 14 | 14 | ||
diff --git a/meta-oe/recipes-connectivity/rtorrent/rtorrent_0.9.3.bb b/meta-oe/recipes-connectivity/rtorrent/rtorrent_0.9.3.bb index adc112fefe..d1b64fb363 100644 --- a/meta-oe/recipes-connectivity/rtorrent/rtorrent_0.9.3.bb +++ b/meta-oe/recipes-connectivity/rtorrent/rtorrent_0.9.3.bb | |||
| @@ -12,5 +12,4 @@ SRC_URI = "http://libtorrent.rakshasa.no/downloads/${PN}-${PV}.tar.gz \ | |||
| 12 | SRC_URI[md5sum] = "0bf2f262faa8c8c8d3b11ce286ea2bf2" | 12 | SRC_URI[md5sum] = "0bf2f262faa8c8c8d3b11ce286ea2bf2" |
| 13 | SRC_URI[sha256sum] = "9e93ca41beb1afe74ad7ad8013e0d53ae3586c9b0e97263d722f721535cc7310" | 13 | SRC_URI[sha256sum] = "9e93ca41beb1afe74ad7ad8013e0d53ae3586c9b0e97263d722f721535cc7310" |
| 14 | 14 | ||
| 15 | inherit autotools | 15 | inherit autotools pkgconfig |
| 16 | |||
diff --git a/meta-oe/recipes-devtools/icon-slicer/icon-slicer_0.3.bb b/meta-oe/recipes-devtools/icon-slicer/icon-slicer_0.3.bb index d6cfd35629..9768a6e716 100644 --- a/meta-oe/recipes-devtools/icon-slicer/icon-slicer_0.3.bb +++ b/meta-oe/recipes-devtools/icon-slicer/icon-slicer_0.3.bb | |||
| @@ -8,6 +8,6 @@ SRC_URI = "http://freedesktop.org/software/${BPN}/releases/${BPN}-${PV}.tar.gz \ | |||
| 8 | SRC_URI[md5sum] = "5c5374d4f265b0abe4daef1d03f87104" | 8 | SRC_URI[md5sum] = "5c5374d4f265b0abe4daef1d03f87104" |
| 9 | SRC_URI[sha256sum] = "05f0216dd0c25a17859de66357f64da5033375b6fbf5f31ca54867311160b64d" | 9 | SRC_URI[sha256sum] = "05f0216dd0c25a17859de66357f64da5033375b6fbf5f31ca54867311160b64d" |
| 10 | 10 | ||
| 11 | inherit autotools | 11 | inherit autotools pkgconfig |
| 12 | 12 | ||
| 13 | BBCLASSEXTEND = "native" | 13 | BBCLASSEXTEND = "native" |
diff --git a/meta-oe/recipes-devtools/libgee/libgee.inc b/meta-oe/recipes-devtools/libgee/libgee.inc index c681285440..fcfd0776e9 100644 --- a/meta-oe/recipes-devtools/libgee/libgee.inc +++ b/meta-oe/recipes-devtools/libgee/libgee.inc | |||
| @@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24" | |||
| 9 | INC_PR = "r6" | 9 | INC_PR = "r6" |
| 10 | PE = "1" | 10 | PE = "1" |
| 11 | 11 | ||
| 12 | inherit autotools vala | 12 | inherit autotools vala pkgconfig |
| 13 | do_configure_prepend() { | 13 | do_configure_prepend() { |
| 14 | MACROS="libtool.m4 lt~obsolete.m4 ltoptions.m4 ltsugar.m4 ltversion.m4" | 14 | MACROS="libtool.m4 lt~obsolete.m4 ltoptions.m4 ltsugar.m4 ltversion.m4" |
| 15 | for i in ${MACROS}; do | 15 | for i in ${MACROS}; do |
diff --git a/meta-oe/recipes-devtools/vala-dbus-binding-tool/vala-dbus-binding-tool.inc b/meta-oe/recipes-devtools/vala-dbus-binding-tool/vala-dbus-binding-tool.inc index a3db952221..7c8e341a3e 100644 --- a/meta-oe/recipes-devtools/vala-dbus-binding-tool/vala-dbus-binding-tool.inc +++ b/meta-oe/recipes-devtools/vala-dbus-binding-tool/vala-dbus-binding-tool.inc | |||
| @@ -11,6 +11,6 @@ export XDG_DATA_DIRS = "${STAGING_DATADIR}" | |||
| 11 | 11 | ||
| 12 | SRC_URI = "http://downloads.freesmartphone.org/sources/${BPN}/${BP}.tar.bz2;name=archive" | 12 | SRC_URI = "http://downloads.freesmartphone.org/sources/${BPN}/${BP}.tar.bz2;name=archive" |
| 13 | 13 | ||
| 14 | inherit autotools perlnative | 14 | inherit autotools perlnative pkgconfig |
| 15 | 15 | ||
| 16 | BBCLASSEXTEND = "native" | 16 | BBCLASSEXTEND = "native" |
diff --git a/meta-oe/recipes-extended/collectd/collectd_5.2.2.bb b/meta-oe/recipes-extended/collectd/collectd_5.2.2.bb index 8585ff3c70..6b9b7bd21d 100644 --- a/meta-oe/recipes-extended/collectd/collectd_5.2.2.bb +++ b/meta-oe/recipes-extended/collectd/collectd_5.2.2.bb | |||
| @@ -13,7 +13,7 @@ SRC_URI = "http://collectd.org/files/collectd-${PV}.tar.bz2 \ | |||
| 13 | SRC_URI[md5sum] = "29e61411e51845d5ae71ab676078867e" | 13 | SRC_URI[md5sum] = "29e61411e51845d5ae71ab676078867e" |
| 14 | SRC_URI[sha256sum] = "7b8906d1c8866155b31820ef108be92abcee7fcd278d386bf0d449e704ba4696" | 14 | SRC_URI[sha256sum] = "7b8906d1c8866155b31820ef108be92abcee7fcd278d386bf0d449e704ba4696" |
| 15 | 15 | ||
| 16 | inherit autotools pythonnative update-rc.d | 16 | inherit autotools pythonnative update-rc.d pkgconfig |
| 17 | 17 | ||
| 18 | # Floatingpoint layout, architecture dependent | 18 | # Floatingpoint layout, architecture dependent |
| 19 | # 'nothing', 'endianflip' or 'intswap' | 19 | # 'nothing', 'endianflip' or 'intswap' |
diff --git a/meta-oe/recipes-gnome/gtkextra/gtkextra_3.0.5.bb b/meta-oe/recipes-gnome/gtkextra/gtkextra_3.0.5.bb index c5a25f8b52..b9b77e4c50 100644 --- a/meta-oe/recipes-gnome/gtkextra/gtkextra_3.0.5.bb +++ b/meta-oe/recipes-gnome/gtkextra/gtkextra_3.0.5.bb | |||
| @@ -13,4 +13,4 @@ SRC_URI[sha256sum] = "9cab6c5d6b792eb828d17cec2b9c1baba2ef57f789a290464afab80b53 | |||
| 13 | 13 | ||
| 14 | DEPENDS = "gtk+" | 14 | DEPENDS = "gtk+" |
| 15 | 15 | ||
| 16 | inherit autotools | 16 | inherit autotools pkgconfig |
diff --git a/meta-oe/recipes-graphics/fim/fim_0.4-rc1.bb b/meta-oe/recipes-graphics/fim/fim_0.4-rc1.bb index 3433bd2712..a9833449be 100644 --- a/meta-oe/recipes-graphics/fim/fim_0.4-rc1.bb +++ b/meta-oe/recipes-graphics/fim/fim_0.4-rc1.bb | |||
| @@ -18,7 +18,7 @@ SRC_URI[sha256sum] = "3f6bf2de2952b9adcbeb3db12c2a979e999a81dd1e314a03bc58e24f1e | |||
| 18 | 18 | ||
| 19 | PARALLEL_MAKE = "" | 19 | PARALLEL_MAKE = "" |
| 20 | 20 | ||
| 21 | inherit autotools | 21 | inherit autotools pkgconfig |
| 22 | 22 | ||
| 23 | # Don't use provided regex.c | 23 | # Don't use provided regex.c |
| 24 | EXTRA_OECONF = "fim_cv_regex=no fim_cv_regex_broken=no \ | 24 | EXTRA_OECONF = "fim_cv_regex=no fim_cv_regex_broken=no \ |
diff --git a/meta-oe/recipes-graphics/pango/pangomm_2.34.0.bb b/meta-oe/recipes-graphics/pango/pangomm_2.34.0.bb index 36afb9f1e3..45218c240b 100644 --- a/meta-oe/recipes-graphics/pango/pangomm_2.34.0.bb +++ b/meta-oe/recipes-graphics/pango/pangomm_2.34.0.bb | |||
| @@ -12,7 +12,7 @@ SRC_URI = "ftp://ftp.gnome.org/pub/GNOME/sources/pangomm/${SHRT_VER}/pangomm-${P | |||
| 12 | SRC_URI[md5sum] = "2c702caede167323c9ed9eed2b933098" | 12 | SRC_URI[md5sum] = "2c702caede167323c9ed9eed2b933098" |
| 13 | SRC_URI[sha256sum] = "0e82bbff62f626692a00f3772d8b17169a1842b8cc54d5f2ddb1fec2cede9e41" | 13 | SRC_URI[sha256sum] = "0e82bbff62f626692a00f3772d8b17169a1842b8cc54d5f2ddb1fec2cede9e41" |
| 14 | 14 | ||
| 15 | inherit autotools | 15 | inherit autotools pkgconfig |
| 16 | 16 | ||
| 17 | EXTRA_OECONF = " --disable-documentation " | 17 | EXTRA_OECONF = " --disable-documentation " |
| 18 | 18 | ||
diff --git a/meta-oe/recipes-graphics/xcursorgen/xcursorgen_1.0.5.bb b/meta-oe/recipes-graphics/xcursorgen/xcursorgen_1.0.5.bb index e5ece21fa2..27a38c1aab 100644 --- a/meta-oe/recipes-graphics/xcursorgen/xcursorgen_1.0.5.bb +++ b/meta-oe/recipes-graphics/xcursorgen/xcursorgen_1.0.5.bb | |||
| @@ -7,6 +7,6 @@ SRC_URI = "http://xorg.freedesktop.org/archive/individual/app/${BPN}-${PV}.tar.b | |||
| 7 | SRC_URI[md5sum] = "09f56978a62854534deacc8aa8ff3031" | 7 | SRC_URI[md5sum] = "09f56978a62854534deacc8aa8ff3031" |
| 8 | SRC_URI[sha256sum] = "bc7171a0fa212da866fca2301241630e2009aea8c4ddb75f21b51a31c2e4c581" | 8 | SRC_URI[sha256sum] = "bc7171a0fa212da866fca2301241630e2009aea8c4ddb75f21b51a31c2e4c581" |
| 9 | 9 | ||
| 10 | inherit autotools | 10 | inherit autotools pkgconfig |
| 11 | 11 | ||
| 12 | BBCLASSEXTEND = "native" | 12 | BBCLASSEXTEND = "native" |
diff --git a/meta-oe/recipes-multimedia/jack/jack_0.121.0.bb b/meta-oe/recipes-multimedia/jack/jack_0.121.0.bb index e7a0ee1118..7b3392721c 100644 --- a/meta-oe/recipes-multimedia/jack/jack_0.121.0.bb +++ b/meta-oe/recipes-multimedia/jack/jack_0.121.0.bb | |||
| @@ -20,7 +20,7 @@ SRC_URI = "git://github.com/jackaudio/jack1.git \ | |||
| 20 | 20 | ||
| 21 | S = "${WORKDIR}/git" | 21 | S = "${WORKDIR}/git" |
| 22 | 22 | ||
| 23 | inherit autotools | 23 | inherit autotools pkgconfig |
| 24 | 24 | ||
| 25 | EXTRA_OECONF = "--enable-timestamps \ | 25 | EXTRA_OECONF = "--enable-timestamps \ |
| 26 | --disable-capabilities \ | 26 | --disable-capabilities \ |
diff --git a/meta-oe/recipes-multimedia/v4l2apps/v4l-utils_1.0.1.bb b/meta-oe/recipes-multimedia/v4l2apps/v4l-utils_1.0.1.bb index 6c25c90683..abe9a648f9 100644 --- a/meta-oe/recipes-multimedia/v4l2apps/v4l-utils_1.0.1.bb +++ b/meta-oe/recipes-multimedia/v4l2apps/v4l-utils_1.0.1.bb | |||
| @@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=48da9957849056017dc568bbc43d8975 \ | |||
| 5 | 5 | ||
| 6 | DEPENDS = "jpeg virtual/libx11" | 6 | DEPENDS = "jpeg virtual/libx11" |
| 7 | 7 | ||
| 8 | inherit autotools gettext | 8 | inherit autotools gettext pkgconfig |
| 9 | 9 | ||
| 10 | # libv4l was absorbed into this, let OE know that | 10 | # libv4l was absorbed into this, let OE know that |
| 11 | PROVIDES = "libv4l" | 11 | PROVIDES = "libv4l" |
diff --git a/meta-oe/recipes-navigation/omgps/omgps_svn.bb b/meta-oe/recipes-navigation/omgps/omgps_svn.bb index adcc749e43..2304b3686e 100644 --- a/meta-oe/recipes-navigation/omgps/omgps_svn.bb +++ b/meta-oe/recipes-navigation/omgps/omgps_svn.bb | |||
| @@ -26,4 +26,4 @@ SRC_URI = "svn://omgps.googlecode.com/svn/trunk;module=omgps;protocol=http \ | |||
| 26 | file://0001-g_type_init-is-deprecated-for-glib-2.35.0.patch \ | 26 | file://0001-g_type_init-is-deprecated-for-glib-2.35.0.patch \ |
| 27 | " | 27 | " |
| 28 | 28 | ||
| 29 | inherit autotools | 29 | inherit autotools pkgconfig |
diff --git a/meta-oe/recipes-navigation/orrery/orrery_2.7.bb b/meta-oe/recipes-navigation/orrery/orrery_2.7.bb index f5523e3170..95c1b29653 100644 --- a/meta-oe/recipes-navigation/orrery/orrery_2.7.bb +++ b/meta-oe/recipes-navigation/orrery/orrery_2.7.bb | |||
| @@ -5,7 +5,7 @@ LICENSE = "GPLv2+" | |||
| 5 | LIC_FILES_CHKSUM = "file://orrery.c;endline=25;md5=d792bdf2b591972da175aecc38d88cfe" | 5 | LIC_FILES_CHKSUM = "file://orrery.c;endline=25;md5=d792bdf2b591972da175aecc38d88cfe" |
| 6 | DEPENDS = "gtk+" | 6 | DEPENDS = "gtk+" |
| 7 | 7 | ||
| 8 | inherit autotools | 8 | inherit autotools pkgconfig |
| 9 | 9 | ||
| 10 | SRC_URI = "http://projects.openmoko.org/frs/download.php/923/orrery_2.7_clean.tar.gz \ | 10 | SRC_URI = "http://projects.openmoko.org/frs/download.php/923/orrery_2.7_clean.tar.gz \ |
| 11 | file://orrery.png \ | 11 | file://orrery.png \ |
diff --git a/meta-oe/recipes-sato/claws-mail/sylpheed_2.7.1.bb b/meta-oe/recipes-sato/claws-mail/sylpheed_2.7.1.bb index a793fde306..214ca5826e 100644 --- a/meta-oe/recipes-sato/claws-mail/sylpheed_2.7.1.bb +++ b/meta-oe/recipes-sato/claws-mail/sylpheed_2.7.1.bb | |||
| @@ -29,7 +29,7 @@ do_configure_prepend() { | |||
| 29 | done | 29 | done |
| 30 | } | 30 | } |
| 31 | 31 | ||
| 32 | inherit autotools | 32 | inherit autotools pkgconfig |
| 33 | 33 | ||
| 34 | do_install_append() { | 34 | do_install_append() { |
| 35 | install -d ${D}${datadir}/applications | 35 | install -d ${D}${datadir}/applications |
diff --git a/meta-oe/recipes-support/dfu-util/dfu-util.inc b/meta-oe/recipes-support/dfu-util/dfu-util.inc index 633b829b2a..892acad05c 100644 --- a/meta-oe/recipes-support/dfu-util/dfu-util.inc +++ b/meta-oe/recipes-support/dfu-util/dfu-util.inc | |||
| @@ -6,4 +6,4 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | |||
| 6 | 6 | ||
| 7 | SRC_URI = "http://dfu-util.gnumonks.org/releases/dfu-util-${PV}.tar.gz" | 7 | SRC_URI = "http://dfu-util.gnumonks.org/releases/dfu-util-${PV}.tar.gz" |
| 8 | 8 | ||
| 9 | inherit autotools | 9 | inherit autotools pkgconfig |
diff --git a/meta-oe/recipes-support/evtest/evtest_1.25.bb b/meta-oe/recipes-support/evtest/evtest_1.25.bb index 34b5b74227..640cec0c75 100644 --- a/meta-oe/recipes-support/evtest/evtest_1.25.bb +++ b/meta-oe/recipes-support/evtest/evtest_1.25.bb | |||
| @@ -11,4 +11,4 @@ SRC_URI = "http://cgit.freedesktop.org/~whot/evtest/snapshot/evtest-${PV}.tar.bz | |||
| 11 | SRC_URI[archive.md5sum] = "770d6af03affe976bdbe3ad1a922c973" | 11 | SRC_URI[archive.md5sum] = "770d6af03affe976bdbe3ad1a922c973" |
| 12 | SRC_URI[archive.sha256sum] = "3d34123c68014dae6f7c19144ef79ea2915fa7a2f89ea35ca375a9cf9e191473" | 12 | SRC_URI[archive.sha256sum] = "3d34123c68014dae6f7c19144ef79ea2915fa7a2f89ea35ca375a9cf9e191473" |
| 13 | 13 | ||
| 14 | inherit autotools | 14 | inherit autotools pkgconfig |
diff --git a/meta-oe/recipes-support/farsight/libnice_0.0.13.bb b/meta-oe/recipes-support/farsight/libnice_0.0.13.bb index 3205aaf357..48a80e5985 100644 --- a/meta-oe/recipes-support/farsight/libnice_0.0.13.bb +++ b/meta-oe/recipes-support/farsight/libnice_0.0.13.bb | |||
| @@ -16,7 +16,7 @@ DEPENDS = "glib-2.0 gstreamer" | |||
| 16 | PACKAGECONFIG ??= "" | 16 | PACKAGECONFIG ??= "" |
| 17 | PACKAGECONFIG[gupnp] = "--enable-gupnp,--disable-gupnp,gupnp-igd" | 17 | PACKAGECONFIG[gupnp] = "--enable-gupnp,--disable-gupnp,gupnp-igd" |
| 18 | 18 | ||
| 19 | inherit autotools | 19 | inherit autotools pkgconfig |
| 20 | 20 | ||
| 21 | FILES_${PN} += "${libdir}/gstreamer-0.10/*.so" | 21 | FILES_${PN} += "${libdir}/gstreamer-0.10/*.so" |
| 22 | FILES_${PN}-dev += "${libdir}/gstreamer-0.10/*.la" | 22 | FILES_${PN}-dev += "${libdir}/gstreamer-0.10/*.la" |
diff --git a/meta-oe/recipes-support/gd/gd_2.1.0.bb b/meta-oe/recipes-support/gd/gd_2.1.0.bb index d92e6395f8..ec2a09de40 100644 --- a/meta-oe/recipes-support/gd/gd_2.1.0.bb +++ b/meta-oe/recipes-support/gd/gd_2.1.0.bb | |||
| @@ -20,7 +20,7 @@ SRC_URI[sha256sum] = "f3e1bc472bd81ee976a739436659fe752a14727a964c64530fde68531d | |||
| 20 | 20 | ||
| 21 | S = "${WORKDIR}/libgd-${PV}" | 21 | S = "${WORKDIR}/libgd-${PV}" |
| 22 | 22 | ||
| 23 | inherit autotools binconfig gettext | 23 | inherit autotools binconfig gettext pkgconfig |
| 24 | 24 | ||
| 25 | EXTRA_OECONF += " --disable-rpath \ | 25 | EXTRA_OECONF += " --disable-rpath \ |
| 26 | --with-jpeg=${STAGING_LIBDIR}/.. \ | 26 | --with-jpeg=${STAGING_LIBDIR}/.. \ |
diff --git a/meta-oe/recipes-support/libatasmart/libatasmart_0.19.bb b/meta-oe/recipes-support/libatasmart/libatasmart_0.19.bb index 21f4e2ac4b..16657b4b13 100644 --- a/meta-oe/recipes-support/libatasmart/libatasmart_0.19.bb +++ b/meta-oe/recipes-support/libatasmart/libatasmart_0.19.bb | |||
| @@ -9,7 +9,7 @@ SRC_URI = "git://git.0pointer.de/libatasmart.git" | |||
| 9 | 9 | ||
| 10 | S = "${WORKDIR}/git" | 10 | S = "${WORKDIR}/git" |
| 11 | 11 | ||
| 12 | inherit autotools lib_package | 12 | inherit autotools lib_package pkgconfig |
| 13 | 13 | ||
| 14 | do_install_append() { | 14 | do_install_append() { |
| 15 | sed -i -e s://:/:g -e 's:=${libdir}/libudev.la:-ludev:g' ${D}${libdir}/libatasmart.la | 15 | sed -i -e s://:/:g -e 's:=${libdir}/libudev.la:-ludev:g' ${D}${libdir}/libatasmart.la |
diff --git a/meta-oe/recipes-support/links/links.inc b/meta-oe/recipes-support/links/links.inc index 78d7ec78df..ef48d737e6 100644 --- a/meta-oe/recipes-support/links/links.inc +++ b/meta-oe/recipes-support/links/links.inc | |||
| @@ -14,4 +14,4 @@ PACKAGECONFIG ??= "" | |||
| 14 | PACKAGECONFIG[bzip2] = "--with-bzip2,--without-bzip2,bzip2" | 14 | PACKAGECONFIG[bzip2] = "--with-bzip2,--without-bzip2,bzip2" |
| 15 | PACKAGECONFIG[lzma] = "--with-lzma,--without-lzma,lzma" | 15 | PACKAGECONFIG[lzma] = "--with-lzma,--without-lzma,lzma" |
| 16 | 16 | ||
| 17 | inherit autotools | 17 | inherit autotools pkgconfig |
diff --git a/meta-oe/recipes-support/start-stop-daemon/start-stop-daemon_1.16.0.2.bb b/meta-oe/recipes-support/start-stop-daemon/start-stop-daemon_1.16.0.2.bb index bb649a2337..82e5d8a15c 100644 --- a/meta-oe/recipes-support/start-stop-daemon/start-stop-daemon_1.16.0.2.bb +++ b/meta-oe/recipes-support/start-stop-daemon/start-stop-daemon_1.16.0.2.bb | |||
| @@ -10,7 +10,7 @@ SRC_URI = "http://sources.openembedded.org/dpkg_${PV}.tar.bz2" | |||
| 10 | SRC_URI[md5sum] = "d211a84f38987771a49ad1c0f144334a" | 10 | SRC_URI[md5sum] = "d211a84f38987771a49ad1c0f144334a" |
| 11 | SRC_URI[sha256sum] = "2a3d4ba83c743b3f004533fdd52372cb7b22f5c1da2042d0a31bbcc2b54c0ea5" | 11 | SRC_URI[sha256sum] = "2a3d4ba83c743b3f004533fdd52372cb7b22f5c1da2042d0a31bbcc2b54c0ea5" |
| 12 | 12 | ||
| 13 | inherit autotools gettext | 13 | inherit autotools gettext pkgconfig |
| 14 | 14 | ||
| 15 | S = "${WORKDIR}/dpkg-${PV}" | 15 | S = "${WORKDIR}/dpkg-${PV}" |
| 16 | 16 | ||
diff --git a/meta-oe/recipes-support/utouch/utouch-frame_git.bb b/meta-oe/recipes-support/utouch/utouch-frame_git.bb index 00b7cf355e..d9b38ae204 100644 --- a/meta-oe/recipes-support/utouch/utouch-frame_git.bb +++ b/meta-oe/recipes-support/utouch/utouch-frame_git.bb | |||
| @@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=2f31b266d3440dd7ee50f92cf67d8e6c" | |||
| 7 | 7 | ||
| 8 | DEPENDS += "mtdev utouch-evemu" | 8 | DEPENDS += "mtdev utouch-evemu" |
| 9 | 9 | ||
| 10 | inherit autotools | 10 | inherit autotools pkgconfig |
| 11 | 11 | ||
| 12 | SRC_URI = "git://bitmath.org/git/frame.git;protocol=http" | 12 | SRC_URI = "git://bitmath.org/git/frame.git;protocol=http" |
| 13 | SRCREV = "95363d5a1f7394d71144bf3b408ef4e6db4350fc" | 13 | SRCREV = "95363d5a1f7394d71144bf3b408ef4e6db4350fc" |
diff --git a/meta-oe/recipes-support/utouch/utouch-mtview_git.bb b/meta-oe/recipes-support/utouch/utouch-mtview_git.bb index 6ebeb9fa4b..bcf7e23846 100644 --- a/meta-oe/recipes-support/utouch/utouch-mtview_git.bb +++ b/meta-oe/recipes-support/utouch/utouch-mtview_git.bb | |||
| @@ -5,7 +5,7 @@ HOMEPAGE = "http://bitmath.org/code/mtview/" | |||
| 5 | LICENSE = "GPLv3" | 5 | LICENSE = "GPLv3" |
| 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=4c61b8950dc1aab4d2aa7c2ae6b1cfb3" | 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=4c61b8950dc1aab4d2aa7c2ae6b1cfb3" |
| 7 | 7 | ||
| 8 | inherit autotools | 8 | inherit autotools pkgconfig |
| 9 | 9 | ||
| 10 | SRC_URI = "git://bitmath.org/git/mtview.git;protocol=http" | 10 | SRC_URI = "git://bitmath.org/git/mtview.git;protocol=http" |
| 11 | SRCREV = "ad437c38dc111cf3990a03abf14efe1b5d89604b" | 11 | SRCREV = "ad437c38dc111cf3990a03abf14efe1b5d89604b" |
