diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2008-12-27 01:13:47 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2008-12-30 17:07:17 +0000 |
commit | fcb1791f553081e5267c2d0b7795eab224b4a342 (patch) | |
tree | 16772e322df1059b1f13585396c683e50eafc3c3 /meta/packages | |
parent | e380b48602db316c7d12d328192eadc52e5be861 (diff) | |
download | poky-fcb1791f553081e5267c2d0b7795eab224b4a342.tar.gz |
classes/autotools_stage.bbclass: Add autotools_stage class to further recipes to simplify recipes using standard autotools
Diffstat (limited to 'meta/packages')
43 files changed, 46 insertions, 213 deletions
diff --git a/meta/packages/libglade/libglade_2.6.2.bb b/meta/packages/libglade/libglade_2.6.2.bb index 502e1ced40..2279b3b706 100644 --- a/meta/packages/libglade/libglade_2.6.2.bb +++ b/meta/packages/libglade/libglade_2.6.2.bb | |||
@@ -4,7 +4,7 @@ SECTION = "libs" | |||
4 | PRIORITY = "optional" | 4 | PRIORITY = "optional" |
5 | DEPENDS = "gtk+ gtk-doc-native" | 5 | DEPENDS = "gtk+ gtk-doc-native" |
6 | 6 | ||
7 | inherit autotools pkgconfig gnome | 7 | inherit autotools_stage pkgconfig gnome |
8 | 8 | ||
9 | SRC_URI += "file://glade-cruft.patch;patch=1 file://no-xml2.patch;patch=1" | 9 | SRC_URI += "file://glade-cruft.patch;patch=1 file://no-xml2.patch;patch=1" |
10 | 10 | ||
@@ -17,7 +17,3 @@ FILES_${PN} = "${libdir}/lib*.so.*" | |||
17 | FILES_${PN}-data = "${datadir}/xml/libglade/glade-2.0.dtd" | 17 | FILES_${PN}-data = "${datadir}/xml/libglade/glade-2.0.dtd" |
18 | FILES_${PN}-dev += "${bindir}/libglade-convert" | 18 | FILES_${PN}-dev += "${bindir}/libglade-convert" |
19 | #RDEPENDS_${PN} = "${PN}-data" | 19 | #RDEPENDS_${PN} = "${PN}-data" |
20 | |||
21 | do_stage () { | ||
22 | autotools_stage_all | ||
23 | } | ||
diff --git a/meta/packages/libgsf/libgsf_1.14.5.bb b/meta/packages/libgsf/libgsf_1.14.5.bb index c9804c7392..ebb13bd9fd 100644 --- a/meta/packages/libgsf/libgsf_1.14.5.bb +++ b/meta/packages/libgsf/libgsf_1.14.5.bb | |||
@@ -11,14 +11,10 @@ PACKAGES =+ "${PN}-gnome ${PN}-gnome-dev " | |||
11 | FILES_${PN}-gnome = "${libdir}/libgsf-gnome-1.so.*" | 11 | FILES_${PN}-gnome = "${libdir}/libgsf-gnome-1.so.*" |
12 | FILES_${PN}-gnome-dev = "${libdir}/libgsf-gnome-1.* ${includedir}/libgsf-1/gsf-gnome" | 12 | FILES_${PN}-gnome-dev = "${libdir}/libgsf-gnome-1.* ${includedir}/libgsf-1/gsf-gnome" |
13 | 13 | ||
14 | inherit autotools pkgconfig gnome gconf | 14 | inherit autotools_stage pkgconfig gnome gconf |
15 | 15 | ||
16 | EXTRA_OECONF = "\ | 16 | EXTRA_OECONF = "\ |
17 | --without-python \ | 17 | --without-python \ |
18 | --without-gnome \ | 18 | --without-gnome \ |
19 | --disable-gtk-doc \ | 19 | --disable-gtk-doc \ |
20 | --with-bz2" | 20 | --with-bz2" |
21 | |||
22 | do_stage() { | ||
23 | autotools_stage_all | ||
24 | } | ||
diff --git a/meta/packages/libidl/libidl_0.8.3.bb b/meta/packages/libidl/libidl_0.8.3.bb index 32979027a3..ac10a2422f 100644 --- a/meta/packages/libidl/libidl_0.8.3.bb +++ b/meta/packages/libidl/libidl_0.8.3.bb | |||
@@ -8,11 +8,7 @@ SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libIDL/0.8/libIDL-${PV}.tar.bz | |||
8 | S = "${WORKDIR}/libIDL-${PV}" | 8 | S = "${WORKDIR}/libIDL-${PV}" |
9 | 9 | ||
10 | BINCONFIG_GLOB = "*-config-2" | 10 | BINCONFIG_GLOB = "*-config-2" |
11 | inherit autotools pkgconfig binconfig | 11 | inherit autotools_stage pkgconfig binconfig |
12 | |||
13 | do_stage() { | ||
14 | autotools_stage_all | ||
15 | } | ||
16 | 12 | ||
17 | FILES_${PN} = "${libdir}/*.so.*" | 13 | FILES_${PN} = "${libdir}/*.so.*" |
18 | FILES_${PN}-dev += " ${bindir}" | 14 | FILES_${PN}-dev += " ${bindir}" |
diff --git a/meta/packages/libidn/libidn_0.5.19.bb b/meta/packages/libidn/libidn_0.5.19.bb index 322790b8ab..a093c111c9 100644 --- a/meta/packages/libidn/libidn_0.5.19.bb +++ b/meta/packages/libidn/libidn_0.5.19.bb | |||
@@ -4,7 +4,7 @@ SECTION = "libs" | |||
4 | PRIORITY = "optional" | 4 | PRIORITY = "optional" |
5 | PR = "r0" | 5 | PR = "r0" |
6 | 6 | ||
7 | inherit pkgconfig autotools | 7 | inherit pkgconfig autotools_stage |
8 | 8 | ||
9 | SRC_URI = "http://josefsson.org/libidn/releases/${P}.tar.gz" | 9 | SRC_URI = "http://josefsson.org/libidn/releases/${P}.tar.gz" |
10 | 10 | ||
@@ -13,7 +13,3 @@ EXTRA_OECONF = " --disable-tld" | |||
13 | do_configure_prepend () { | 13 | do_configure_prepend () { |
14 | autoreconf -f -i -s | 14 | autoreconf -f -i -s |
15 | } | 15 | } |
16 | |||
17 | do_stage () { | ||
18 | autotools_stage_all | ||
19 | } | ||
diff --git a/meta/packages/libnl/libnl_1.0-pre6.bb b/meta/packages/libnl/libnl_1.0-pre6.bb index 300222ca42..740bc937d7 100644 --- a/meta/packages/libnl/libnl_1.0-pre6.bb +++ b/meta/packages/libnl/libnl_1.0-pre6.bb | |||
@@ -5,14 +5,9 @@ HOMEPAGE = "http://people.suug.ch/~tgr/libnl/" | |||
5 | PRIORITY = "optional" | 5 | PRIORITY = "optional" |
6 | PV = "0.99+1.0-pre6" | 6 | PV = "0.99+1.0-pre6" |
7 | 7 | ||
8 | inherit autotools pkgconfig | 8 | inherit autotools_stage pkgconfig |
9 | 9 | ||
10 | SRC_URI= "http://people.suug.ch/~tgr/libnl/files/${PN}-1.0-pre6.tar.gz \ | 10 | SRC_URI= "http://people.suug.ch/~tgr/libnl/files/${PN}-1.0-pre6.tar.gz \ |
11 | file://local-includes.patch;patch=1" | 11 | file://local-includes.patch;patch=1" |
12 | 12 | ||
13 | S = "${WORKDIR}/${PN}-1.0-pre6" | 13 | S = "${WORKDIR}/${PN}-1.0-pre6" |
14 | |||
15 | do_stage () { | ||
16 | autotools_stage_all prefix=${prefix} | ||
17 | } | ||
18 | |||
diff --git a/meta/packages/libogg/libogg_1.1.bb b/meta/packages/libogg/libogg_1.1.bb index cf5e81da36..78927726d0 100644 --- a/meta/packages/libogg/libogg_1.1.bb +++ b/meta/packages/libogg/libogg_1.1.bb | |||
@@ -8,8 +8,4 @@ PR = "r4" | |||
8 | SRC_URI = "http://www.vorbis.com/files/1.0.1/unix/libogg-${PV}.tar.gz \ | 8 | SRC_URI = "http://www.vorbis.com/files/1.0.1/unix/libogg-${PV}.tar.gz \ |
9 | file://m4.patch;patch=1" | 9 | file://m4.patch;patch=1" |
10 | 10 | ||
11 | inherit autotools pkgconfig | 11 | inherit autotools_stage pkgconfig |
12 | |||
13 | do_stage () { | ||
14 | autotools_stage_all | ||
15 | } | ||
diff --git a/meta/packages/liboil/liboil_0.3.14.bb b/meta/packages/liboil/liboil_0.3.14.bb index 55c423b034..edc9b932c9 100644 --- a/meta/packages/liboil/liboil_0.3.14.bb +++ b/meta/packages/liboil/liboil_0.3.14.bb | |||
@@ -7,10 +7,6 @@ PR = "r1" | |||
7 | SRC_URI = "http://liboil.freedesktop.org/download/${P}.tar.gz \ | 7 | SRC_URI = "http://liboil.freedesktop.org/download/${P}.tar.gz \ |
8 | file://no-tests.patch;patch=1" | 8 | file://no-tests.patch;patch=1" |
9 | 9 | ||
10 | inherit autotools pkgconfig | 10 | inherit autotools_stage pkgconfig |
11 | |||
12 | do_stage() { | ||
13 | autotools_stage_all | ||
14 | } | ||
15 | 11 | ||
16 | ARM_INSTRUCTION_SET = "arm" | 12 | ARM_INSTRUCTION_SET = "arm" |
diff --git a/meta/packages/librds/librds_0.0.1.bb b/meta/packages/librds/librds_0.0.1.bb index 2d15d9b92a..b5e2c60d20 100644 --- a/meta/packages/librds/librds_0.0.1.bb +++ b/meta/packages/librds/librds_0.0.1.bb | |||
@@ -8,8 +8,4 @@ PR = "r1" | |||
8 | 8 | ||
9 | SRC_URI = "http://download.berlios.de/rdsd/librds-${PV}.tar.gz" | 9 | SRC_URI = "http://download.berlios.de/rdsd/librds-${PV}.tar.gz" |
10 | 10 | ||
11 | inherit autotools pkgconfig | 11 | inherit autotools_stage pkgconfig |
12 | |||
13 | do_stage() { | ||
14 | autotools_stage_all | ||
15 | } | ||
diff --git a/meta/packages/librsvg/librsvg_2.18.2.bb b/meta/packages/librsvg/librsvg_2.18.2.bb index c33dca155f..5e68648c12 100644 --- a/meta/packages/librsvg/librsvg_2.18.2.bb +++ b/meta/packages/librsvg/librsvg_2.18.2.bb | |||
@@ -6,7 +6,7 @@ PR = "r3" | |||
6 | 6 | ||
7 | EXTRA_OECONF = "--disable-mozilla-plugin --without-svgz --without-croco --disable-gnome-vfs" | 7 | EXTRA_OECONF = "--disable-mozilla-plugin --without-svgz --without-croco --disable-gnome-vfs" |
8 | 8 | ||
9 | inherit autotools pkgconfig gnome | 9 | inherit autotools_stage pkgconfig gnome |
10 | 10 | ||
11 | PACKAGES =+ "librsvg-gtk librsvg-gtk-dbg librsvg-gtk-dev rsvg" | 11 | PACKAGES =+ "librsvg-gtk librsvg-gtk-dbg librsvg-gtk-dev rsvg" |
12 | FILES_${PN} = "${libdir}/*.so.*" | 12 | FILES_${PN} = "${libdir}/*.so.*" |
@@ -21,10 +21,6 @@ FILES_librsvg-gtk-dev += "${libdir}/gtk-2.0/*.*a \ | |||
21 | FILES_librsvg-gtk-dbg += "${libdir}/gtk-2.0/.debug \ | 21 | FILES_librsvg-gtk-dbg += "${libdir}/gtk-2.0/.debug \ |
22 | ${libdir}/gtk-2.0/*/*/.debug" | 22 | ${libdir}/gtk-2.0/*/*/.debug" |
23 | 23 | ||
24 | do_stage() { | ||
25 | autotools_stage_all | ||
26 | } | ||
27 | |||
28 | pkg_postinst_librsvg-gtk() { | 24 | pkg_postinst_librsvg-gtk() { |
29 | if [ "x$D" != "x" ]; then | 25 | if [ "x$D" != "x" ]; then |
30 | exit 1 | 26 | exit 1 |
diff --git a/meta/packages/librsvg/librsvg_2.22.3.bb b/meta/packages/librsvg/librsvg_2.22.3.bb index c33dca155f..5e68648c12 100644 --- a/meta/packages/librsvg/librsvg_2.22.3.bb +++ b/meta/packages/librsvg/librsvg_2.22.3.bb | |||
@@ -6,7 +6,7 @@ PR = "r3" | |||
6 | 6 | ||
7 | EXTRA_OECONF = "--disable-mozilla-plugin --without-svgz --without-croco --disable-gnome-vfs" | 7 | EXTRA_OECONF = "--disable-mozilla-plugin --without-svgz --without-croco --disable-gnome-vfs" |
8 | 8 | ||
9 | inherit autotools pkgconfig gnome | 9 | inherit autotools_stage pkgconfig gnome |
10 | 10 | ||
11 | PACKAGES =+ "librsvg-gtk librsvg-gtk-dbg librsvg-gtk-dev rsvg" | 11 | PACKAGES =+ "librsvg-gtk librsvg-gtk-dbg librsvg-gtk-dev rsvg" |
12 | FILES_${PN} = "${libdir}/*.so.*" | 12 | FILES_${PN} = "${libdir}/*.so.*" |
@@ -21,10 +21,6 @@ FILES_librsvg-gtk-dev += "${libdir}/gtk-2.0/*.*a \ | |||
21 | FILES_librsvg-gtk-dbg += "${libdir}/gtk-2.0/.debug \ | 21 | FILES_librsvg-gtk-dbg += "${libdir}/gtk-2.0/.debug \ |
22 | ${libdir}/gtk-2.0/*/*/.debug" | 22 | ${libdir}/gtk-2.0/*/*/.debug" |
23 | 23 | ||
24 | do_stage() { | ||
25 | autotools_stage_all | ||
26 | } | ||
27 | |||
28 | pkg_postinst_librsvg-gtk() { | 24 | pkg_postinst_librsvg-gtk() { |
29 | if [ "x$D" != "x" ]; then | 25 | if [ "x$D" != "x" ]; then |
30 | exit 1 | 26 | exit 1 |
diff --git a/meta/packages/librsvg/librsvg_svn.bb b/meta/packages/librsvg/librsvg_svn.bb index 92a8253714..580196c2a7 100644 --- a/meta/packages/librsvg/librsvg_svn.bb +++ b/meta/packages/librsvg/librsvg_svn.bb | |||
@@ -6,7 +6,7 @@ PR = "r3" | |||
6 | 6 | ||
7 | EXTRA_OECONF = "--disable-mozilla-plugin --without-svgz --without-croco --disable-gnome-vfs" | 7 | EXTRA_OECONF = "--disable-mozilla-plugin --without-svgz --without-croco --disable-gnome-vfs" |
8 | 8 | ||
9 | inherit autotools pkgconfig gnome | 9 | inherit autotools_stage pkgconfig gnome |
10 | 10 | ||
11 | SRC_URI = "svn://svn.gnome.org/svn/${PN};module=trunk" | 11 | SRC_URI = "svn://svn.gnome.org/svn/${PN};module=trunk" |
12 | PV = "2.22.3+svnr${SRCREV}" | 12 | PV = "2.22.3+svnr${SRCREV}" |
@@ -30,10 +30,6 @@ FILES_librsvg-gtk-dev += "${libdir}/gtk-2.0/*.*a \ | |||
30 | FILES_librsvg-gtk-dbg += "${libdir}/gtk-2.0/.debug \ | 30 | FILES_librsvg-gtk-dbg += "${libdir}/gtk-2.0/.debug \ |
31 | ${libdir}/gtk-2.0/*/*/.debug" | 31 | ${libdir}/gtk-2.0/*/*/.debug" |
32 | 32 | ||
33 | do_stage() { | ||
34 | autotools_stage_all | ||
35 | } | ||
36 | |||
37 | pkg_postinst_librsvg-gtk() { | 33 | pkg_postinst_librsvg-gtk() { |
38 | if [ "x$D" != "x" ]; then | 34 | if [ "x$D" != "x" ]; then |
39 | exit 1 | 35 | exit 1 |
diff --git a/meta/packages/libsdl/libsdl-sdk_1.2.11.bb b/meta/packages/libsdl/libsdl-sdk_1.2.11.bb index fb19248a69..6cea742f17 100644 --- a/meta/packages/libsdl/libsdl-sdk_1.2.11.bb +++ b/meta/packages/libsdl/libsdl-sdk_1.2.11.bb | |||
@@ -12,7 +12,7 @@ SRC_URI = "http://www.libsdl.org/release/SDL-${PV}.tar.gz \ | |||
12 | file://kernel-asm-page.patch;patch=1 " | 12 | file://kernel-asm-page.patch;patch=1 " |
13 | S = "${WORKDIR}/SDL-${PV}" | 13 | S = "${WORKDIR}/SDL-${PV}" |
14 | 14 | ||
15 | inherit autotools binconfig pkgconfig sdk | 15 | inherit autotools_stage binconfig pkgconfig sdk |
16 | 16 | ||
17 | EXTRA_OECONF = "--disable-static --disable-debug --disable-cdrom --enable-threads --enable-timers --enable-endian \ | 17 | EXTRA_OECONF = "--disable-static --disable-debug --disable-cdrom --enable-threads --enable-timers --enable-endian \ |
18 | --enable-file --disable-oss --disable-alsa --disable-esd --disable-arts \ | 18 | --enable-file --disable-oss --disable-alsa --disable-esd --disable-arts \ |
@@ -30,7 +30,6 @@ do_configure_prepend() { | |||
30 | cp ${WORKDIR}/acinclude.m4 ${S}/acinclude.m4 | 30 | cp ${WORKDIR}/acinclude.m4 ${S}/acinclude.m4 |
31 | } | 31 | } |
32 | 32 | ||
33 | do_stage() { | 33 | do_stage_append() { |
34 | autotools_stage_all | ||
35 | install -m 0644 ${S}/build/libSDLmain.a ${STAGING_LIBDIR} | 34 | install -m 0644 ${S}/build/libSDLmain.a ${STAGING_LIBDIR} |
36 | } | 35 | } |
diff --git a/meta/packages/libsoup/libsoup-2.4_2.4.1.bb b/meta/packages/libsoup/libsoup-2.4_2.4.1.bb index 303f667dcf..36c5250c40 100644 --- a/meta/packages/libsoup/libsoup-2.4_2.4.1.bb +++ b/meta/packages/libsoup/libsoup-2.4_2.4.1.bb | |||
@@ -7,7 +7,7 @@ DEPENDS = "glib-2.0 gnutls libxml2" | |||
7 | SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libsoup/2.4/libsoup-${PV}.tar.bz2" | 7 | SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libsoup/2.4/libsoup-${PV}.tar.bz2" |
8 | S = "${WORKDIR}/libsoup-${PV}" | 8 | S = "${WORKDIR}/libsoup-${PV}" |
9 | 9 | ||
10 | inherit autotools pkgconfig | 10 | inherit autotools_stage pkgconfig |
11 | 11 | ||
12 | do_stage() { | 12 | do_stage() { |
13 | autotools_stage_all | 13 | autotools_stage_all |
diff --git a/meta/packages/libsoup/libsoup_2.2.100.bb b/meta/packages/libsoup/libsoup_2.2.100.bb index 116e2b4bd1..7ea15ec9b5 100644 --- a/meta/packages/libsoup/libsoup_2.2.100.bb +++ b/meta/packages/libsoup/libsoup_2.2.100.bb | |||
@@ -7,12 +7,8 @@ DEPENDS = "glib-2.0 gnutls libxml2" | |||
7 | 7 | ||
8 | SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/${PN}/2.2/${PN}-${PV}.tar.bz2" | 8 | SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/${PN}/2.2/${PN}-${PV}.tar.bz2" |
9 | 9 | ||
10 | inherit autotools pkgconfig | 10 | inherit autotools_stage pkgconfig |
11 | 11 | ||
12 | FILES_${PN} = "${libdir}/lib*.so.*" | 12 | FILES_${PN} = "${libdir}/lib*.so.*" |
13 | FILES_${PN}-dev = "${includedir}/ ${libdir}/" | 13 | FILES_${PN}-dev = "${includedir}/ ${libdir}/" |
14 | FILES_${PN}-doc = "${datadir}/" | 14 | FILES_${PN}-doc = "${datadir}/" |
15 | |||
16 | do_stage() { | ||
17 | autotools_stage_all | ||
18 | } | ||
diff --git a/meta/packages/libusb/libusb1_0.9.2.bb b/meta/packages/libusb/libusb1_0.9.2.bb index 2c144f053d..96daedf24f 100644 --- a/meta/packages/libusb/libusb1_0.9.2.bb +++ b/meta/packages/libusb/libusb1_0.9.2.bb | |||
@@ -12,7 +12,7 @@ SRC_URI = "\ | |||
12 | " | 12 | " |
13 | S = "${WORKDIR}/libusb-${PV}" | 13 | S = "${WORKDIR}/libusb-${PV}" |
14 | 14 | ||
15 | inherit autotools pkgconfig binconfig lib_package | 15 | inherit autotools_stage pkgconfig binconfig lib_package |
16 | 16 | ||
17 | PARALLEL_MAKE = "" | 17 | PARALLEL_MAKE = "" |
18 | EXTRA_OECONF = "--disable-build-docs" | 18 | EXTRA_OECONF = "--disable-build-docs" |
@@ -22,9 +22,5 @@ export CXXFLAGS += "-lstdc++ -I${STAGING_INCDIR}" | |||
22 | LIBTOOL = "${HOST_SYS}-libtool" | 22 | LIBTOOL = "${HOST_SYS}-libtool" |
23 | EXTRA_OEMAKE = "'LIBTOOL=${LIBTOOL}'" | 23 | EXTRA_OEMAKE = "'LIBTOOL=${LIBTOOL}'" |
24 | 24 | ||
25 | do_stage() { | ||
26 | autotools_stage_all | ||
27 | } | ||
28 | |||
29 | PACKAGES =+ "libusbpp" | 25 | PACKAGES =+ "libusbpp" |
30 | FILES_libusbpp = "${libdir}/libusbpp*.so.*" | 26 | FILES_libusbpp = "${libdir}/libusbpp*.so.*" |
diff --git a/meta/packages/libvorbis/libvorbis_1.0.1.bb b/meta/packages/libvorbis/libvorbis_1.0.1.bb index 6dd677a830..4dfd389831 100644 --- a/meta/packages/libvorbis/libvorbis_1.0.1.bb +++ b/meta/packages/libvorbis/libvorbis_1.0.1.bb | |||
@@ -9,7 +9,7 @@ PR = "r5" | |||
9 | SRC_URI = "http://www.vorbis.com/files/${PV}/unix/libvorbis-${PV}.tar.gz \ | 9 | SRC_URI = "http://www.vorbis.com/files/${PV}/unix/libvorbis-${PV}.tar.gz \ |
10 | file://m4.patch;patch=1" | 10 | file://m4.patch;patch=1" |
11 | 11 | ||
12 | inherit autotools pkgconfig | 12 | inherit autotools_stage pkgconfig |
13 | 13 | ||
14 | # vorbisfile.c reveals a problem in the gcc register spilling for the | 14 | # vorbisfile.c reveals a problem in the gcc register spilling for the |
15 | # thumb instruction set... | 15 | # thumb instruction set... |
@@ -17,7 +17,3 @@ FULL_OPTIMIZATION_thumb = "-O0" | |||
17 | 17 | ||
18 | EXTRA_OECONF = "--with-ogg-libraries=${STAGING_LIBDIR} \ | 18 | EXTRA_OECONF = "--with-ogg-libraries=${STAGING_LIBDIR} \ |
19 | --with-ogg-includes=${STAGING_INCDIR}" | 19 | --with-ogg-includes=${STAGING_INCDIR}" |
20 | |||
21 | do_stage () { | ||
22 | autotools_stage_all | ||
23 | } | ||
diff --git a/meta/packages/libxslt/libxslt_1.1.22.bb b/meta/packages/libxslt/libxslt_1.1.22.bb index 85c97fada0..82a3096a7d 100644 --- a/meta/packages/libxslt/libxslt_1.1.22.bb +++ b/meta/packages/libxslt/libxslt_1.1.22.bb | |||
@@ -9,14 +9,10 @@ SRC_URI = "ftp://xmlsoft.org/libxml2/libxslt-${PV}.tar.gz \ | |||
9 | file://pkgconfig_fix.patch;patch=1" | 9 | file://pkgconfig_fix.patch;patch=1" |
10 | S = "${WORKDIR}/libxslt-${PV}" | 10 | S = "${WORKDIR}/libxslt-${PV}" |
11 | 11 | ||
12 | inherit autotools pkgconfig | 12 | inherit autotools_stage pkgconfig |
13 | 13 | ||
14 | EXTRA_OECONF = "--without-python --without-debug --without-mem-debug --without-crypto" | 14 | EXTRA_OECONF = "--without-python --without-debug --without-mem-debug --without-crypto" |
15 | 15 | ||
16 | do_stage () { | ||
17 | autotools_stage_all | ||
18 | } | ||
19 | |||
20 | PACKAGES = "${PN}-dbg ${PN}-dev ${PN}-utils ${PN} ${PN}-doc ${PN}-locale" | 16 | PACKAGES = "${PN}-dbg ${PN}-dev ${PN}-utils ${PN} ${PN}-doc ${PN}-locale" |
21 | 17 | ||
22 | FILES_${PN}-dev += "${bindir}/xslt-config" | 18 | FILES_${PN}-dev += "${bindir}/xslt-config" |
diff --git a/meta/packages/loudmouth/loudmouth_1.4.0.bb b/meta/packages/loudmouth/loudmouth_1.4.0.bb index b50ca6adbd..92bef62aa8 100644 --- a/meta/packages/loudmouth/loudmouth_1.4.0.bb +++ b/meta/packages/loudmouth/loudmouth_1.4.0.bb | |||
@@ -5,8 +5,4 @@ DEPENDS = "glib-2.0 gnutls check" | |||
5 | 5 | ||
6 | SRC_URI = "http://ftp.imendio.com/pub/imendio/${PN}/src/${PN}-${PV}.tar.bz2" | 6 | SRC_URI = "http://ftp.imendio.com/pub/imendio/${PN}/src/${PN}-${PV}.tar.bz2" |
7 | 7 | ||
8 | inherit autotools pkgconfig | 8 | inherit autotools_stage pkgconfig |
9 | |||
10 | do_stage() { | ||
11 | autotools_stage_all | ||
12 | } | ||
diff --git a/meta/packages/lzo/lzo_2.02.bb b/meta/packages/lzo/lzo_2.02.bb index d8318a14eb..5fad10b067 100644 --- a/meta/packages/lzo/lzo_2.02.bb +++ b/meta/packages/lzo/lzo_2.02.bb | |||
@@ -9,14 +9,10 @@ SRC_URI = "http://www.oberhumer.com/opensource/lzo/download/lzo-${PV}.tar.gz \ | |||
9 | file://autofoo.patch;patch=1 \ | 9 | file://autofoo.patch;patch=1 \ |
10 | file://acinclude.m4" | 10 | file://acinclude.m4" |
11 | 11 | ||
12 | inherit autotools | 12 | inherit autotools_stage |
13 | 13 | ||
14 | EXTRA_OECONF = "--enable-shared" | 14 | EXTRA_OECONF = "--enable-shared" |
15 | 15 | ||
16 | do_configure_prepend () { | 16 | do_configure_prepend () { |
17 | cp ${WORKDIR}/acinclude.m4 ${S}/ | 17 | cp ${WORKDIR}/acinclude.m4 ${S}/ |
18 | } | 18 | } |
19 | |||
20 | do_stage() { | ||
21 | autotools_stage_all | ||
22 | } | ||
diff --git a/meta/packages/maemo/xpext_1.0-5.bb b/meta/packages/maemo/xpext_1.0-5.bb index 3636551b2c..85e669c174 100644 --- a/meta/packages/maemo/xpext_1.0-5.bb +++ b/meta/packages/maemo/xpext_1.0-5.bb | |||
@@ -13,14 +13,10 @@ S = "${WORKDIR}/xpext-1.0" | |||
13 | RDEPENDS_${PN}-dev = "" | 13 | RDEPENDS_${PN}-dev = "" |
14 | RRECOMMENDS_${PN}-dbg = "${PN}-dev (= ${DEBPV})" | 14 | RRECOMMENDS_${PN}-dbg = "${PN}-dev (= ${DEBPV})" |
15 | 15 | ||
16 | inherit autotools pkgconfig | 16 | inherit autotools_stage pkgconfig |
17 | 17 | ||
18 | do_configure_prepend () { | 18 | do_configure_prepend () { |
19 | cd ${S} | 19 | cd ${S} |
20 | chmod +x ./autogen.sh | 20 | chmod +x ./autogen.sh |
21 | ./autogen.sh | 21 | ./autogen.sh |
22 | } | 22 | } |
23 | |||
24 | do_stage() { | ||
25 | autotools_stage_all | ||
26 | } | ||
diff --git a/meta/packages/maemo/xsp_1.0.0-8.bb b/meta/packages/maemo/xsp_1.0.0-8.bb index f4f872e57f..1e10edda14 100644 --- a/meta/packages/maemo/xsp_1.0.0-8.bb +++ b/meta/packages/maemo/xsp_1.0.0-8.bb | |||
@@ -1,15 +1,12 @@ | |||
1 | PR = "r1" | ||
2 | LICENSE= "MIT" | ||
3 | DESCRIPTION = "X Server Nokia 770 extensions library" | 1 | DESCRIPTION = "X Server Nokia 770 extensions library" |
4 | SECTION = "x11/libs" | 2 | SECTION = "x11/libs" |
5 | PRIORITY = "optional" | 3 | PRIORITY = "optional" |
4 | LICENSE= "MIT" | ||
6 | DEPENDS = "virtual/libx11 libxext xpext" | 5 | DEPENDS = "virtual/libx11 libxext xpext" |
7 | 6 | ||
7 | PR = "r1" | ||
8 | |||
8 | SRC_URI = "http://repository.maemo.org/pool/maemo/ossw/source/x/xsp/${PN}_${PV}.tar.gz" | 9 | SRC_URI = "http://repository.maemo.org/pool/maemo/ossw/source/x/xsp/${PN}_${PV}.tar.gz" |
9 | S = "${WORKDIR}/Xsp" | 10 | S = "${WORKDIR}/Xsp" |
10 | 11 | ||
11 | inherit autotools pkgconfig | 12 | inherit autotools_stage pkgconfig |
12 | |||
13 | do_stage() { | ||
14 | autotools_stage_all | ||
15 | } | ||
diff --git a/meta/packages/matchbox-wm-2/matchbox-wm-2_svn.bb b/meta/packages/matchbox-wm-2/matchbox-wm-2_svn.bb index 37c00e9c61..4491c937cf 100644 --- a/meta/packages/matchbox-wm-2/matchbox-wm-2_svn.bb +++ b/meta/packages/matchbox-wm-2/matchbox-wm-2_svn.bb | |||
@@ -11,7 +11,7 @@ SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=matchbox-window-mana | |||
11 | 11 | ||
12 | S = "${WORKDIR}/matchbox-window-manager-2" | 12 | S = "${WORKDIR}/matchbox-window-manager-2" |
13 | 13 | ||
14 | inherit autotools pkgconfig update-alternatives | 14 | inherit autotools_stage pkgconfig update-alternatives |
15 | 15 | ||
16 | # Change this to x-session-manager->matchbox-session and put in | 16 | # Change this to x-session-manager->matchbox-session and put in |
17 | # matchbox-session, then change this to x-window-manager to | 17 | # matchbox-session, then change this to x-window-manager to |
@@ -40,7 +40,3 @@ do_install_append () { | |||
40 | cd ${D}${bindir} | 40 | cd ${D}${bindir} |
41 | ln -s matchbox-window-manager-2-simple matchbox-window-manager | 41 | ln -s matchbox-window-manager-2-simple matchbox-window-manager |
42 | } | 42 | } |
43 | |||
44 | do_stage() { | ||
45 | autotools_stage_all | ||
46 | } | ||
diff --git a/meta/packages/mesa/mesa-common.inc b/meta/packages/mesa/mesa-common.inc index ebfb920b87..cb112df012 100644 --- a/meta/packages/mesa/mesa-common.inc +++ b/meta/packages/mesa/mesa-common.inc | |||
@@ -10,15 +10,11 @@ S = "${WORKDIR}/Mesa-${PV}" | |||
10 | 10 | ||
11 | PROVIDES = "virtual/libgl" | 11 | PROVIDES = "virtual/libgl" |
12 | 12 | ||
13 | inherit autotools pkgconfig | 13 | inherit autotools_stage pkgconfig |
14 | 14 | ||
15 | EXTRA_OECONF = "--disable-glu \ | 15 | EXTRA_OECONF = "--disable-glu \ |
16 | --disable-glw \ | 16 | --disable-glw \ |
17 | --disable-glut \ | 17 | --disable-glut \ |
18 | --enable-glx-tls" | 18 | --enable-glx-tls" |
19 | 19 | ||
20 | do_stage() { | ||
21 | autotools_stage_all | ||
22 | } | ||
23 | |||
24 | 20 | ||
diff --git a/meta/packages/mpfr/mpfr.inc b/meta/packages/mpfr/mpfr.inc index cf898b62b6..938fd1c730 100644 --- a/meta/packages/mpfr/mpfr.inc +++ b/meta/packages/mpfr/mpfr.inc | |||
@@ -3,4 +3,4 @@ HOMEPAGE = "http://www.mpfr.org/" | |||
3 | LICENSE = "LGPL" | 3 | LICENSE = "LGPL" |
4 | SECTION = "libs" | 4 | SECTION = "libs" |
5 | 5 | ||
6 | inherit autotools | 6 | inherit autotools_stage |
diff --git a/meta/packages/mpfr/mpfr_2.3.1.bb b/meta/packages/mpfr/mpfr_2.3.1.bb index 869c4227e2..746b2435ed 100644 --- a/meta/packages/mpfr/mpfr_2.3.1.bb +++ b/meta/packages/mpfr/mpfr_2.3.1.bb | |||
@@ -5,7 +5,3 @@ PR = "r1" | |||
5 | 5 | ||
6 | SRC_URI = "http://www.mpfr.org/mpfr-${PV}/mpfr-${PV}.tar.bz2" | 6 | SRC_URI = "http://www.mpfr.org/mpfr-${PV}/mpfr-${PV}.tar.bz2" |
7 | S = "${WORKDIR}/mpfr-${PV}" | 7 | S = "${WORKDIR}/mpfr-${PV}" |
8 | |||
9 | do_stage() { | ||
10 | autotools_stage_all | ||
11 | } | ||
diff --git a/meta/packages/musicbrainz/libmusicbrainz_2.1.3.bb b/meta/packages/musicbrainz/libmusicbrainz_2.1.3.bb index f089dc800d..66f85f7b38 100644 --- a/meta/packages/musicbrainz/libmusicbrainz_2.1.3.bb +++ b/meta/packages/musicbrainz/libmusicbrainz_2.1.3.bb | |||
@@ -8,11 +8,7 @@ SRC_URI = "http://ftp.musicbrainz.org/pub/musicbrainz/libmusicbrainz-2.1.3.tar.g | |||
8 | file://gcc43_fix.patch;patch=1 \ | 8 | file://gcc43_fix.patch;patch=1 \ |
9 | file://autofoo.patch;patch=1" | 9 | file://autofoo.patch;patch=1" |
10 | 10 | ||
11 | inherit autotools pkgconfig | 11 | inherit autotools_stage pkgconfig |
12 | |||
13 | do_stage() { | ||
14 | autotools_stage_all | ||
15 | } | ||
16 | 12 | ||
17 | 13 | ||
18 | 14 | ||
diff --git a/meta/packages/neon/neon_0.28.1.bb b/meta/packages/neon/neon_0.28.1.bb index d99b9a64a4..997c73b46a 100644 --- a/meta/packages/neon/neon_0.28.1.bb +++ b/meta/packages/neon/neon_0.28.1.bb | |||
@@ -6,10 +6,6 @@ DEPENDS = "zlib libxml2 expat time gnutls" | |||
6 | SRC_URI = "http://www.webdav.org/${PN}/${P}.tar.gz \ | 6 | SRC_URI = "http://www.webdav.org/${PN}/${P}.tar.gz \ |
7 | file://pkgconfig.patch;patch=1" | 7 | file://pkgconfig.patch;patch=1" |
8 | 8 | ||
9 | inherit autotools binconfig lib_package pkgconfig | 9 | inherit autotools_stage binconfig lib_package pkgconfig |
10 | 10 | ||
11 | EXTRA_OECONF = "--with-ssl=gnutls --with-libxml2 --with-expat --enable-shared" | 11 | EXTRA_OECONF = "--with-ssl=gnutls --with-libxml2 --with-expat --enable-shared" |
12 | |||
13 | do_stage () { | ||
14 | autotools_stage_all | ||
15 | } | ||
diff --git a/meta/packages/networkmanager/networkmanager_svn.bb b/meta/packages/networkmanager/networkmanager_svn.bb index 2ff20ca4b0..40438046db 100644 --- a/meta/packages/networkmanager/networkmanager_svn.bb +++ b/meta/packages/networkmanager/networkmanager_svn.bb | |||
@@ -23,7 +23,7 @@ EXTRA_OECONF = " \ | |||
23 | 23 | ||
24 | S = "${WORKDIR}/trunk" | 24 | S = "${WORKDIR}/trunk" |
25 | 25 | ||
26 | inherit autotools pkgconfig update-rc.d | 26 | inherit autotools_stage pkgconfig update-rc.d |
27 | 27 | ||
28 | INITSCRIPT_NAME = "NetworkManager" | 28 | INITSCRIPT_NAME = "NetworkManager" |
29 | INITSCRIPT_PARAMS = "defaults 22" | 29 | INITSCRIPT_PARAMS = "defaults 22" |
@@ -37,10 +37,6 @@ do_install_append () { | |||
37 | rmdir ${D}/var/run | 37 | rmdir ${D}/var/run |
38 | } | 38 | } |
39 | 39 | ||
40 | do_stage () { | ||
41 | autotools_stage_all | ||
42 | } | ||
43 | |||
44 | pkg_postinst_${PN} () { | 40 | pkg_postinst_${PN} () { |
45 | if [ "x$D" != "x" ]; then | 41 | if [ "x$D" != "x" ]; then |
46 | exit 1 | 42 | exit 1 |
diff --git a/meta/packages/opensync/libopensync_0.22.bb b/meta/packages/opensync/libopensync_0.22.bb index be43558947..a4ffdedb6c 100644 --- a/meta/packages/opensync/libopensync_0.22.bb +++ b/meta/packages/opensync/libopensync_0.22.bb | |||
@@ -5,15 +5,10 @@ DEPENDS = "sqlite3 libxml2 zlib glib-2.0" | |||
5 | 5 | ||
6 | SRC_URI = "http://www.opensync.org/download/releases/0.22/libopensync-0.22.tar.bz2" | 6 | SRC_URI = "http://www.opensync.org/download/releases/0.22/libopensync-0.22.tar.bz2" |
7 | 7 | ||
8 | inherit autotools pkgconfig lib_package | 8 | inherit autotools_stage pkgconfig lib_package |
9 | 9 | ||
10 | EXTRA_OECONF = "--disable-python" | 10 | EXTRA_OECONF = "--disable-python" |
11 | LEAD_SONAME = "libopensync.so" | 11 | LEAD_SONAME = "libopensync.so" |
12 | 12 | ||
13 | FILES_${PN} += " ${libdir}/opensync/formats/*.so" | 13 | FILES_${PN} += " ${libdir}/opensync/formats/*.so" |
14 | FILES_${PN}-dbg += " ${libdir}/opensync/formats/.debug/*.so" | 14 | FILES_${PN}-dbg += " ${libdir}/opensync/formats/.debug/*.so" |
15 | |||
16 | do_stage() { | ||
17 | autotools_stage_all | ||
18 | } | ||
19 | |||
diff --git a/meta/packages/opkg-utils/opkg-utils_svn.bb b/meta/packages/opkg-utils/opkg-utils_svn.bb index 4c3c0905ea..c896300642 100644 --- a/meta/packages/opkg-utils/opkg-utils_svn.bb +++ b/meta/packages/opkg-utils/opkg-utils_svn.bb | |||
@@ -9,10 +9,6 @@ SRC_URI = "svn://svn.openmoko.org/trunk/src/host/;module=opkg-utils;proto=http" | |||
9 | 9 | ||
10 | S = "${WORKDIR}/opkg-utils" | 10 | S = "${WORKDIR}/opkg-utils" |
11 | 11 | ||
12 | inherit autotools | 12 | inherit autotools_stage |
13 | 13 | ||
14 | S = "${WORKDIR}/opkg-utils" | 14 | S = "${WORKDIR}/opkg-utils" |
15 | |||
16 | do_stage () { | ||
17 | autotools_stage_all | ||
18 | } | ||
diff --git a/meta/packages/opkg/opkg.inc b/meta/packages/opkg/opkg.inc index d0167f6283..d131753ddb 100644 --- a/meta/packages/opkg/opkg.inc +++ b/meta/packages/opkg/opkg.inc | |||
@@ -11,8 +11,4 @@ SRC_URI = "svn://svn.openmoko.org/trunk/src/target/;module=opkg;proto=http \ | |||
11 | 11 | ||
12 | S = "${WORKDIR}/opkg" | 12 | S = "${WORKDIR}/opkg" |
13 | 13 | ||
14 | inherit autotools pkgconfig | 14 | inherit autotools_stage pkgconfig |
15 | |||
16 | do_stage() { | ||
17 | autotools_stage_all | ||
18 | } | ||
diff --git a/meta/packages/owl-video-widget/libowl-av_svn.bb b/meta/packages/owl-video-widget/libowl-av_svn.bb index b8e039d3d5..fe3cb68e7b 100644 --- a/meta/packages/owl-video-widget/libowl-av_svn.bb +++ b/meta/packages/owl-video-widget/libowl-av_svn.bb | |||
@@ -12,8 +12,4 @@ S = "${WORKDIR}/${PN}" | |||
12 | 12 | ||
13 | SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=${PN};proto=http" | 13 | SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=${PN};proto=http" |
14 | 14 | ||
15 | inherit autotools pkgconfig | 15 | inherit autotools_stage pkgconfig |
16 | |||
17 | do_stage () { | ||
18 | autotools_stage_all | ||
19 | } \ No newline at end of file | ||
diff --git a/meta/packages/parted/parted_1.8.8.bb b/meta/packages/parted/parted_1.8.8.bb index 0e0332b70f..2a4eb769bc 100644 --- a/meta/packages/parted/parted_1.8.8.bb +++ b/meta/packages/parted/parted_1.8.8.bb | |||
@@ -11,8 +11,4 @@ SRC_URI = "${GNU_MIRROR}/parted/parted-${PV}.tar.gz \ | |||
11 | 11 | ||
12 | EXTRA_OECONF = "--disable-Werror" | 12 | EXTRA_OECONF = "--disable-Werror" |
13 | 13 | ||
14 | inherit autotools pkgconfig | 14 | inherit autotools_stage pkgconfig |
15 | |||
16 | do_stage() { | ||
17 | autotools_stage_all | ||
18 | } | ||
diff --git a/meta/packages/poppler/poppler.inc b/meta/packages/poppler/poppler.inc index c33d6f0ea1..a3bce0c32e 100644 --- a/meta/packages/poppler/poppler.inc +++ b/meta/packages/poppler/poppler.inc | |||
@@ -5,7 +5,7 @@ PR = "r1" | |||
5 | 5 | ||
6 | SRC_URI = "http://poppler.freedesktop.org/${PN}-${PV}.tar.gz" | 6 | SRC_URI = "http://poppler.freedesktop.org/${PN}-${PV}.tar.gz" |
7 | 7 | ||
8 | inherit autotools pkgconfig | 8 | inherit autotools_stage pkgconfig |
9 | 9 | ||
10 | EXTRA_OECONF = " --enable-xpdf-headers \ | 10 | EXTRA_OECONF = " --enable-xpdf-headers \ |
11 | --disable-gtk-test \ | 11 | --disable-gtk-test \ |
@@ -16,8 +16,3 @@ EXTRA_OECONF = " --enable-xpdf-headers \ | |||
16 | #check for TARGET_FPU=soft and inform configure of the result so it can disable some floating points | 16 | #check for TARGET_FPU=soft and inform configure of the result so it can disable some floating points |
17 | require poppler-fpu.inc | 17 | require poppler-fpu.inc |
18 | EXTRA_OECONF += "${@get_poppler_fpu_setting(bb, d)}" | 18 | EXTRA_OECONF += "${@get_poppler_fpu_setting(bb, d)}" |
19 | |||
20 | |||
21 | do_stage() { | ||
22 | autotools_stage_all | ||
23 | } | ||
diff --git a/meta/packages/popt/popt_1.14.bb b/meta/packages/popt/popt_1.14.bb index 619af42a43..1ad0e1996f 100644 --- a/meta/packages/popt/popt_1.14.bb +++ b/meta/packages/popt/popt_1.14.bb | |||
@@ -5,8 +5,4 @@ DEPENDS = "gettext-native" | |||
5 | 5 | ||
6 | SRC_URI = "http://rpm5.org/files/popt/popt-${PV}.tar.gz" | 6 | SRC_URI = "http://rpm5.org/files/popt/popt-${PV}.tar.gz" |
7 | 7 | ||
8 | inherit autotools | 8 | inherit autotools_stage |
9 | |||
10 | do_stage () { | ||
11 | autotools_stage_all | ||
12 | } | ||
diff --git a/meta/packages/python/python-gst_0.10.8.bb b/meta/packages/python/python-gst_0.10.8.bb index 224d24b59a..31d3bc94e4 100644 --- a/meta/packages/python/python-gst_0.10.8.bb +++ b/meta/packages/python/python-gst_0.10.8.bb | |||
@@ -8,7 +8,7 @@ SRC_URI = "http://gstreamer.freedesktop.org/src/gst-python/gst-python-${PV}.tar. | |||
8 | file://python-path.patch;patch=1" | 8 | file://python-path.patch;patch=1" |
9 | S = "${WORKDIR}/gst-python-${PV}" | 9 | S = "${WORKDIR}/gst-python-${PV}" |
10 | 10 | ||
11 | inherit autotools distutils-base pkgconfig | 11 | inherit autotools_stage distutils-base pkgconfig |
12 | 12 | ||
13 | EXTRA_OECONF += "--with-python-includes=${STAGING_INCDIR}/../" | 13 | EXTRA_OECONF += "--with-python-includes=${STAGING_INCDIR}/../" |
14 | 14 | ||
@@ -17,10 +17,6 @@ do_configure_prepend() { | |||
17 | install -m 0644 ${S}/common/m4/*.m4 ${S}/m4/ | 17 | install -m 0644 ${S}/common/m4/*.m4 ${S}/m4/ |
18 | } | 18 | } |
19 | 19 | ||
20 | do_stage() { | ||
21 | autotools_stage_all | ||
22 | } | ||
23 | |||
24 | FILES_${PN} += "${datadir}/gst-python" | 20 | FILES_${PN} += "${datadir}/gst-python" |
25 | FILES_${PN}-dev += "${datadir}/gst-python/0.10/defs" | 21 | FILES_${PN}-dev += "${datadir}/gst-python/0.10/defs" |
26 | FILES_${PN}-dbg += "${libdir}/${PYTHON_DIR}/site-packages/gst-0.10/gst/.debug/" | 22 | FILES_${PN}-dbg += "${libdir}/${PYTHON_DIR}/site-packages/gst-0.10/gst/.debug/" |
diff --git a/meta/packages/readline/readline_5.2.bb b/meta/packages/readline/readline_5.2.bb index a7dc818790..daafa19c31 100644 --- a/meta/packages/readline/readline_5.2.bb +++ b/meta/packages/readline/readline_5.2.bb | |||
@@ -16,17 +16,13 @@ SRC_URI = "ftp://ftp.gnu.org/gnu/readline/readline-${PV}.tar.gz \ | |||
16 | 16 | ||
17 | S = "${WORKDIR}/readline-${PV}" | 17 | S = "${WORKDIR}/readline-${PV}" |
18 | 18 | ||
19 | inherit autotools | 19 | inherit autotools_stage |
20 | 20 | ||
21 | do_configure () { | 21 | do_configure () { |
22 | install -m 0644 ${WORKDIR}/acinclude.m4 ${S}/ | 22 | install -m 0644 ${WORKDIR}/acinclude.m4 ${S}/ |
23 | autotools_do_configure | 23 | autotools_do_configure |
24 | } | 24 | } |
25 | 25 | ||
26 | do_stage() { | ||
27 | autotools_stage_all | ||
28 | } | ||
29 | |||
30 | do_install () { | 26 | do_install () { |
31 | autotools_do_install | 27 | autotools_do_install |
32 | # Make install doesn't properly install these | 28 | # Make install doesn't properly install these |
diff --git a/meta/packages/speex/speex_1.1.12+1.2beta3.bb b/meta/packages/speex/speex_1.1.12+1.2beta3.bb index f1445100b4..446694f55d 100644 --- a/meta/packages/speex/speex_1.1.12+1.2beta3.bb +++ b/meta/packages/speex/speex_1.1.12+1.2beta3.bb | |||
@@ -9,16 +9,12 @@ S = "${WORKDIR}/${PN}-1.2beta3" | |||
9 | 9 | ||
10 | PARALLEL_MAKE = "" | 10 | PARALLEL_MAKE = "" |
11 | 11 | ||
12 | inherit autotools pkgconfig | 12 | inherit autotools_stage pkgconfig |
13 | 13 | ||
14 | EXTRA_OECONF = " --enable-fixed-point --with-ogg-libraries=${STAGING_LIBDIR} \ | 14 | EXTRA_OECONF = " --enable-fixed-point --with-ogg-libraries=${STAGING_LIBDIR} \ |
15 | --disable-float-api --disable-vbr \ | 15 | --disable-float-api --disable-vbr \ |
16 | --with-ogg-includes=${STAGING_INCDIR} --disable-oggtest" | 16 | --with-ogg-includes=${STAGING_INCDIR} --disable-oggtest" |
17 | 17 | ||
18 | do_stage() { | ||
19 | autotools_stage_all | ||
20 | } | ||
21 | |||
22 | PACKAGES += "${PN}-bin" | 18 | PACKAGES += "${PN}-bin" |
23 | FILES_${PN} = "${libdir}/libspeex.so.*" | 19 | FILES_${PN} = "${libdir}/libspeex.so.*" |
24 | FILES_${PN}-dev += "${libdir}/libspeex.so.*" | 20 | FILES_${PN}-dev += "${libdir}/libspeex.so.*" |
diff --git a/meta/packages/startup-notification/startup-notification_0.9.bb b/meta/packages/startup-notification/startup-notification_0.9.bb index 655f3c9a02..4dedd10e44 100644 --- a/meta/packages/startup-notification/startup-notification_0.9.bb +++ b/meta/packages/startup-notification/startup-notification_0.9.bb | |||
@@ -4,14 +4,10 @@ SECTION = "libs" | |||
4 | PRIORITY = "optional" | 4 | PRIORITY = "optional" |
5 | DEPENDS = "virtual/libx11 libsm" | 5 | DEPENDS = "virtual/libx11 libsm" |
6 | 6 | ||
7 | inherit autotools pkgconfig | 7 | inherit autotools_stage pkgconfig |
8 | 8 | ||
9 | SRC_URI = "http://www.freedesktop.org/software/startup-notification/releases/${PN}-${PV}.tar.gz" | 9 | SRC_URI = "http://www.freedesktop.org/software/startup-notification/releases/${PN}-${PV}.tar.gz" |
10 | 10 | ||
11 | do_configure_prepend () { | 11 | do_configure_prepend () { |
12 | export X_LIBS=" -L${STAGING_LIBDIR}" | 12 | export X_LIBS=" -L${STAGING_LIBDIR}" |
13 | } | 13 | } |
14 | |||
15 | do_stage () { | ||
16 | autotools_stage_all | ||
17 | } | ||
diff --git a/meta/packages/telepathy/libtelepathy_0.3.3.bb b/meta/packages/telepathy/libtelepathy_0.3.3.bb index 4343688fba..1c9bf2a714 100644 --- a/meta/packages/telepathy/libtelepathy_0.3.3.bb +++ b/meta/packages/telepathy/libtelepathy_0.3.3.bb | |||
@@ -7,11 +7,7 @@ PR = "r2" | |||
7 | SRC_URI = "http://telepathy.freedesktop.org/releases/libtelepathy/libtelepathy-${PV}.tar.gz \ | 7 | SRC_URI = "http://telepathy.freedesktop.org/releases/libtelepathy/libtelepathy-${PV}.tar.gz \ |
8 | file://prefer_python_2.5.patch;patch=1 " | 8 | file://prefer_python_2.5.patch;patch=1 " |
9 | 9 | ||
10 | inherit autotools pkgconfig | 10 | inherit autotools_stage pkgconfig |
11 | 11 | ||
12 | FILES_${PN} += "${datadir}/telepathy \ | 12 | FILES_${PN} += "${datadir}/telepathy \ |
13 | ${datadir}/dbus-1" | 13 | ${datadir}/dbus-1" |
14 | |||
15 | do_stage() { | ||
16 | autotools_stage_all | ||
17 | } | ||
diff --git a/meta/packages/telepathy/telepathy-mission-control_4.61.bb b/meta/packages/telepathy/telepathy-mission-control_4.61.bb index 1ea00312cb..18de11b568 100644 --- a/meta/packages/telepathy/telepathy-mission-control_4.61.bb +++ b/meta/packages/telepathy/telepathy-mission-control_4.61.bb | |||
@@ -7,7 +7,7 @@ DEPENDS = "libtelepathy dbus-glib gconf" | |||
7 | SRC_URI = "${SOURCEFORGE_MIRROR}/mission-control/telepathy-mission-control-${PV}.tar.gz \ | 7 | SRC_URI = "${SOURCEFORGE_MIRROR}/mission-control/telepathy-mission-control-${PV}.tar.gz \ |
8 | file://pkgconfig.patch;patch=1" | 8 | file://pkgconfig.patch;patch=1" |
9 | 9 | ||
10 | inherit autotools pkgconfig | 10 | inherit autotools_stage pkgconfig |
11 | 11 | ||
12 | PACKAGES =+ " \ | 12 | PACKAGES =+ " \ |
13 | libmissioncontrol \ | 13 | libmissioncontrol \ |
@@ -36,7 +36,3 @@ FILES_libmissioncontrol-server-dev = "${libdir}/libmissioncontrol-server.*" | |||
36 | FILES_libmissioncontrol-dbg = "${libdir}/.debug/libmissioncontrol.so.*" | 36 | FILES_libmissioncontrol-dbg = "${libdir}/.debug/libmissioncontrol.so.*" |
37 | FILES_libmissioncontrol-config-dbg = "${libdir}/.debug/libmissioncontrol-config.so.*" | 37 | FILES_libmissioncontrol-config-dbg = "${libdir}/.debug/libmissioncontrol-config.so.*" |
38 | FILES_libmissioncontrol-server-dbg = "${libdir}/.debug/libmissioncontrol-server.so.*" | 38 | FILES_libmissioncontrol-server-dbg = "${libdir}/.debug/libmissioncontrol-server.so.*" |
39 | |||
40 | do_stage() { | ||
41 | autotools_stage_all | ||
42 | } | ||
diff --git a/meta/packages/tremor/tremor_20041119.bb b/meta/packages/tremor/tremor_20041119.bb index 530d6bb871..fd5ab7c58c 100644 --- a/meta/packages/tremor/tremor_20041119.bb +++ b/meta/packages/tremor/tremor_20041119.bb | |||
@@ -10,16 +10,8 @@ SRC_URI = "svn://svn.xiph.org/trunk;module=Tremor;rev=4573;proto=http" | |||
10 | 10 | ||
11 | S = "${WORKDIR}/Tremor" | 11 | S = "${WORKDIR}/Tremor" |
12 | 12 | ||
13 | inherit autotools | 13 | inherit autotools_stage |
14 | 14 | ||
15 | EXTRA_OECONF=" --enable-shared --disable-rpath " | 15 | EXTRA_OECONF=" --enable-shared --disable-rpath " |
16 | 16 | ||
17 | #do_configure_prepend() { | ||
18 | # ./autogen.sh | ||
19 | #} | ||
20 | |||
21 | do_stage() { | ||
22 | autotools_stage_all | ||
23 | } | ||
24 | |||
25 | ARM_INSTRUCTION_SET = "arm" | 17 | ARM_INSTRUCTION_SET = "arm" |
diff --git a/meta/packages/tslib/tslib_1.0.bb b/meta/packages/tslib/tslib_1.0.bb index f4c437c649..c2e732996a 100644 --- a/meta/packages/tslib/tslib_1.0.bb +++ b/meta/packages/tslib/tslib_1.0.bb | |||
@@ -15,14 +15,10 @@ SRC_URI = "http://download.berlios.de/tslib/tslib-1.0.tar.bz2 \ | |||
15 | SRC_URI_append_mnci += " file://devfs.patch;patch=1" | 15 | SRC_URI_append_mnci += " file://devfs.patch;patch=1" |
16 | SRC_URI_append_mnci += " file://event1.patch;patch=1" | 16 | SRC_URI_append_mnci += " file://event1.patch;patch=1" |
17 | 17 | ||
18 | inherit autotools pkgconfig | 18 | inherit autotools_stage pkgconfig |
19 | 19 | ||
20 | EXTRA_OECONF = "--enable-shared --disable-h3600 --enable-input --disable-corgi --disable-collie --disable-mk712 --disable-arctic2 --disable-ucb1x00" | 20 | EXTRA_OECONF = "--enable-shared --disable-h3600 --enable-input --disable-corgi --disable-collie --disable-mk712 --disable-arctic2 --disable-ucb1x00" |
21 | 21 | ||
22 | do_stage() { | ||
23 | autotools_stage_all | ||
24 | } | ||
25 | |||
26 | do_install_prepend() { | 22 | do_install_prepend() { |
27 | install -m 0644 ${WORKDIR}/ts.conf ${S}/etc/ts.conf | 23 | install -m 0644 ${WORKDIR}/ts.conf ${S}/etc/ts.conf |
28 | } | 24 | } |