summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support
diff options
context:
space:
mode:
authorMax Eliaser <max.eliaser@intel.com>2014-05-01 13:00:28 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-05-02 20:46:59 +0100
commit64df4e4aefe6cc460145c8a25c7afadc56fd4a88 (patch)
tree39b9b91c1d8de7a7aa113da186f701414b830e52 /meta/recipes-support
parent075e2884ce10094258af6f7c6db1af7579b5bffa (diff)
downloadpoky-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/recipes-support')
-rw-r--r--meta/recipes-support/aspell/aspell_0.60.6.1.bb2
-rw-r--r--meta/recipes-support/gdbm/gdbm_1.11.bb2
-rw-r--r--meta/recipes-support/gdbm/gdbm_1.8.3.bb2
-rw-r--r--meta/recipes-support/gmp/gmp.inc2
-rw-r--r--meta/recipes-support/gmp/gmp_4.2.1.bb2
-rw-r--r--meta/recipes-support/gnupg/gnupg_1.4.7.bb2
-rw-r--r--meta/recipes-support/gnupg/gnupg_2.0.22.bb2
-rw-r--r--meta/recipes-support/gnutls/gnutls.inc2
-rw-r--r--meta/recipes-support/gnutls/libtasn1_3.4.bb2
-rw-r--r--meta/recipes-support/gpgme/gpgme_1.4.3.bb2
-rw-r--r--meta/recipes-support/libassuan/libassuan_2.1.1.bb2
-rw-r--r--meta/recipes-support/libcheck/libcheck_0.9.12.bb2
-rw-r--r--meta/recipes-support/libgcrypt/libgcrypt.inc2
-rw-r--r--meta/recipes-support/libksba/libksba_1.3.0.bb2
-rw-r--r--meta/recipes-support/libmpc/libmpc.inc2
-rw-r--r--meta/recipes-support/libunistring/libunistring_0.9.3.bb2
-rw-r--r--meta/recipes-support/mpfr/mpfr.inc2
17 files changed, 17 insertions, 17 deletions
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.*"
23FILES_libpspell-dev = "${libdir}/libpspell* ${bindir}/pspell-config ${includedir}/pspell" 23FILES_libpspell-dev = "${libdir}/libpspell* ${bindir}/pspell-config ${includedir}/pspell"
24 24
25ARM_INSTRUCTION_SET = "arm" 25ARM_INSTRUCTION_SET = "arm"
26inherit autotools-brokensep gettext 26inherit 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"
10SRC_URI[md5sum] = "72c832680cf0999caedbe5b265c8c1bd" 10SRC_URI[md5sum] = "72c832680cf0999caedbe5b265c8c1bd"
11SRC_URI[sha256sum] = "8d912f44f05d0b15a4a5d96a76f852e905d051bb88022fcdfd98b43be093e3c3" 11SRC_URI[sha256sum] = "8d912f44f05d0b15a4a5d96a76f852e905d051bb88022fcdfd98b43be093e3c3"
12 12
13inherit autotools gettext lib_package 13inherit autotools gettext texinfo lib_package
14 14
15# Needed for dbm python module 15# Needed for dbm python module
16EXTRA_OECONF = "-enable-libgdbm-compat" 16EXTRA_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 \
13SRC_URI[md5sum] = "1d1b1d5c0245b1c00aff92da751e9aa1" 13SRC_URI[md5sum] = "1d1b1d5c0245b1c00aff92da751e9aa1"
14SRC_URI[sha256sum] = "cc340338a2e28b40058ab9eb5354a21d53f88a1582ea21ba0bb185c37a281dc9" 14SRC_URI[sha256sum] = "cc340338a2e28b40058ab9eb5354a21d53f88a1582ea21ba0bb185c37a281dc9"
15 15
16inherit autotools 16inherit autotools texinfo
17 17
18BBCLASSEXTEND = "native nativesdk" 18BBCLASSEXTEND = "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
13inherit autotools 13inherit autotools texinfo
14 14
15ARM_INSTRUCTION_SET = "arm" 15ARM_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 \
17SRC_URI[md5sum] = "091c56e0e1cca6b09b17b69d47ef18e3" 17SRC_URI[md5sum] = "091c56e0e1cca6b09b17b69d47ef18e3"
18SRC_URI[sha256sum] = "d07ffcb37eecec35c5ec72516d10b35fdf6e6fef1fcf1dcd37e30b8cbf8bf941" 18SRC_URI[sha256sum] = "d07ffcb37eecec35c5ec72516d10b35fdf6e6fef1fcf1dcd37e30b8cbf8bf941"
19 19
20inherit autotools 20inherit 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 \
22SRC_URI[md5sum] = "b06a141cca5cd1a55bbdd25ab833303c" 22SRC_URI[md5sum] = "b06a141cca5cd1a55bbdd25ab833303c"
23SRC_URI[sha256sum] = "69d18b7d193f62ca27ed4febcb4c9044aa0c95305d3258fe902e2fae5fc6468d" 23SRC_URI[sha256sum] = "69d18b7d193f62ca27ed4febcb4c9044aa0c95305d3258fe902e2fae5fc6468d"
24 24
25inherit autotools gettext 25inherit 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"
8PTH = "pth" 8PTH = "pth"
9PTH_libc-uclibc = "npth" 9PTH_libc-uclibc = "npth"
10 10
11inherit autotools gettext 11inherit autotools gettext texinfo
12 12
13SRC_URI = "ftp://ftp.gnupg.org/gcrypt/${BPN}/${BPN}-${PV}.tar.bz2" 13SRC_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
20SRC_URI = "ftp://ftp.gnutls.org/gcrypt/gnutls/v${SHRT_VER}/gnutls-${PV}.tar.bz2" 20SRC_URI = "ftp://ftp.gnutls.org/gcrypt/gnutls/v${SHRT_VER}/gnutls-${PV}.tar.bz2"
21 21
22inherit autotools-brokensep binconfig pkgconfig gettext lib_package 22inherit autotools-brokensep texinfo binconfig pkgconfig gettext lib_package
23 23
24EXTRA_OECONF="--with-included-opencdk --with-included-libcfg --disable-rpath \ 24EXTRA_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 \
16SRC_URI[md5sum] = "21ec021c534b0f30b2834ce233c70f15" 16SRC_URI[md5sum] = "21ec021c534b0f30b2834ce233c70f15"
17SRC_URI[sha256sum] = "f353507a458fe2372b791016a056c95946eebfc7256b49013851f134a5e6acc8" 17SRC_URI[sha256sum] = "f353507a458fe2372b791016a056c95946eebfc7256b49013851f134a5e6acc8"
18 18
19inherit autotools binconfig lib_package 19inherit autotools texinfo binconfig lib_package
20 20
21BBCLASSEXTEND = "native" 21BBCLASSEXTEND = "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
20EXTRA_OECONF = "--with-gpg=${bindir}/gpg --without-gpgsm" 20EXTRA_OECONF = "--with-gpg=${bindir}/gpg --without-gpgsm"
21 21
22inherit autotools binconfig 22inherit autotools texinfo binconfig
23 23
24PACKAGES =+ "${PN}-pthread" 24PACKAGES =+ "${PN}-pthread"
25FILES_${PN}-pthread = "${libdir}/libgpgme-pthread.so.*" 25FILES_${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 \
16SRC_URI[md5sum] = "757243cc4a71b30ed8d8dbe784035d36" 16SRC_URI[md5sum] = "757243cc4a71b30ed8d8dbe784035d36"
17SRC_URI[sha256sum] = "23e2d67779b88e90d29fe1df6b157109f1c2a647d0f1b2a0f4295bb3c0b2039d" 17SRC_URI[sha256sum] = "23e2d67779b88e90d29fe1df6b157109f1c2a647d0f1b2a0f4295bb3c0b2039d"
18 18
19inherit autotools binconfig pkgconfig 19inherit 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
14S = "${WORKDIR}/check-${PV}" 14S = "${WORKDIR}/check-${PV}"
15 15
16inherit autotools pkgconfig 16inherit autotools pkgconfig texinfo
17 17
18CACHED_CONFIGUREVARS += "ac_cv_path_AWK_PATH=${bindir}/gawk" 18CACHED_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
17inherit autotools-brokensep binconfig pkgconfig 17inherit autotools-brokensep texinfo binconfig pkgconfig
18 18
19EXTRA_OECONF = "--disable-asm --with-capabilities" 19EXTRA_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
11DEPENDS = "libgpg-error" 11DEPENDS = "libgpg-error"
12 12
13inherit autotools binconfig pkgconfig 13inherit autotools binconfig pkgconfig texinfo
14 14
15SRC_URI = "ftp://ftp.gnupg.org/gcrypt/${BPN}/${BPN}-${PV}.tar.bz2 \ 15SRC_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/"
4LICENSE = "LGPLv3" 4LICENSE = "LGPLv3"
5SECTION = "libs" 5SECTION = "libs"
6 6
7inherit autotools 7inherit 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
29PR = "r3" 29PR = "r3"
30 30
31inherit autotools 31inherit autotools texinfo
32BBCLASSEXTEND = "native nativesdk" 32BBCLASSEXTEND = "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/"
3LICENSE = "LGPLv3+" 3LICENSE = "LGPLv3+"
4SECTION = "devel" 4SECTION = "devel"
5 5
6inherit autotools 6inherit autotools texinfo