diff options
author | Max Eliaser <max.eliaser@intel.com> | 2014-05-01 13:00:28 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-02 20:46:59 +0100 |
commit | 64df4e4aefe6cc460145c8a25c7afadc56fd4a88 (patch) | |
tree | 39b9b91c1d8de7a7aa113da186f701414b830e52 /meta | |
parent | 075e2884ce10094258af6f7c6db1af7579b5bffa (diff) | |
download | poky-64df4e4aefe6cc460145c8a25c7afadc56fd4a88.tar.gz |
Add texinfo.bbclass; recipes that use texinfo utils at build-time inherit it.
The class itself currently does nothing. The idea is to mark all recipes that
make use of the texinfo utilities. In the future, this class could be used to
suppress the generation/formatting of documentation for performance,
explicitly track dependencies on these utilities, and eliminate Yocto's
current dependency on the host system's texinfo utilities.
(From OE-Core rev: e6fb2f9afe2ba6b676c46d1eb297ca9cc532d405)
Signed-off-by: Max Eliaser <max.eliaser@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
71 files changed, 73 insertions, 73 deletions
diff --git a/meta/classes/texinfo.bbclass b/meta/classes/texinfo.bbclass new file mode 100644 index 0000000000..60cba0f81d --- /dev/null +++ b/meta/classes/texinfo.bbclass | |||
@@ -0,0 +1,2 @@ | |||
1 | # This class is inherited by recipes whose upstream packages invoke the | ||
2 | # texinfo utilities at build-time. This class currently does nothing. | ||
diff --git a/meta/recipes-bsp/grub/grub-efi_2.00.bb b/meta/recipes-bsp/grub/grub-efi_2.00.bb index 4b43749200..7b49493e3e 100644 --- a/meta/recipes-bsp/grub/grub-efi_2.00.bb +++ b/meta/recipes-bsp/grub/grub-efi_2.00.bb | |||
@@ -52,9 +52,7 @@ python __anonymous () { | |||
52 | d.setVar("GRUB_IMAGE", grubimage) | 52 | d.setVar("GRUB_IMAGE", grubimage) |
53 | } | 53 | } |
54 | 54 | ||
55 | inherit autotools-brokensep | 55 | inherit autotools-brokensep gettext texinfo deploy |
56 | inherit gettext | ||
57 | inherit deploy | ||
58 | 56 | ||
59 | CACHED_CONFIGUREVARS += "ac_cv_path_HELP2MAN=" | 57 | CACHED_CONFIGUREVARS += "ac_cv_path_HELP2MAN=" |
60 | EXTRA_OECONF = "--with-platform=efi --disable-grub-mkfont \ | 58 | EXTRA_OECONF = "--with-platform=efi --disable-grub-mkfont \ |
diff --git a/meta/recipes-bsp/grub/grub_0.97.bb b/meta/recipes-bsp/grub/grub_0.97.bb index 376244e331..997a045b2e 100644 --- a/meta/recipes-bsp/grub/grub_0.97.bb +++ b/meta/recipes-bsp/grub/grub_0.97.bb | |||
@@ -23,7 +23,7 @@ SRC_URI = "ftp://alpha.gnu.org/gnu/grub/grub-${PV}.tar.gz; \ | |||
23 | SRC_URI[md5sum] = "cd3f3eb54446be6003156158d51f4884" | 23 | SRC_URI[md5sum] = "cd3f3eb54446be6003156158d51f4884" |
24 | SRC_URI[sha256sum] = "4e1d15d12dbd3e9208111d6b806ad5a9857ca8850c47877d36575b904559260b" | 24 | SRC_URI[sha256sum] = "4e1d15d12dbd3e9208111d6b806ad5a9857ca8850c47877d36575b904559260b" |
25 | 25 | ||
26 | inherit autotools | 26 | inherit autotools texinfo |
27 | 27 | ||
28 | COMPATIBLE_HOST = "i.86.*-linux" | 28 | COMPATIBLE_HOST = "i.86.*-linux" |
29 | 29 | ||
diff --git a/meta/recipes-bsp/grub/grub_2.00.bb b/meta/recipes-bsp/grub/grub_2.00.bb index c21031bde1..6075b20bdc 100644 --- a/meta/recipes-bsp/grub/grub_2.00.bb +++ b/meta/recipes-bsp/grub/grub_2.00.bb | |||
@@ -33,8 +33,7 @@ COMPATIBLE_HOST = '(x86_64.*|i.86.*)-(linux|freebsd.*)' | |||
33 | FILES_${PN}-dbg += "${libdir}/${BPN}/i386-pc/.debug" | 33 | FILES_${PN}-dbg += "${libdir}/${BPN}/i386-pc/.debug" |
34 | 34 | ||
35 | 35 | ||
36 | inherit autotools | 36 | inherit autotools gettext texinfo |
37 | inherit gettext | ||
38 | 37 | ||
39 | PACKAGECONFIG ??= "" | 38 | PACKAGECONFIG ??= "" |
40 | PACKAGECONFIG[grub-mount] = "--enable-grub-mount,--disable-grub-mount,fuse" | 39 | PACKAGECONFIG[grub-mount] = "--enable-grub-mount,--disable-grub-mount,fuse" |
diff --git a/meta/recipes-bsp/grub/grub_git.bb b/meta/recipes-bsp/grub/grub_git.bb index 114cf77de9..7db3ffd7a8 100644 --- a/meta/recipes-bsp/grub/grub_git.bb +++ b/meta/recipes-bsp/grub/grub_git.bb | |||
@@ -28,8 +28,7 @@ S = "${WORKDIR}/git" | |||
28 | 28 | ||
29 | COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|aarch64.*)-(linux.*|freebsd.*)' | 29 | COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|aarch64.*)-(linux.*|freebsd.*)' |
30 | 30 | ||
31 | inherit autotools | 31 | inherit autotools gettext texinfo |
32 | inherit gettext | ||
33 | 32 | ||
34 | PACKAGECONFIG ??= "" | 33 | PACKAGECONFIG ??= "" |
35 | PACKAGECONFIG[grub-mount] = "--enable-grub-mount,--disable-grub-mount,fuse" | 34 | PACKAGECONFIG[grub-mount] = "--enable-grub-mount,--disable-grub-mount,fuse" |
diff --git a/meta/recipes-core/coreutils/coreutils_6.9.bb b/meta/recipes-core/coreutils/coreutils_6.9.bb index b9249146a9..debd2a123b 100644 --- a/meta/recipes-core/coreutils/coreutils_6.9.bb +++ b/meta/recipes-core/coreutils/coreutils_6.9.bb | |||
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \ | |||
11 | PR = "r5" | 11 | PR = "r5" |
12 | DEPENDS_class-native = "gettext-native" | 12 | DEPENDS_class-native = "gettext-native" |
13 | 13 | ||
14 | inherit autotools gettext | 14 | inherit autotools gettext texinfo |
15 | 15 | ||
16 | SRC_URI_BASE = "${GNU_MIRROR}/coreutils/${BP}.tar.bz2 \ | 16 | SRC_URI_BASE = "${GNU_MIRROR}/coreutils/${BP}.tar.bz2 \ |
17 | file://gnulib_m4.patch \ | 17 | file://gnulib_m4.patch \ |
diff --git a/meta/recipes-core/coreutils/coreutils_8.22.bb b/meta/recipes-core/coreutils/coreutils_8.22.bb index 8f378145a9..d5373ae9d6 100644 --- a/meta/recipes-core/coreutils/coreutils_8.22.bb +++ b/meta/recipes-core/coreutils/coreutils_8.22.bb | |||
@@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504\ | |||
10 | DEPENDS = "gmp libcap" | 10 | DEPENDS = "gmp libcap" |
11 | DEPENDS_class-native = "" | 11 | DEPENDS_class-native = "" |
12 | 12 | ||
13 | inherit autotools gettext | 13 | inherit autotools gettext texinfo |
14 | 14 | ||
15 | SRC_URI = "${GNU_MIRROR}/coreutils/${BP}.tar.xz \ | 15 | SRC_URI = "${GNU_MIRROR}/coreutils/${BP}.tar.xz \ |
16 | file://remove-usr-local-lib-from-m4.patch \ | 16 | file://remove-usr-local-lib-from-m4.patch \ |
diff --git a/meta/recipes-core/eglibc/eglibc.inc b/meta/recipes-core/eglibc/eglibc.inc index 30654f6d88..3a623bb8c7 100644 --- a/meta/recipes-core/eglibc/eglibc.inc +++ b/meta/recipes-core/eglibc/eglibc.inc | |||
@@ -38,7 +38,7 @@ DEPENDS = "virtual/${TARGET_PREFIX}gcc-initial libgcc-initial linux-libc-headers | |||
38 | #RDEPENDS_${PN} += "${@['','libgcc']['nptl' in '${GLIBC_ADDONS}']}" | 38 | #RDEPENDS_${PN} += "${@['','libgcc']['nptl' in '${GLIBC_ADDONS}']}" |
39 | PROVIDES = "virtual/libc virtual/${TARGET_PREFIX}libc-for-gcc" | 39 | PROVIDES = "virtual/libc virtual/${TARGET_PREFIX}libc-for-gcc" |
40 | PROVIDES += "virtual/libintl virtual/libiconv" | 40 | PROVIDES += "virtual/libintl virtual/libiconv" |
41 | inherit autotools | 41 | inherit autotools texinfo |
42 | require eglibc-options.inc | 42 | require eglibc-options.inc |
43 | 43 | ||
44 | LEAD_SONAME = "libc.so" | 44 | LEAD_SONAME = "libc.so" |
diff --git a/meta/recipes-core/gettext/gettext_0.16.1.bb b/meta/recipes-core/gettext/gettext_0.16.1.bb index 5725e7fe07..892194c9ce 100644 --- a/meta/recipes-core/gettext/gettext_0.16.1.bb +++ b/meta/recipes-core/gettext/gettext_0.16.1.bb | |||
@@ -30,7 +30,7 @@ SRC_URI[sha256sum] = "0bf850d1a079fb5a61f0a47b1a9efd35eb44032255375e1cedb0253bc2 | |||
30 | 30 | ||
31 | PARALLEL_MAKE = "" | 31 | PARALLEL_MAKE = "" |
32 | 32 | ||
33 | inherit autotools | 33 | inherit autotools texinfo |
34 | 34 | ||
35 | EXTRA_OECONF += "--without-lisp --disable-csharp --disable-openmp --without-emacs" | 35 | EXTRA_OECONF += "--without-lisp --disable-csharp --disable-openmp --without-emacs" |
36 | acpaths = '-I ${S}/autoconf-lib-link/m4/ \ | 36 | acpaths = '-I ${S}/autoconf-lib-link/m4/ \ |
diff --git a/meta/recipes-core/gettext/gettext_0.18.3.2.bb b/meta/recipes-core/gettext/gettext_0.18.3.2.bb index 553d52223e..65d4103a97 100644 --- a/meta/recipes-core/gettext/gettext_0.18.3.2.bb +++ b/meta/recipes-core/gettext/gettext_0.18.3.2.bb | |||
@@ -21,7 +21,7 @@ LDFLAGS_prepend_libc-uclibc = " -lrt -lpthread " | |||
21 | SRC_URI[md5sum] = "241aba309d07aa428252c74b40a818ef" | 21 | SRC_URI[md5sum] = "241aba309d07aa428252c74b40a818ef" |
22 | SRC_URI[sha256sum] = "d1a4e452d60eb407ab0305976529a45c18124bd518d976971ac6dc7aa8b4c5d7" | 22 | SRC_URI[sha256sum] = "d1a4e452d60eb407ab0305976529a45c18124bd518d976971ac6dc7aa8b4c5d7" |
23 | 23 | ||
24 | inherit autotools | 24 | inherit autotools texinfo |
25 | 25 | ||
26 | EXTRA_OECONF += "--without-lispdir \ | 26 | EXTRA_OECONF += "--without-lispdir \ |
27 | --disable-csharp \ | 27 | --disable-csharp \ |
diff --git a/meta/recipes-core/readline/readline.inc b/meta/recipes-core/readline/readline.inc index 6c43e2df11..9d78aa9702 100644 --- a/meta/recipes-core/readline/readline.inc +++ b/meta/recipes-core/readline/readline.inc | |||
@@ -18,7 +18,7 @@ SRC_URI = "${GNU_MIRROR}/readline/${BPN}-${PV}.tar.gz;name=archive \ | |||
18 | 18 | ||
19 | S = "${WORKDIR}/${BPN}-${PV}" | 19 | S = "${WORKDIR}/${BPN}-${PV}" |
20 | 20 | ||
21 | inherit autotools | 21 | inherit autotools texinfo |
22 | 22 | ||
23 | LEAD_SONAME = "libreadline.so" | 23 | LEAD_SONAME = "libreadline.so" |
24 | 24 | ||
diff --git a/meta/recipes-devtools/autoconf/autoconf.inc b/meta/recipes-devtools/autoconf/autoconf.inc index 222106a78e..8ed4b134ea 100644 --- a/meta/recipes-devtools/autoconf/autoconf.inc +++ b/meta/recipes-devtools/autoconf/autoconf.inc | |||
@@ -29,7 +29,7 @@ RDEPENDS_${PN}_class-native = "m4-native gnu-config-native" | |||
29 | SRC_URI = "${GNU_MIRROR}/autoconf/autoconf-${PV}.tar.gz \ | 29 | SRC_URI = "${GNU_MIRROR}/autoconf/autoconf-${PV}.tar.gz \ |
30 | file://program_prefix.patch" | 30 | file://program_prefix.patch" |
31 | 31 | ||
32 | inherit autotools | 32 | inherit autotools texinfo |
33 | 33 | ||
34 | do_configure() { | 34 | do_configure() { |
35 | oe_runconf | 35 | oe_runconf |
diff --git a/meta/recipes-devtools/autogen/autogen-native_5.18.2.bb b/meta/recipes-devtools/autogen/autogen-native_5.18.2.bb index 98bdb59792..92e7099f20 100644 --- a/meta/recipes-devtools/autogen/autogen-native_5.18.2.bb +++ b/meta/recipes-devtools/autogen/autogen-native_5.18.2.bb | |||
@@ -17,7 +17,7 @@ SRC_URI[sha256sum] = "cc2702dec21ba5b01144865163f6d1a54268d2b72aafc5520ad0e0cb57 | |||
17 | 17 | ||
18 | DEPENDS = "guile-native libtool-native libxml2-native" | 18 | DEPENDS = "guile-native libtool-native libxml2-native" |
19 | 19 | ||
20 | inherit autotools native | 20 | inherit autotools texinfo native |
21 | 21 | ||
22 | # autogen-native links against libguile which may have been relocated with sstate | 22 | # autogen-native links against libguile which may have been relocated with sstate |
23 | # these environment variables ensure there isn't a relocation issue | 23 | # these environment variables ensure there isn't a relocation issue |
diff --git a/meta/recipes-devtools/automake/automake.inc b/meta/recipes-devtools/automake/automake.inc index b73cdeb60b..a1debd8d53 100644 --- a/meta/recipes-devtools/automake/automake.inc +++ b/meta/recipes-devtools/automake/automake.inc | |||
@@ -7,7 +7,7 @@ SECTION = "devel" | |||
7 | 7 | ||
8 | SRC_URI = "${GNU_MIRROR}/automake/automake-${PV}.tar.gz" | 8 | SRC_URI = "${GNU_MIRROR}/automake/automake-${PV}.tar.gz" |
9 | 9 | ||
10 | inherit autotools | 10 | inherit autotools texinfo |
11 | 11 | ||
12 | do_configure() { | 12 | do_configure() { |
13 | oe_runconf | 13 | oe_runconf |
diff --git a/meta/recipes-devtools/binutils/binutils.inc b/meta/recipes-devtools/binutils/binutils.inc index 5ab2b92f14..afb582ad67 100644 --- a/meta/recipes-devtools/binutils/binutils.inc +++ b/meta/recipes-devtools/binutils/binutils.inc | |||
@@ -13,7 +13,7 @@ LICENSE = "GPLv3" | |||
13 | 13 | ||
14 | DEPENDS = "flex-native bison-native zlib-native gnu-config-native autoconf-native" | 14 | DEPENDS = "flex-native bison-native zlib-native gnu-config-native autoconf-native" |
15 | 15 | ||
16 | inherit autotools gettext multilib_header | 16 | inherit autotools gettext multilib_header texinfo |
17 | 17 | ||
18 | FILES_${PN} = " \ | 18 | FILES_${PN} = " \ |
19 | ${bindir}/${TARGET_PREFIX}* \ | 19 | ${bindir}/${TARGET_PREFIX}* \ |
diff --git a/meta/recipes-devtools/bison/bison_2.3.bb b/meta/recipes-devtools/bison/bison_2.3.bb index a135451162..174916bcb1 100644 --- a/meta/recipes-devtools/bison/bison_2.3.bb +++ b/meta/recipes-devtools/bison/bison_2.3.bb | |||
@@ -22,7 +22,7 @@ SRC_URI[sha256sum] = "52f78aa4761a74ceb7fdf770f3554dd84308c3b93c4255e3a5c17558ec | |||
22 | DEPENDS_class-native = "gettext-native" | 22 | DEPENDS_class-native = "gettext-native" |
23 | SRC_URI_class-native = "${BASE_SRC_URI}" | 23 | SRC_URI_class-native = "${BASE_SRC_URI}" |
24 | 24 | ||
25 | inherit autotools gettext | 25 | inherit autotools gettext texinfo |
26 | acpaths = "-I ${S}/m4" | 26 | acpaths = "-I ${S}/m4" |
27 | 27 | ||
28 | do_configure_prepend () { | 28 | do_configure_prepend () { |
diff --git a/meta/recipes-devtools/bison/bison_2.7.1.bb b/meta/recipes-devtools/bison/bison_2.7.1.bb index 1df750a255..4a3ad154db 100644 --- a/meta/recipes-devtools/bison/bison_2.7.1.bb +++ b/meta/recipes-devtools/bison/bison_2.7.1.bb | |||
@@ -28,7 +28,7 @@ LDFLAGS_prepend_libc-uclibc = " -lrt " | |||
28 | DEPENDS_class-native = "gettext-minimal-native" | 28 | DEPENDS_class-native = "gettext-minimal-native" |
29 | SRC_URI_class-native = "${BASE_SRC_URI}" | 29 | SRC_URI_class-native = "${BASE_SRC_URI}" |
30 | 30 | ||
31 | inherit autotools gettext | 31 | inherit autotools gettext texinfo |
32 | acpaths = "-I ${S}/m4" | 32 | acpaths = "-I ${S}/m4" |
33 | 33 | ||
34 | do_install_append_class-native() { | 34 | do_install_append_class-native() { |
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs.inc b/meta/recipes-devtools/e2fsprogs/e2fsprogs.inc index 99447c1540..bcd9ba7590 100644 --- a/meta/recipes-devtools/e2fsprogs/e2fsprogs.inc +++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs.inc | |||
@@ -22,4 +22,4 @@ DEPENDS = "util-linux" | |||
22 | SRC_URI = "${SOURCEFORGE_MIRROR}/e2fsprogs/e2fsprogs-${PV}.tar.gz \ | 22 | SRC_URI = "${SOURCEFORGE_MIRROR}/e2fsprogs/e2fsprogs-${PV}.tar.gz \ |
23 | file://mkdir.patch" | 23 | file://mkdir.patch" |
24 | 24 | ||
25 | inherit autotools gettext pkgconfig multilib_header | 25 | inherit autotools gettext texinfo pkgconfig multilib_header |
diff --git a/meta/recipes-devtools/flex/flex.inc b/meta/recipes-devtools/flex/flex.inc index 75c10ef340..54e4ec3b25 100644 --- a/meta/recipes-devtools/flex/flex.inc +++ b/meta/recipes-devtools/flex/flex.inc | |||
@@ -10,7 +10,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/flex/flex-${PV}.tar.bz2 \ | |||
10 | file://run-ptest \ | 10 | file://run-ptest \ |
11 | " | 11 | " |
12 | 12 | ||
13 | inherit autotools gettext ptest | 13 | inherit autotools gettext texinfo ptest |
14 | 14 | ||
15 | 15 | ||
16 | M4 = "${bindir}/m4" | 16 | M4 = "${bindir}/m4" |
diff --git a/meta/recipes-devtools/gcc/gcc-common.inc b/meta/recipes-devtools/gcc/gcc-common.inc index e56e598b75..0d19575b5a 100644 --- a/meta/recipes-devtools/gcc/gcc-common.inc +++ b/meta/recipes-devtools/gcc/gcc-common.inc | |||
@@ -5,7 +5,7 @@ LICENSE = "GPL" | |||
5 | 5 | ||
6 | NATIVEDEPS = "" | 6 | NATIVEDEPS = "" |
7 | 7 | ||
8 | inherit autotools gettext | 8 | inherit autotools gettext texinfo |
9 | 9 | ||
10 | BPN = "gcc" | 10 | BPN = "gcc" |
11 | 11 | ||
diff --git a/meta/recipes-devtools/gdb/gdb-common.inc b/meta/recipes-devtools/gdb/gdb-common.inc index 60f03e734e..b4d48809d3 100644 --- a/meta/recipes-devtools/gdb/gdb-common.inc +++ b/meta/recipes-devtools/gdb/gdb-common.inc | |||
@@ -19,7 +19,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \ | |||
19 | file://COPYING.LIB;md5=9f604d8a4f8e74f4f5140845a21b6674 \ | 19 | file://COPYING.LIB;md5=9f604d8a4f8e74f4f5140845a21b6674 \ |
20 | file://COPYING3;md5=d32239bcb673463ab874e80d47fae504 \ | 20 | file://COPYING3;md5=d32239bcb673463ab874e80d47fae504 \ |
21 | file://COPYING3.LIB;md5=6a6a8e020838b23406c81b19c1d46df6" | 21 | file://COPYING3.LIB;md5=6a6a8e020838b23406c81b19c1d46df6" |
22 | inherit autotools | 22 | inherit autotools texinfo |
23 | 23 | ||
24 | SRC_URI = "${GNU_MIRROR}/gdb/gdb-${PV}.tar.gz \ | 24 | SRC_URI = "${GNU_MIRROR}/gdb/gdb-${PV}.tar.gz \ |
25 | " | 25 | " |
diff --git a/meta/recipes-devtools/guile/guile_2.0.9.bb b/meta/recipes-devtools/guile/guile_2.0.9.bb index 60318e73cf..b35d54e7d2 100644 --- a/meta/recipes-devtools/guile/guile_2.0.9.bb +++ b/meta/recipes-devtools/guile/guile_2.0.9.bb | |||
@@ -29,7 +29,7 @@ SRC_URI[md5sum] = "a69b575d4a633bdd9118f3a4a1e97766" | |||
29 | SRC_URI[sha256sum] = "f70a38c8d9751f442679bfe61852bba8545af4d4355d037630997c2f37f2895b" | 29 | SRC_URI[sha256sum] = "f70a38c8d9751f442679bfe61852bba8545af4d4355d037630997c2f37f2895b" |
30 | 30 | ||
31 | 31 | ||
32 | inherit autotools gettext | 32 | inherit autotools gettext texinfo |
33 | BBCLASSEXTEND = "native" | 33 | BBCLASSEXTEND = "native" |
34 | 34 | ||
35 | DEPENDS = "libunistring bdwgc gmp libtool libffi" | 35 | DEPENDS = "libunistring bdwgc gmp libtool libffi" |
diff --git a/meta/recipes-devtools/libtool/libtool-2.4.2.inc b/meta/recipes-devtools/libtool/libtool-2.4.2.inc index d26982dc62..9c50d46fe2 100644 --- a/meta/recipes-devtools/libtool/libtool-2.4.2.inc +++ b/meta/recipes-devtools/libtool/libtool-2.4.2.inc | |||
@@ -33,7 +33,7 @@ do_compile_prepend () { | |||
33 | ./config.status | 33 | ./config.status |
34 | } | 34 | } |
35 | 35 | ||
36 | inherit autotools | 36 | inherit autotools texinfo |
37 | EXTRA_AUTORECONF = "--exclude=libtoolize" | 37 | EXTRA_AUTORECONF = "--exclude=libtoolize" |
38 | 38 | ||
39 | DEPENDS = "libtool-native" | 39 | DEPENDS = "libtool-native" |
diff --git a/meta/recipes-devtools/m4/m4.inc b/meta/recipes-devtools/m4/m4.inc index ae101c2b6d..4a83929f0c 100644 --- a/meta/recipes-devtools/m4/m4.inc +++ b/meta/recipes-devtools/m4/m4.inc | |||
@@ -3,7 +3,7 @@ DESCRIPTION = "GNU m4 is an implementation of the traditional Unix macro process | |||
3 | compatible although it has some extensions (for example, handling more than 9 positional parameters to macros). \ | 3 | compatible although it has some extensions (for example, handling more than 9 positional parameters to macros). \ |
4 | GNU M4 also has built-in functions for including files, running shell commands, doing arithmetic, etc." | 4 | GNU M4 also has built-in functions for including files, running shell commands, doing arithmetic, etc." |
5 | 5 | ||
6 | inherit autotools | 6 | inherit autotools texinfo |
7 | 7 | ||
8 | EXTRA_OEMAKE += "'infodir=${infodir}'" | 8 | EXTRA_OEMAKE += "'infodir=${infodir}'" |
9 | LDFLAGS_prepend_libc-uclibc = " -lrt " | 9 | LDFLAGS_prepend_libc-uclibc = " -lrt " |
diff --git a/meta/recipes-devtools/make/make.inc b/meta/recipes-devtools/make/make.inc index 4036345089..57ea605b97 100644 --- a/meta/recipes-devtools/make/make.inc +++ b/meta/recipes-devtools/make/make.inc | |||
@@ -7,4 +7,4 @@ SECTION = "devel" | |||
7 | 7 | ||
8 | SRC_URI = "${GNU_MIRROR}/make/make-${PV}.tar.bz2" | 8 | SRC_URI = "${GNU_MIRROR}/make/make-${PV}.tar.bz2" |
9 | 9 | ||
10 | inherit autotools gettext pkgconfig | 10 | inherit autotools gettext pkgconfig texinfo |
diff --git a/meta/recipes-devtools/mtools/mtools_3.9.9.bb b/meta/recipes-devtools/mtools/mtools_3.9.9.bb index 38f09decd2..d995c8f042 100644 --- a/meta/recipes-devtools/mtools/mtools_3.9.9.bb +++ b/meta/recipes-devtools/mtools/mtools_3.9.9.bb | |||
@@ -38,7 +38,7 @@ SRC_URI[sha256sum] = "af083a73425d664d4607ef6c6564fd9319a0e47ee7c105259a45356cb8 | |||
38 | 38 | ||
39 | S = "${WORKDIR}/mtools-${PV}" | 39 | S = "${WORKDIR}/mtools-${PV}" |
40 | 40 | ||
41 | inherit autotools | 41 | inherit autotools texinfo |
42 | 42 | ||
43 | EXTRA_OECONF = "--without-x" | 43 | EXTRA_OECONF = "--without-x" |
44 | 44 | ||
diff --git a/meta/recipes-devtools/mtools/mtools_4.0.18.bb b/meta/recipes-devtools/mtools/mtools_4.0.18.bb index 0cc7f6c6e2..6c71f0ab1f 100644 --- a/meta/recipes-devtools/mtools/mtools_4.0.18.bb +++ b/meta/recipes-devtools/mtools/mtools_4.0.18.bb | |||
@@ -31,7 +31,7 @@ SRC_URI = "${GNU_MIRROR}/mtools/mtools-${PV}.tar.bz2 \ | |||
31 | file://no-x11.gplv3.patch" | 31 | file://no-x11.gplv3.patch" |
32 | 32 | ||
33 | 33 | ||
34 | inherit autotools | 34 | inherit autotools texinfo |
35 | 35 | ||
36 | EXTRA_OECONF = "--without-x" | 36 | EXTRA_OECONF = "--without-x" |
37 | 37 | ||
diff --git a/meta/recipes-extended/bash/bash.inc b/meta/recipes-extended/bash/bash.inc index 2bb2df9584..2fe0c6b574 100644 --- a/meta/recipes-extended/bash/bash.inc +++ b/meta/recipes-extended/bash/bash.inc | |||
@@ -4,7 +4,7 @@ SECTION = "base/shell" | |||
4 | 4 | ||
5 | DEPENDS = "ncurses bison-native" | 5 | DEPENDS = "ncurses bison-native" |
6 | 6 | ||
7 | inherit autotools-brokensep gettext update-alternatives ptest | 7 | inherit autotools-brokensep gettext texinfo update-alternatives ptest |
8 | 8 | ||
9 | PARALLEL_MAKE = "" | 9 | PARALLEL_MAKE = "" |
10 | 10 | ||
diff --git a/meta/recipes-extended/bc/bc_1.06.bb b/meta/recipes-extended/bc/bc_1.06.bb index 89d8bee667..b116052c7d 100644 --- a/meta/recipes-extended/bc/bc_1.06.bb +++ b/meta/recipes-extended/bc/bc_1.06.bb | |||
@@ -18,7 +18,7 @@ SRC_URI = "${GNU_MIRROR}/bc/bc-${PV}.tar.gz \ | |||
18 | SRC_URI[md5sum] = "d44b5dddebd8a7a7309aea6c36fda117" | 18 | SRC_URI[md5sum] = "d44b5dddebd8a7a7309aea6c36fda117" |
19 | SRC_URI[sha256sum] = "4ef6d9f17c3c0d92d8798e35666175ecd3d8efac4009d6457b5c99cea72c0e33" | 19 | SRC_URI[sha256sum] = "4ef6d9f17c3c0d92d8798e35666175ecd3d8efac4009d6457b5c99cea72c0e33" |
20 | 20 | ||
21 | inherit autotools-brokensep update-alternatives | 21 | inherit autotools-brokensep texinfo update-alternatives |
22 | 22 | ||
23 | ALTERNATIVE_${PN} = "dc" | 23 | ALTERNATIVE_${PN} = "dc" |
24 | ALTERNATIVE_PRIORITY = "100" | 24 | ALTERNATIVE_PRIORITY = "100" |
diff --git a/meta/recipes-extended/cpio/cpio_v2.inc b/meta/recipes-extended/cpio/cpio_v2.inc index 30446b0ced..93de4bb92b 100644 --- a/meta/recipes-extended/cpio/cpio_v2.inc +++ b/meta/recipes-extended/cpio/cpio_v2.inc | |||
@@ -10,7 +10,7 @@ SRC_URI = "${GNU_MIRROR}/cpio/cpio-${PV}.tar.gz \ | |||
10 | file://statdef.patch \ | 10 | file://statdef.patch \ |
11 | " | 11 | " |
12 | 12 | ||
13 | inherit autotools gettext | 13 | inherit autotools gettext texinfo |
14 | 14 | ||
15 | S = "${WORKDIR}/cpio-${PV}" | 15 | S = "${WORKDIR}/cpio-${PV}" |
16 | 16 | ||
diff --git a/meta/recipes-extended/diffutils/diffutils.inc b/meta/recipes-extended/diffutils/diffutils.inc index 613b538557..243341aa9c 100644 --- a/meta/recipes-extended/diffutils/diffutils.inc +++ b/meta/recipes-extended/diffutils/diffutils.inc | |||
@@ -4,7 +4,7 @@ sdiff, and cmp utilities. These programs are usually \ | |||
4 | used for creating patch files." | 4 | used for creating patch files." |
5 | SECTION = "base" | 5 | SECTION = "base" |
6 | 6 | ||
7 | inherit autotools update-alternatives gettext | 7 | inherit autotools texinfo update-alternatives gettext |
8 | 8 | ||
9 | # diffutils assumes non-glibc compilation with uclibc and | 9 | # diffutils assumes non-glibc compilation with uclibc and |
10 | # this causes it to generate its own implementations of | 10 | # this causes it to generate its own implementations of |
diff --git a/meta/recipes-extended/ed/ed_0.5.bb b/meta/recipes-extended/ed/ed_0.5.bb index a696c0c8fb..a075780e93 100644 --- a/meta/recipes-extended/ed/ed_0.5.bb +++ b/meta/recipes-extended/ed/ed_0.5.bb | |||
@@ -11,7 +11,7 @@ SRC_URI = "http://download.savannah.gnu.org/releases-noredirect/ed/ed-${PV}.tar. | |||
11 | SRC_URI[md5sum] = "4ee21e9dcc9b5b6012c23038734e1632" | 11 | SRC_URI[md5sum] = "4ee21e9dcc9b5b6012c23038734e1632" |
12 | SRC_URI[sha256sum] = "edef2bbde0fbf0d88232782a0eded323f483a0519d6fde9a3b1809056fd35f3e" | 12 | SRC_URI[sha256sum] = "edef2bbde0fbf0d88232782a0eded323f483a0519d6fde9a3b1809056fd35f3e" |
13 | 13 | ||
14 | inherit autotools | 14 | inherit autotools texinfo |
15 | 15 | ||
16 | EXTRA_OECONF = "'CC=${CC}' 'CXX=${CXX}' 'CFLAGS=${CFLAGS}' 'CXXFLAGS=${CXXFLAGS}' 'CPPFLAGS=${CPPFLAGS}' 'LDFLAGS=${LDFLAGS}'" | 16 | EXTRA_OECONF = "'CC=${CC}' 'CXX=${CXX}' 'CFLAGS=${CFLAGS}' 'CXXFLAGS=${CXXFLAGS}' 'CPPFLAGS=${CPPFLAGS}' 'LDFLAGS=${LDFLAGS}'" |
17 | 17 | ||
diff --git a/meta/recipes-extended/ed/ed_1.9.bb b/meta/recipes-extended/ed/ed_1.9.bb index d1621548dc..8e94eedea6 100644 --- a/meta/recipes-extended/ed/ed_1.9.bb +++ b/meta/recipes-extended/ed/ed_1.9.bb | |||
@@ -16,6 +16,8 @@ SRC_URI = "${GNU_MIRROR}/ed/ed-${PV}.tar.gz" | |||
16 | SRC_URI[md5sum] = "565b6d1d5a9a8816b9b304fc4ed9405d" | 16 | SRC_URI[md5sum] = "565b6d1d5a9a8816b9b304fc4ed9405d" |
17 | SRC_URI[sha256sum] = "d5b372cfadf073001823772272fceac2cfa87552c5cd5a8efc1c8aae61f45a88" | 17 | SRC_URI[sha256sum] = "d5b372cfadf073001823772272fceac2cfa87552c5cd5a8efc1c8aae61f45a88" |
18 | 18 | ||
19 | inherit texinfo | ||
20 | |||
19 | do_configure() { | 21 | do_configure() { |
20 | ${S}/configure | 22 | ${S}/configure |
21 | } | 23 | } |
diff --git a/meta/recipes-extended/findutils/findutils.inc b/meta/recipes-extended/findutils/findutils.inc index 4edb127ba5..4f4068a091 100644 --- a/meta/recipes-extended/findutils/findutils.inc +++ b/meta/recipes-extended/findutils/findutils.inc | |||
@@ -9,7 +9,7 @@ SECTION = "console/utils" | |||
9 | 9 | ||
10 | SRC_URI = "${GNU_MIRROR}/findutils/findutils-${PV}.tar.gz" | 10 | SRC_URI = "${GNU_MIRROR}/findutils/findutils-${PV}.tar.gz" |
11 | 11 | ||
12 | inherit autotools gettext update-alternatives | 12 | inherit autotools gettext texinfo update-alternatives |
13 | 13 | ||
14 | ALTERNATIVE_${PN} = "find xargs" | 14 | ALTERNATIVE_${PN} = "find xargs" |
15 | ALTERNATIVE_PRIORITY = "100" | 15 | ALTERNATIVE_PRIORITY = "100" |
diff --git a/meta/recipes-extended/gawk/gawk_3.1.5.bb b/meta/recipes-extended/gawk/gawk_3.1.5.bb index 4d9d6e4c43..48e8939a89 100644 --- a/meta/recipes-extended/gawk/gawk_3.1.5.bb +++ b/meta/recipes-extended/gawk/gawk_3.1.5.bb | |||
@@ -21,7 +21,7 @@ SRC_URI = "${GNU_MIRROR}/gawk/gawk-${PV}.tar.gz \ | |||
21 | SRC_URI[md5sum] = "4760325489479cac17fe0114b8f62f30" | 21 | SRC_URI[md5sum] = "4760325489479cac17fe0114b8f62f30" |
22 | SRC_URI[sha256sum] = "463dcb9d0ca398b1d4f5a332f6cd9cec56441265fca616f2ea1b44d459e9f0f8" | 22 | SRC_URI[sha256sum] = "463dcb9d0ca398b1d4f5a332f6cd9cec56441265fca616f2ea1b44d459e9f0f8" |
23 | 23 | ||
24 | inherit autotools gettext update-alternatives | 24 | inherit autotools gettext texinfo update-alternatives |
25 | 25 | ||
26 | PACKAGES += "gawk-common pgawk" | 26 | PACKAGES += "gawk-common pgawk" |
27 | 27 | ||
diff --git a/meta/recipes-extended/gawk/gawk_4.0.2.bb b/meta/recipes-extended/gawk/gawk_4.0.2.bb index eb86af39da..cb2f9c0468 100644 --- a/meta/recipes-extended/gawk/gawk_4.0.2.bb +++ b/meta/recipes-extended/gawk/gawk_4.0.2.bb | |||
@@ -23,7 +23,7 @@ SRC_URI = "${GNU_MIRROR}/gawk/gawk-${PV}.tar.gz \ | |||
23 | SRC_URI[md5sum] = "4d505dc2c9f1eb3e9f8d6cac87d4bd1a" | 23 | SRC_URI[md5sum] = "4d505dc2c9f1eb3e9f8d6cac87d4bd1a" |
24 | SRC_URI[sha256sum] = "6e0de117c3713aa8d7fa347fc9fd645b10038ae49d8cf947d8c1d51cbb76141a" | 24 | SRC_URI[sha256sum] = "6e0de117c3713aa8d7fa347fc9fd645b10038ae49d8cf947d8c1d51cbb76141a" |
25 | 25 | ||
26 | inherit autotools gettext update-alternatives | 26 | inherit autotools gettext texinfo update-alternatives |
27 | 27 | ||
28 | PACKAGES += "gawk-common pgawk dgawk" | 28 | PACKAGES += "gawk-common pgawk dgawk" |
29 | 29 | ||
diff --git a/meta/recipes-extended/grep/grep_2.18.bb b/meta/recipes-extended/grep/grep_2.18.bb index 5ffeaf0d99..99337f7679 100644 --- a/meta/recipes-extended/grep/grep_2.18.bb +++ b/meta/recipes-extended/grep/grep_2.18.bb | |||
@@ -10,7 +10,7 @@ SRC_URI = "${GNU_MIRROR}/grep/grep-${PV}.tar.xz" | |||
10 | SRC_URI[md5sum] = "7439f8266f50844b56cc3e2721606541" | 10 | SRC_URI[md5sum] = "7439f8266f50844b56cc3e2721606541" |
11 | SRC_URI[sha256sum] = "e6436e5077fa1497feccc8feaabd3f507b172369bf120fbc9e4874bba81be720" | 11 | SRC_URI[sha256sum] = "e6436e5077fa1497feccc8feaabd3f507b172369bf120fbc9e4874bba81be720" |
12 | 12 | ||
13 | inherit autotools gettext | 13 | inherit autotools gettext texinfo |
14 | 14 | ||
15 | EXTRA_OECONF = "--disable-perl-regexp" | 15 | EXTRA_OECONF = "--disable-perl-regexp" |
16 | 16 | ||
diff --git a/meta/recipes-extended/grep/grep_2.5.1a.bb b/meta/recipes-extended/grep/grep_2.5.1a.bb index 088959c9ca..79842baac8 100644 --- a/meta/recipes-extended/grep/grep_2.5.1a.bb +++ b/meta/recipes-extended/grep/grep_2.5.1a.bb | |||
@@ -20,7 +20,7 @@ SRC_URI = "${GNU_MIRROR}/grep/grep-${PV}.tar.bz2 \ | |||
20 | SRC_URI[md5sum] = "52202fe462770fa6be1bb667bd6cf30c" | 20 | SRC_URI[md5sum] = "52202fe462770fa6be1bb667bd6cf30c" |
21 | SRC_URI[sha256sum] = "38c8a2bb9223d1fb1b10bdd607cf44830afc92fd451ac4cd07619bf92bdd3132" | 21 | SRC_URI[sha256sum] = "38c8a2bb9223d1fb1b10bdd607cf44830afc92fd451ac4cd07619bf92bdd3132" |
22 | 22 | ||
23 | inherit autotools gettext | 23 | inherit autotools gettext texinfo |
24 | 24 | ||
25 | EXTRA_OECONF = "--disable-perl-regexp --disable-ncurses" | 25 | EXTRA_OECONF = "--disable-perl-regexp --disable-ncurses" |
26 | 26 | ||
diff --git a/meta/recipes-extended/groff/groff_1.18.1.4.bb b/meta/recipes-extended/groff/groff_1.18.1.4.bb index 28105f8b43..85357c56bf 100644 --- a/meta/recipes-extended/groff/groff_1.18.1.4.bb +++ b/meta/recipes-extended/groff/groff_1.18.1.4.bb | |||
@@ -13,7 +13,7 @@ SRC_URI = "${GNU_MIRROR}/groff/groff-${PV}.tar.gz \ | |||
13 | file://man-local.patch \ | 13 | file://man-local.patch \ |
14 | file://mdoc-local.patch" | 14 | file://mdoc-local.patch" |
15 | 15 | ||
16 | inherit autotools | 16 | inherit autotools texinfo |
17 | 17 | ||
18 | EXTRA_OECONF="--without-x --prefix=${D} --exec-prefix=${D} --bindir=${D}${bindir} --datadir=${D}${datadir} --mandir=${D}${datadir}/man --infodir=${D}${datadir}info --with-appresdir=${D}${datadir}" | 18 | EXTRA_OECONF="--without-x --prefix=${D} --exec-prefix=${D} --bindir=${D}${bindir} --datadir=${D}${datadir} --mandir=${D}${datadir}/man --infodir=${D}${datadir}info --with-appresdir=${D}${datadir}" |
19 | 19 | ||
diff --git a/meta/recipes-extended/groff/groff_1.22.2.bb b/meta/recipes-extended/groff/groff_1.22.2.bb index 9d2a3c75bd..227f9fa621 100644 --- a/meta/recipes-extended/groff/groff_1.22.2.bb +++ b/meta/recipes-extended/groff/groff_1.22.2.bb | |||
@@ -18,7 +18,7 @@ SRC_URI[sha256sum] = "380864dac4772e0c0d7b1282d25d0c5fd7f63baf45c87c4657afed22a1 | |||
18 | DEPENDS = "groff-native" | 18 | DEPENDS = "groff-native" |
19 | DEPENDS_class-native = "" | 19 | DEPENDS_class-native = "" |
20 | 20 | ||
21 | inherit autotools | 21 | inherit autotools texinfo |
22 | 22 | ||
23 | EXTRA_OECONF = "--without-x" | 23 | EXTRA_OECONF = "--without-x" |
24 | PARALLEL_MAKE = "" | 24 | PARALLEL_MAKE = "" |
diff --git a/meta/recipes-extended/gzip/gzip.inc b/meta/recipes-extended/gzip/gzip.inc index 6ec1dae0fd..920b256d43 100644 --- a/meta/recipes-extended/gzip/gzip.inc +++ b/meta/recipes-extended/gzip/gzip.inc | |||
@@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ | |||
10 | 10 | ||
11 | SRC_URI = "${GNU_MIRROR}/gzip/${BP}.tar.gz" | 11 | SRC_URI = "${GNU_MIRROR}/gzip/${BP}.tar.gz" |
12 | 12 | ||
13 | inherit autotools | 13 | inherit autotools texinfo |
14 | 14 | ||
15 | do_install_append () { | 15 | do_install_append () { |
16 | # Rename and move files into /bin (FHS), which is typical place for gzip | 16 | # Rename and move files into /bin (FHS), which is typical place for gzip |
diff --git a/meta/recipes-extended/libidn/libidn_0.6.14.bb b/meta/recipes-extended/libidn/libidn_0.6.14.bb index a13ed27135..ff8d345ccb 100644 --- a/meta/recipes-extended/libidn/libidn_0.6.14.bb +++ b/meta/recipes-extended/libidn/libidn_0.6.14.bb | |||
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a \ | |||
9 | file://src/idn.c;beginline=6;endline=18;md5=56c89e359652a71cda128d75f0ffdac4" | 9 | file://src/idn.c;beginline=6;endline=18;md5=56c89e359652a71cda128d75f0ffdac4" |
10 | PR = "r1" | 10 | PR = "r1" |
11 | 11 | ||
12 | inherit pkgconfig autotools gettext | 12 | inherit pkgconfig autotools gettext texinfo |
13 | 13 | ||
14 | SRC_URI = "http://alpha.gnu.org/gnu/libidn/${BPN}-${PV}.tar.gz" | 14 | SRC_URI = "http://alpha.gnu.org/gnu/libidn/${BPN}-${PV}.tar.gz" |
15 | 15 | ||
diff --git a/meta/recipes-extended/libidn/libidn_1.28.bb b/meta/recipes-extended/libidn/libidn_1.28.bb index effd5ea0bd..bd079c1fe2 100644 --- a/meta/recipes-extended/libidn/libidn_1.28.bb +++ b/meta/recipes-extended/libidn/libidn_1.28.bb | |||
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=3231f57e8fce0f62f81b03107e788888 \ | |||
11 | file://lib/idna.h;endline=21;md5=f73089b7f52dd2cb3540e274bd76106d \ | 11 | file://lib/idna.h;endline=21;md5=f73089b7f52dd2cb3540e274bd76106d \ |
12 | file://src/idn.c;endline=20;md5=d7797e6cc3a7b48e6050fc0d27104595" | 12 | file://src/idn.c;endline=20;md5=d7797e6cc3a7b48e6050fc0d27104595" |
13 | 13 | ||
14 | inherit pkgconfig autotools gettext | 14 | inherit pkgconfig autotools gettext texinfo |
15 | 15 | ||
16 | SRC_URI = "${GNU_MIRROR}/libidn/${BPN}-${PV}.tar.gz \ | 16 | SRC_URI = "${GNU_MIRROR}/libidn/${BPN}-${PV}.tar.gz \ |
17 | file://libidn_fix_for_automake-1.12.patch \ | 17 | file://libidn_fix_for_automake-1.12.patch \ |
diff --git a/meta/recipes-extended/parted/parted_3.1.bb b/meta/recipes-extended/parted/parted_3.1.bb index 8344ea82ce..9057463c7e 100644 --- a/meta/recipes-extended/parted/parted_3.1.bb +++ b/meta/recipes-extended/parted/parted_3.1.bb | |||
@@ -22,7 +22,7 @@ SRC_URI[sha256sum] = "5e9cc1f91eaf016e5033d85b9b893fd6d3ffaca532a48de1082df9b942 | |||
22 | 22 | ||
23 | EXTRA_OECONF = "--disable-device-mapper" | 23 | EXTRA_OECONF = "--disable-device-mapper" |
24 | 24 | ||
25 | inherit autotools pkgconfig gettext ptest | 25 | inherit autotools pkgconfig gettext texinfo ptest |
26 | 26 | ||
27 | BBCLASSEXTEND = "native" | 27 | BBCLASSEXTEND = "native" |
28 | 28 | ||
diff --git a/meta/recipes-extended/screen/screen_4.0.3.bb b/meta/recipes-extended/screen/screen_4.0.3.bb index 6fd02a07cb..5850560fe4 100644 --- a/meta/recipes-extended/screen/screen_4.0.3.bb +++ b/meta/recipes-extended/screen/screen_4.0.3.bb | |||
@@ -30,7 +30,7 @@ SRC_URI[tarball.sha256sum] = "78f0d5b1496084a5902586304d4a73954b2bfe33ea13edceec | |||
30 | SRC_URI[patch.md5sum] = "5960bdae6782ee9356b7e0e0a1fa7c19" | 30 | SRC_URI[patch.md5sum] = "5960bdae6782ee9356b7e0e0a1fa7c19" |
31 | SRC_URI[patch.sha256sum] = "10acb274b2fb0bb7137a0d66e52fa0f18125bc5198c7a8d5af381b4b30636316" | 31 | SRC_URI[patch.sha256sum] = "10acb274b2fb0bb7137a0d66e52fa0f18125bc5198c7a8d5af381b4b30636316" |
32 | 32 | ||
33 | inherit autotools | 33 | inherit autotools texinfo |
34 | 34 | ||
35 | EXTRA_OECONF = "--with-pty-mode=0620 --with-pty-group=5 \ | 35 | EXTRA_OECONF = "--with-pty-mode=0620 --with-pty-group=5 \ |
36 | ${@bb.utils.contains('DISTRO_FEATURES', 'pam', '--enable-pam', '--disable-pam', d)}" | 36 | ${@bb.utils.contains('DISTRO_FEATURES', 'pam', '--enable-pam', '--disable-pam', d)}" |
diff --git a/meta/recipes-extended/sed/sed_4.1.2.bb b/meta/recipes-extended/sed/sed_4.1.2.bb index 5607b0ac62..fe242e16bd 100644 --- a/meta/recipes-extended/sed/sed_4.1.2.bb +++ b/meta/recipes-extended/sed/sed_4.1.2.bb | |||
@@ -14,7 +14,7 @@ SRC_URI = "${GNU_MIRROR}/sed/sed-${PV}.tar.gz \ | |||
14 | SRC_URI[md5sum] = "928f0e06422f414091917401f1a834d0" | 14 | SRC_URI[md5sum] = "928f0e06422f414091917401f1a834d0" |
15 | SRC_URI[sha256sum] = "638e837ba765d5da0a30c98b57c2953cecea96827882f594612acace93ceeeab" | 15 | SRC_URI[sha256sum] = "638e837ba765d5da0a30c98b57c2953cecea96827882f594612acace93ceeeab" |
16 | 16 | ||
17 | inherit autotools update-alternatives gettext | 17 | inherit autotools texinfo update-alternatives gettext |
18 | 18 | ||
19 | do_configure_prepend () { | 19 | do_configure_prepend () { |
20 | cp ${WORKDIR}/Makevars ${S}/po/ | 20 | cp ${WORKDIR}/Makevars ${S}/po/ |
diff --git a/meta/recipes-extended/sed/sed_4.2.2.bb b/meta/recipes-extended/sed/sed_4.2.2.bb index cf8347c2d5..47c8b5b14f 100644 --- a/meta/recipes-extended/sed/sed_4.2.2.bb +++ b/meta/recipes-extended/sed/sed_4.2.2.bb | |||
@@ -10,7 +10,7 @@ SRC_URI = "${GNU_MIRROR}/sed/sed-${PV}.tar.gz" | |||
10 | SRC_URI[md5sum] = "4111de4faa3b9848a0686b2f260c5056" | 10 | SRC_URI[md5sum] = "4111de4faa3b9848a0686b2f260c5056" |
11 | SRC_URI[sha256sum] = "fea0a94d4b605894f3e2d5572e3f96e4413bcad3a085aae7367c2cf07908b2ff" | 11 | SRC_URI[sha256sum] = "fea0a94d4b605894f3e2d5572e3f96e4413bcad3a085aae7367c2cf07908b2ff" |
12 | 12 | ||
13 | inherit autotools update-alternatives gettext | 13 | inherit autotools texinfo update-alternatives gettext |
14 | 14 | ||
15 | EXTRA_OECONF = "--disable-acl" | 15 | EXTRA_OECONF = "--disable-acl" |
16 | 16 | ||
diff --git a/meta/recipes-extended/tar/tar.inc b/meta/recipes-extended/tar/tar.inc index 30a1373fef..51d49340a1 100644 --- a/meta/recipes-extended/tar/tar.inc +++ b/meta/recipes-extended/tar/tar.inc | |||
@@ -6,7 +6,7 @@ SECTION = "base" | |||
6 | 6 | ||
7 | SRC_URI = "${GNU_MIRROR}/tar/tar-${PV}.tar.bz2" | 7 | SRC_URI = "${GNU_MIRROR}/tar/tar-${PV}.tar.bz2" |
8 | 8 | ||
9 | inherit autotools gettext | 9 | inherit autotools gettext texinfo |
10 | 10 | ||
11 | EXTRA_OECONF += "DEFAULT_RMT_DIR=${base_sbindir}" | 11 | EXTRA_OECONF += "DEFAULT_RMT_DIR=${base_sbindir}" |
12 | 12 | ||
diff --git a/meta/recipes-extended/texi2html/texi2html_5.0.bb b/meta/recipes-extended/texi2html/texi2html_5.0.bb index a22b981a5d..d488465751 100644 --- a/meta/recipes-extended/texi2html/texi2html_5.0.bb +++ b/meta/recipes-extended/texi2html/texi2html_5.0.bb | |||
@@ -12,7 +12,7 @@ SRC_URI = "http://download.savannah.gnu.org/releases/texi2html/${BPN}-${PV}. | |||
12 | SRC_URI[md5sum] = "f15ac876fcdc8be865b16535f480aa54" | 12 | SRC_URI[md5sum] = "f15ac876fcdc8be865b16535f480aa54" |
13 | SRC_URI[sha256sum] = "e8a98b0ee20c495a6ab894398a065ef580272dbd5a15b1b19e8bd1bc89d9f9fa" | 13 | SRC_URI[sha256sum] = "e8a98b0ee20c495a6ab894398a065ef580272dbd5a15b1b19e8bd1bc89d9f9fa" |
14 | 14 | ||
15 | inherit autotools gettext | 15 | inherit autotools gettext texinfo |
16 | 16 | ||
17 | do_configure_prepend() { | 17 | do_configure_prepend() { |
18 | # Make a directory for the old gettext setup | 18 | # Make a directory for the old gettext setup |
diff --git a/meta/recipes-extended/time/time.inc b/meta/recipes-extended/time/time.inc index 028da7cd02..85862177b7 100644 --- a/meta/recipes-extended/time/time.inc +++ b/meta/recipes-extended/time/time.inc | |||
@@ -6,7 +6,7 @@ SECTION = "utils" | |||
6 | LICENSE = "GPLv2+" | 6 | LICENSE = "GPLv2+" |
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b" | 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b" |
8 | 8 | ||
9 | inherit update-alternatives | 9 | inherit texinfo update-alternatives |
10 | 10 | ||
11 | ALTERNATIVE_${PN} = "time" | 11 | ALTERNATIVE_${PN} = "time" |
12 | ALTERNATIVE_PRIORITY = "100" | 12 | ALTERNATIVE_PRIORITY = "100" |
diff --git a/meta/recipes-extended/wget/wget.inc b/meta/recipes-extended/wget/wget.inc index 4eeef708c4..a778bca614 100644 --- a/meta/recipes-extended/wget/wget.inc +++ b/meta/recipes-extended/wget/wget.inc | |||
@@ -7,7 +7,7 @@ DEPENDS = "openssl zlib libpcre" | |||
7 | 7 | ||
8 | INC_PR = "r16" | 8 | INC_PR = "r16" |
9 | 9 | ||
10 | inherit autotools gettext update-alternatives | 10 | inherit autotools gettext texinfo update-alternatives |
11 | 11 | ||
12 | EXTRA_OECONF = "--enable-ipv6 --with-libssl-prefix=${STAGING_DIR_HOST} \ | 12 | EXTRA_OECONF = "--enable-ipv6 --with-libssl-prefix=${STAGING_DIR_HOST} \ |
13 | --with-ssl=openssl --disable-rpath --disable-iri \ | 13 | --with-ssl=openssl --disable-rpath --disable-iri \ |
diff --git a/meta/recipes-extended/which/which_2.18.bb b/meta/recipes-extended/which/which_2.18.bb index 4f780100b3..5fa5d9e8eb 100644 --- a/meta/recipes-extended/which/which_2.18.bb +++ b/meta/recipes-extended/which/which_2.18.bb | |||
@@ -19,7 +19,7 @@ SRC_URI[sha256sum] = "9445cd7e02ec0c26a44fd56098464ded064ba5d93dd2e15ec12410ba56 | |||
19 | 19 | ||
20 | DEPENDS = "cwautomacros-native" | 20 | DEPENDS = "cwautomacros-native" |
21 | 21 | ||
22 | inherit autotools update-alternatives | 22 | inherit autotools texinfo update-alternatives |
23 | 23 | ||
24 | do_configure_prepend() { | 24 | do_configure_prepend() { |
25 | OLD="@ACLOCAL_CWFLAGS@" | 25 | OLD="@ACLOCAL_CWFLAGS@" |
diff --git a/meta/recipes-extended/which/which_2.20.bb b/meta/recipes-extended/which/which_2.20.bb index f4e87de76b..f3c6037786 100644 --- a/meta/recipes-extended/which/which_2.20.bb +++ b/meta/recipes-extended/which/which_2.20.bb | |||
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504\ | |||
11 | file://which.c;beginline=1;endline=17;md5=a9963693af2272e7a8df6f231164e7a2" | 11 | file://which.c;beginline=1;endline=17;md5=a9963693af2272e7a8df6f231164e7a2" |
12 | DEPENDS = "cwautomacros-native" | 12 | DEPENDS = "cwautomacros-native" |
13 | 13 | ||
14 | inherit autotools update-alternatives | 14 | inherit autotools texinfo update-alternatives |
15 | 15 | ||
16 | PR = "r3" | 16 | PR = "r3" |
17 | 17 | ||
diff --git a/meta/recipes-gnome/libffi/libffi_3.0.13.bb b/meta/recipes-gnome/libffi/libffi_3.0.13.bb index db0841ed46..9897ca88cc 100644 --- a/meta/recipes-gnome/libffi/libffi_3.0.13.bb +++ b/meta/recipes-gnome/libffi/libffi_3.0.13.bb | |||
@@ -17,7 +17,7 @@ SRC_URI[sha256sum] = "1dddde1400c3bcb7749d398071af88c3e4754058d2d4c0b3696c2f82dc | |||
17 | 17 | ||
18 | EXTRA_OECONF += "--disable-builddir" | 18 | EXTRA_OECONF += "--disable-builddir" |
19 | 19 | ||
20 | inherit autotools | 20 | inherit autotools texinfo |
21 | 21 | ||
22 | FILES_${PN}-dev += "${libdir}/libffi-${PV}" | 22 | FILES_${PN}-dev += "${libdir}/libffi-${PV}" |
23 | 23 | ||
diff --git a/meta/recipes-support/aspell/aspell_0.60.6.1.bb b/meta/recipes-support/aspell/aspell_0.60.6.1.bb index 8ac8809a06..56dabd38eb 100644 --- a/meta/recipes-support/aspell/aspell_0.60.6.1.bb +++ b/meta/recipes-support/aspell/aspell_0.60.6.1.bb | |||
@@ -23,4 +23,4 @@ FILES_libpspell = "${libdir}/libpspell.so.*" | |||
23 | FILES_libpspell-dev = "${libdir}/libpspell* ${bindir}/pspell-config ${includedir}/pspell" | 23 | FILES_libpspell-dev = "${libdir}/libpspell* ${bindir}/pspell-config ${includedir}/pspell" |
24 | 24 | ||
25 | ARM_INSTRUCTION_SET = "arm" | 25 | ARM_INSTRUCTION_SET = "arm" |
26 | inherit autotools-brokensep gettext | 26 | inherit autotools-brokensep gettext texinfo |
diff --git a/meta/recipes-support/gdbm/gdbm_1.11.bb b/meta/recipes-support/gdbm/gdbm_1.11.bb index de32e873cb..3d02594881 100644 --- a/meta/recipes-support/gdbm/gdbm_1.11.bb +++ b/meta/recipes-support/gdbm/gdbm_1.11.bb | |||
@@ -10,7 +10,7 @@ SRC_URI = "${GNU_MIRROR}/gdbm/gdbm-${PV}.tar.gz" | |||
10 | SRC_URI[md5sum] = "72c832680cf0999caedbe5b265c8c1bd" | 10 | SRC_URI[md5sum] = "72c832680cf0999caedbe5b265c8c1bd" |
11 | SRC_URI[sha256sum] = "8d912f44f05d0b15a4a5d96a76f852e905d051bb88022fcdfd98b43be093e3c3" | 11 | SRC_URI[sha256sum] = "8d912f44f05d0b15a4a5d96a76f852e905d051bb88022fcdfd98b43be093e3c3" |
12 | 12 | ||
13 | inherit autotools gettext lib_package | 13 | inherit autotools gettext texinfo lib_package |
14 | 14 | ||
15 | # Needed for dbm python module | 15 | # Needed for dbm python module |
16 | EXTRA_OECONF = "-enable-libgdbm-compat" | 16 | EXTRA_OECONF = "-enable-libgdbm-compat" |
diff --git a/meta/recipes-support/gdbm/gdbm_1.8.3.bb b/meta/recipes-support/gdbm/gdbm_1.8.3.bb index bcf6b99f61..aecf47afb9 100644 --- a/meta/recipes-support/gdbm/gdbm_1.8.3.bb +++ b/meta/recipes-support/gdbm/gdbm_1.8.3.bb | |||
@@ -13,6 +13,6 @@ SRC_URI = "${GNU_MIRROR}/gdbm/gdbm-${PV}.tar.gz \ | |||
13 | SRC_URI[md5sum] = "1d1b1d5c0245b1c00aff92da751e9aa1" | 13 | SRC_URI[md5sum] = "1d1b1d5c0245b1c00aff92da751e9aa1" |
14 | SRC_URI[sha256sum] = "cc340338a2e28b40058ab9eb5354a21d53f88a1582ea21ba0bb185c37a281dc9" | 14 | SRC_URI[sha256sum] = "cc340338a2e28b40058ab9eb5354a21d53f88a1582ea21ba0bb185c37a281dc9" |
15 | 15 | ||
16 | inherit autotools | 16 | inherit autotools texinfo |
17 | 17 | ||
18 | BBCLASSEXTEND = "native nativesdk" | 18 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-support/gmp/gmp.inc b/meta/recipes-support/gmp/gmp.inc index be2983ffc4..d025e07256 100644 --- a/meta/recipes-support/gmp/gmp.inc +++ b/meta/recipes-support/gmp/gmp.inc | |||
@@ -10,7 +10,7 @@ SRC_URI = "ftp://ftp.gmplib.org/pub/gmp-${PV}/gmp-${PV}${REVISION}.tar.bz2 \ | |||
10 | file://configure.patch \ | 10 | file://configure.patch \ |
11 | file://amd64.patch " | 11 | file://amd64.patch " |
12 | 12 | ||
13 | inherit autotools | 13 | inherit autotools texinfo |
14 | 14 | ||
15 | ARM_INSTRUCTION_SET = "arm" | 15 | ARM_INSTRUCTION_SET = "arm" |
16 | 16 | ||
diff --git a/meta/recipes-support/gmp/gmp_4.2.1.bb b/meta/recipes-support/gmp/gmp_4.2.1.bb index 362aacf46c..5c93925daa 100644 --- a/meta/recipes-support/gmp/gmp_4.2.1.bb +++ b/meta/recipes-support/gmp/gmp_4.2.1.bb | |||
@@ -17,4 +17,4 @@ SRC_URI = "${GNU_MIRROR}/gmp/${BP}.tar.bz2 \ | |||
17 | SRC_URI[md5sum] = "091c56e0e1cca6b09b17b69d47ef18e3" | 17 | SRC_URI[md5sum] = "091c56e0e1cca6b09b17b69d47ef18e3" |
18 | SRC_URI[sha256sum] = "d07ffcb37eecec35c5ec72516d10b35fdf6e6fef1fcf1dcd37e30b8cbf8bf941" | 18 | SRC_URI[sha256sum] = "d07ffcb37eecec35c5ec72516d10b35fdf6e6fef1fcf1dcd37e30b8cbf8bf941" |
19 | 19 | ||
20 | inherit autotools | 20 | inherit autotools texinfo |
diff --git a/meta/recipes-support/gnupg/gnupg_1.4.7.bb b/meta/recipes-support/gnupg/gnupg_1.4.7.bb index e8f797d4f4..031eaf3cab 100644 --- a/meta/recipes-support/gnupg/gnupg_1.4.7.bb +++ b/meta/recipes-support/gnupg/gnupg_1.4.7.bb | |||
@@ -22,7 +22,7 @@ SRC_URI = "ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-${PV}.tar.bz2 \ | |||
22 | SRC_URI[md5sum] = "b06a141cca5cd1a55bbdd25ab833303c" | 22 | SRC_URI[md5sum] = "b06a141cca5cd1a55bbdd25ab833303c" |
23 | SRC_URI[sha256sum] = "69d18b7d193f62ca27ed4febcb4c9044aa0c95305d3258fe902e2fae5fc6468d" | 23 | SRC_URI[sha256sum] = "69d18b7d193f62ca27ed4febcb4c9044aa0c95305d3258fe902e2fae5fc6468d" |
24 | 24 | ||
25 | inherit autotools gettext | 25 | inherit autotools gettext texinfo |
26 | 26 | ||
27 | # --with-egd-socket=NAME use NAME for the EGD socket | 27 | # --with-egd-socket=NAME use NAME for the EGD socket |
28 | # --with-photo-viewer=FIXED_VIEWER set a fixed photo ID viewer | 28 | # --with-photo-viewer=FIXED_VIEWER set a fixed photo ID viewer |
diff --git a/meta/recipes-support/gnupg/gnupg_2.0.22.bb b/meta/recipes-support/gnupg/gnupg_2.0.22.bb index 7f36df5bd3..c1ed28c5e6 100644 --- a/meta/recipes-support/gnupg/gnupg_2.0.22.bb +++ b/meta/recipes-support/gnupg/gnupg_2.0.22.bb | |||
@@ -8,7 +8,7 @@ DEPENDS = "${PTH} libassuan libksba zlib bzip2 readline libgcrypt" | |||
8 | PTH = "pth" | 8 | PTH = "pth" |
9 | PTH_libc-uclibc = "npth" | 9 | PTH_libc-uclibc = "npth" |
10 | 10 | ||
11 | inherit autotools gettext | 11 | inherit autotools gettext texinfo |
12 | 12 | ||
13 | SRC_URI = "ftp://ftp.gnupg.org/gcrypt/${BPN}/${BPN}-${PV}.tar.bz2" | 13 | SRC_URI = "ftp://ftp.gnupg.org/gcrypt/${BPN}/${BPN}-${PV}.tar.bz2" |
14 | 14 | ||
diff --git a/meta/recipes-support/gnutls/gnutls.inc b/meta/recipes-support/gnutls/gnutls.inc index 25ec3a6659..206ba4b96e 100644 --- a/meta/recipes-support/gnutls/gnutls.inc +++ b/meta/recipes-support/gnutls/gnutls.inc | |||
@@ -19,7 +19,7 @@ SHRT_VER = "${@d.getVar('PV',1).split('.')[0]}.${@d.getVar('PV',1).split('.')[1] | |||
19 | 19 | ||
20 | SRC_URI = "ftp://ftp.gnutls.org/gcrypt/gnutls/v${SHRT_VER}/gnutls-${PV}.tar.bz2" | 20 | SRC_URI = "ftp://ftp.gnutls.org/gcrypt/gnutls/v${SHRT_VER}/gnutls-${PV}.tar.bz2" |
21 | 21 | ||
22 | inherit autotools-brokensep binconfig pkgconfig gettext lib_package | 22 | inherit autotools-brokensep texinfo binconfig pkgconfig gettext lib_package |
23 | 23 | ||
24 | EXTRA_OECONF="--with-included-opencdk --with-included-libcfg --disable-rpath \ | 24 | EXTRA_OECONF="--with-included-opencdk --with-included-libcfg --disable-rpath \ |
25 | --with-libtasn1-prefix=${STAGING_DIR_HOST}${prefix} \ | 25 | --with-libtasn1-prefix=${STAGING_DIR_HOST}${prefix} \ |
diff --git a/meta/recipes-support/gnutls/libtasn1_3.4.bb b/meta/recipes-support/gnutls/libtasn1_3.4.bb index 590987e504..174eddf11c 100644 --- a/meta/recipes-support/gnutls/libtasn1_3.4.bb +++ b/meta/recipes-support/gnutls/libtasn1_3.4.bb | |||
@@ -16,6 +16,6 @@ SRC_URI = "${GNU_MIRROR}/libtasn1/libtasn1-${PV}.tar.gz \ | |||
16 | SRC_URI[md5sum] = "21ec021c534b0f30b2834ce233c70f15" | 16 | SRC_URI[md5sum] = "21ec021c534b0f30b2834ce233c70f15" |
17 | SRC_URI[sha256sum] = "f353507a458fe2372b791016a056c95946eebfc7256b49013851f134a5e6acc8" | 17 | SRC_URI[sha256sum] = "f353507a458fe2372b791016a056c95946eebfc7256b49013851f134a5e6acc8" |
18 | 18 | ||
19 | inherit autotools binconfig lib_package | 19 | inherit autotools texinfo binconfig lib_package |
20 | 20 | ||
21 | BBCLASSEXTEND = "native" | 21 | BBCLASSEXTEND = "native" |
diff --git a/meta/recipes-support/gpgme/gpgme_1.4.3.bb b/meta/recipes-support/gpgme/gpgme_1.4.3.bb index 78182c01bd..bb53e38e4c 100644 --- a/meta/recipes-support/gpgme/gpgme_1.4.3.bb +++ b/meta/recipes-support/gpgme/gpgme_1.4.3.bb | |||
@@ -19,7 +19,7 @@ DEPENDS = "libgpg-error libassuan" | |||
19 | 19 | ||
20 | EXTRA_OECONF = "--with-gpg=${bindir}/gpg --without-gpgsm" | 20 | EXTRA_OECONF = "--with-gpg=${bindir}/gpg --without-gpgsm" |
21 | 21 | ||
22 | inherit autotools binconfig | 22 | inherit autotools texinfo binconfig |
23 | 23 | ||
24 | PACKAGES =+ "${PN}-pthread" | 24 | PACKAGES =+ "${PN}-pthread" |
25 | FILES_${PN}-pthread = "${libdir}/libgpgme-pthread.so.*" | 25 | FILES_${PN}-pthread = "${libdir}/libgpgme-pthread.so.*" |
diff --git a/meta/recipes-support/libassuan/libassuan_2.1.1.bb b/meta/recipes-support/libassuan/libassuan_2.1.1.bb index 4e6b4f8ad6..60b3f929d5 100644 --- a/meta/recipes-support/libassuan/libassuan_2.1.1.bb +++ b/meta/recipes-support/libassuan/libassuan_2.1.1.bb | |||
@@ -16,4 +16,4 @@ SRC_URI = "ftp://ftp.gnupg.org/gcrypt/libassuan/libassuan-${PV}.tar.bz2 \ | |||
16 | SRC_URI[md5sum] = "757243cc4a71b30ed8d8dbe784035d36" | 16 | SRC_URI[md5sum] = "757243cc4a71b30ed8d8dbe784035d36" |
17 | SRC_URI[sha256sum] = "23e2d67779b88e90d29fe1df6b157109f1c2a647d0f1b2a0f4295bb3c0b2039d" | 17 | SRC_URI[sha256sum] = "23e2d67779b88e90d29fe1df6b157109f1c2a647d0f1b2a0f4295bb3c0b2039d" |
18 | 18 | ||
19 | inherit autotools binconfig pkgconfig | 19 | inherit autotools texinfo binconfig pkgconfig |
diff --git a/meta/recipes-support/libcheck/libcheck_0.9.12.bb b/meta/recipes-support/libcheck/libcheck_0.9.12.bb index 12ef1d455d..2a83031302 100644 --- a/meta/recipes-support/libcheck/libcheck_0.9.12.bb +++ b/meta/recipes-support/libcheck/libcheck_0.9.12.bb | |||
@@ -13,7 +13,7 @@ SRC_URI[sha256sum] = "c7d47e55e133a0ca19a52e08a99333ac55cb22618b53719b7f4117a187 | |||
13 | 13 | ||
14 | S = "${WORKDIR}/check-${PV}" | 14 | S = "${WORKDIR}/check-${PV}" |
15 | 15 | ||
16 | inherit autotools pkgconfig | 16 | inherit autotools pkgconfig texinfo |
17 | 17 | ||
18 | CACHED_CONFIGUREVARS += "ac_cv_path_AWK_PATH=${bindir}/gawk" | 18 | CACHED_CONFIGUREVARS += "ac_cv_path_AWK_PATH=${bindir}/gawk" |
19 | 19 | ||
diff --git a/meta/recipes-support/libgcrypt/libgcrypt.inc b/meta/recipes-support/libgcrypt/libgcrypt.inc index e7fcc62908..724bf3d5a0 100644 --- a/meta/recipes-support/libgcrypt/libgcrypt.inc +++ b/meta/recipes-support/libgcrypt/libgcrypt.inc | |||
@@ -14,7 +14,7 @@ SRC_URI = "ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-${PV}.tar.gz \ | |||
14 | file://add-pkgconfig-support.patch \ | 14 | file://add-pkgconfig-support.patch \ |
15 | file://libgcrypt-fix-building-error-with-O2-in-sysroot-path.patch" | 15 | file://libgcrypt-fix-building-error-with-O2-in-sysroot-path.patch" |
16 | 16 | ||
17 | inherit autotools-brokensep binconfig pkgconfig | 17 | inherit autotools-brokensep texinfo binconfig pkgconfig |
18 | 18 | ||
19 | EXTRA_OECONF = "--disable-asm --with-capabilities" | 19 | EXTRA_OECONF = "--disable-asm --with-capabilities" |
20 | 20 | ||
diff --git a/meta/recipes-support/libksba/libksba_1.3.0.bb b/meta/recipes-support/libksba/libksba_1.3.0.bb index 4690ba953f..7486befd73 100644 --- a/meta/recipes-support/libksba/libksba_1.3.0.bb +++ b/meta/recipes-support/libksba/libksba_1.3.0.bb | |||
@@ -10,7 +10,7 @@ PR = "r1" | |||
10 | 10 | ||
11 | DEPENDS = "libgpg-error" | 11 | DEPENDS = "libgpg-error" |
12 | 12 | ||
13 | inherit autotools binconfig pkgconfig | 13 | inherit autotools binconfig pkgconfig texinfo |
14 | 14 | ||
15 | SRC_URI = "ftp://ftp.gnupg.org/gcrypt/${BPN}/${BPN}-${PV}.tar.bz2 \ | 15 | SRC_URI = "ftp://ftp.gnupg.org/gcrypt/${BPN}/${BPN}-${PV}.tar.bz2 \ |
16 | file://ksba-add-pkgconfig-support.patch" | 16 | file://ksba-add-pkgconfig-support.patch" |
diff --git a/meta/recipes-support/libmpc/libmpc.inc b/meta/recipes-support/libmpc/libmpc.inc index 61b71c6f89..b3742543df 100644 --- a/meta/recipes-support/libmpc/libmpc.inc +++ b/meta/recipes-support/libmpc/libmpc.inc | |||
@@ -4,4 +4,4 @@ HOMEPAGE = "http://www.multiprecision.org/" | |||
4 | LICENSE = "LGPLv3" | 4 | LICENSE = "LGPLv3" |
5 | SECTION = "libs" | 5 | SECTION = "libs" |
6 | 6 | ||
7 | inherit autotools | 7 | inherit autotools texinfo |
diff --git a/meta/recipes-support/libunistring/libunistring_0.9.3.bb b/meta/recipes-support/libunistring/libunistring_0.9.3.bb index faabe0332c..db1651b2a6 100644 --- a/meta/recipes-support/libunistring/libunistring_0.9.3.bb +++ b/meta/recipes-support/libunistring/libunistring_0.9.3.bb | |||
@@ -28,5 +28,5 @@ SRC_URI[sha256sum] = "610d3ec724fbdaa654afe3cff20b9f4d504be3fd296fded2e0f7f76404 | |||
28 | 28 | ||
29 | PR = "r3" | 29 | PR = "r3" |
30 | 30 | ||
31 | inherit autotools | 31 | inherit autotools texinfo |
32 | BBCLASSEXTEND = "native nativesdk" | 32 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-support/mpfr/mpfr.inc b/meta/recipes-support/mpfr/mpfr.inc index ecee7314bf..7f3f9175dc 100644 --- a/meta/recipes-support/mpfr/mpfr.inc +++ b/meta/recipes-support/mpfr/mpfr.inc | |||
@@ -3,4 +3,4 @@ HOMEPAGE = "http://www.mpfr.org/" | |||
3 | LICENSE = "LGPLv3+" | 3 | LICENSE = "LGPLv3+" |
4 | SECTION = "devel" | 4 | SECTION = "devel" |
5 | 5 | ||
6 | inherit autotools | 6 | inherit autotools texinfo |