diff options
author | Roy Li <rongqing.li@windriver.com> | 2014-09-11 10:28:28 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-11-06 16:45:21 +0000 |
commit | 0d9a0711d3eea18512e75d091f703dfb1a9091f0 (patch) | |
tree | 0bc492faca43ecb951724d0e4d71fab72eb212f9 /meta/recipes-extended/texinfo | |
parent | c60fa730075178d9bd2062ac4d1370b09d8fb11e (diff) | |
download | poky-0d9a0711d3eea18512e75d091f703dfb1a9091f0.tar.gz |
texinfo: integrate texinfo 4.8
It is a GPLv2 package
(From OE-Core rev: 8d33c091784675405fbe1c3e7c3a12cc82b800d1)
Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/texinfo')
4 files changed, 157 insertions, 0 deletions
diff --git a/meta/recipes-extended/texinfo/texinfo-4.8/check-locale-h.patch b/meta/recipes-extended/texinfo/texinfo-4.8/check-locale-h.patch new file mode 100644 index 0000000000..4a8cc57a56 --- /dev/null +++ b/meta/recipes-extended/texinfo/texinfo-4.8/check-locale-h.patch | |||
@@ -0,0 +1,28 @@ | |||
1 | fix the macro check | ||
2 | |||
3 | Upstream-status: Pending | ||
4 | |||
5 | configure does not check if locale.h exists, but check setlocale, | ||
6 | if setlocale exist, the locale.h should exist. | ||
7 | |||
8 | Signed-off-by: Roy Li <rongqing.li@windriver.com> | ||
9 | --- | ||
10 | lib/system.h | 2 +- | ||
11 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
12 | |||
13 | diff --git a/lib/system.h b/lib/system.h | ||
14 | index 946eb3c..c70037b 100644 | ||
15 | --- a/lib/system.h | ||
16 | +++ b/lib/system.h | ||
17 | @@ -42,7 +42,7 @@ extern char *substring (const char *, const char *); | ||
18 | #include <ctype.h> | ||
19 | |||
20 | /* All systems nowadays probably have these functions, but ... */ | ||
21 | -#ifdef HAVE_LOCALE_H | ||
22 | +#ifdef HAVE_SETLOCALE | ||
23 | #include <locale.h> | ||
24 | #endif | ||
25 | #ifndef HAVE_SETLOCALE | ||
26 | -- | ||
27 | 1.7.10.4 | ||
28 | |||
diff --git a/meta/recipes-extended/texinfo/texinfo-4.8/do-compile-native-tools.patch b/meta/recipes-extended/texinfo/texinfo-4.8/do-compile-native-tools.patch new file mode 100644 index 0000000000..2cc5fbb1fc --- /dev/null +++ b/meta/recipes-extended/texinfo/texinfo-4.8/do-compile-native-tools.patch | |||
@@ -0,0 +1,49 @@ | |||
1 | From 458e9450cecf703f55536e609365162719585900 Mon Sep 17 00:00:00 2001 | ||
2 | From: "Roy.Li" <rongqing.li@windriver.com> | ||
3 | Date: Wed, 10 Sep 2014 17:03:29 +0800 | ||
4 | Subject: [PATCH] do not compile host tools, since we have native | ||
5 | |||
6 | Upstream-status: Pending | ||
7 | |||
8 | Signed-off-by: Roy.Li <rongqing.li@windriver.com> | ||
9 | --- | ||
10 | configure.ac | 23 +---------------------- | ||
11 | 1 file changed, 1 insertion(+), 22 deletions(-) | ||
12 | |||
13 | diff --git a/configure.ac b/configure.ac | ||
14 | index b46130d..cf58654 100644 | ||
15 | --- a/configure.ac | ||
16 | +++ b/configure.ac | ||
17 | @@ -90,28 +90,7 @@ AC_CANONICAL_BUILD | ||
18 | # $native_tools is also added to SUBDIRS in the main Makefile.am, | ||
19 | # so that make compiles the native tools first. | ||
20 | # | ||
21 | -if test "$cross_compiling" = no; then | ||
22 | - native_tools= | ||
23 | -else | ||
24 | - native_tools=tools | ||
25 | - test -d "$native_tools" || mkdir "$native_tools" | ||
26 | - confdir=`(cd "$srcdir";pwd)` | ||
27 | - # Make sure the secondary configure won't fail with | ||
28 | - # "error: source directory already configured". | ||
29 | - rm -f config.status | ||
30 | - AC_MSG_NOTICE([[Doing configure of native tools (${build}).]]) | ||
31 | - cd "$native_tools" || exit 1 | ||
32 | - # Run secondary configure in alternate environment or | ||
33 | - # it gets the wrong CC etc. env -i gives this build host configure | ||
34 | - # a clean environment. | ||
35 | - env -i CC="${BUILD_CC}" AR="${BUILD_AR}" RANLIB="${BUILD_RANLIB}" \ | ||
36 | - PATH="${PATH}" \ | ||
37 | - tools_only=1 \ | ||
38 | - ${confdir}/configure --build=${build} --host=${build} \ | ||
39 | - --disable-rpath --disable-nls | ||
40 | - cd .. || exit 1 | ||
41 | - AC_MSG_NOTICE([[Continuing with main configure (${host}).]]) | ||
42 | -fi | ||
43 | +native_tools= | ||
44 | AC_SUBST(native_tools) | ||
45 | AM_CONDITIONAL(TOOLS_ONLY, [[test "x$tools_only" = x1]]) | ||
46 | |||
47 | -- | ||
48 | 1.9.1 | ||
49 | |||
diff --git a/meta/recipes-extended/texinfo/texinfo-4.8/using-native-makeinfo.patch b/meta/recipes-extended/texinfo/texinfo-4.8/using-native-makeinfo.patch new file mode 100644 index 0000000000..d9bed6933d --- /dev/null +++ b/meta/recipes-extended/texinfo/texinfo-4.8/using-native-makeinfo.patch | |||
@@ -0,0 +1,24 @@ | |||
1 | From 9b0df7d6d3c18cfac82c291d60a5357d1bc8d9d0 Mon Sep 17 00:00:00 2001 | ||
2 | From: "Roy.Li" <rongqing.li@windriver.com> | ||
3 | Date: Wed, 10 Sep 2014 17:10:03 +0800 | ||
4 | Subject: [PATCH] using native makeinfo | ||
5 | |||
6 | Upstream-status: Pending | ||
7 | |||
8 | Signed-off-by: Roy.Li <rongqing.li@windriver.com> | ||
9 | --- | ||
10 | doc/Makefile.am | 2 +- | ||
11 | |||
12 | diff --git a/doc/Makefile.am b/doc/Makefile.am | ||
13 | index 63df818..b6ceb34 100644 | ||
14 | --- a/doc/Makefile.am | ||
15 | +++ b/doc/Makefile.am | ||
16 | @@ -19,7 +19,7 @@ man_MANS = info.1 infokey.1 install-info.1 makeinfo.1 texindex.1 texi2dvi.1 \ | ||
17 | |||
18 | # Use the programs built in our distribution, taking account of possible | ||
19 | # cross-compiling. | ||
20 | -MAKEINFO = $(top_builddir)/$(native_tools)/makeinfo/makeinfo | ||
21 | +MAKEINFO = makeinfo | ||
22 | INSTALL_INFO = $(top_builddir)/$(native_tools)/util/install-info | ||
23 | |||
24 | TXI_XLATE = txi-cs.tex txi-de.tex txi-en.tex txi-es.tex txi-fr.tex \ | ||
diff --git a/meta/recipes-extended/texinfo/texinfo_4.8.bb b/meta/recipes-extended/texinfo/texinfo_4.8.bb new file mode 100644 index 0000000000..6b36b97603 --- /dev/null +++ b/meta/recipes-extended/texinfo/texinfo_4.8.bb | |||
@@ -0,0 +1,56 @@ | |||
1 | SUMMARY = "Documentation system for on-line information and printed output" | ||
2 | DESCRIPTION = "Texinfo is a documentation system that can produce both \ | ||
3 | online information and printed output from a single source file. The \ | ||
4 | GNU Project uses the Texinfo file format for most of its documentation." | ||
5 | HOMEPAGE = "http://www.gnu.org/software/texinfo/" | ||
6 | SECTION = "console/utils" | ||
7 | LICENSE = "GPLv2" | ||
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | ||
9 | |||
10 | PROVIDES_append_class-native = " texinfo-4.8-replacement-native" | ||
11 | |||
12 | DEPENDS = "zlib ncurses texinfo-4.8-replacement-native" | ||
13 | DEPENDS_class-native = "zlib-native ncurses-native" | ||
14 | |||
15 | TARGET_PATCH = "file://use_host_makedoc.patch \ | ||
16 | file://using-native-makeinfo.patch \ | ||
17 | " | ||
18 | TARGET_PATCH_class-native = "" | ||
19 | |||
20 | SRC_URI = "${GNU_MIRROR}/texinfo/${BP}.tar.gz \ | ||
21 | file://check-locale-h.patch \ | ||
22 | file://do-compile-native-tools.patch \ | ||
23 | ${TARGET_PATCH} \ | ||
24 | " | ||
25 | |||
26 | SRC_URI[md5sum] = "4e9a1a591ed236003d0d4b008bf07eef" | ||
27 | SRC_URI[sha256sum] = "1f3cdeebe65fdf510f55d765ab1031b54416aa5bc2635b6a54ef9bcb2367c917" | ||
28 | |||
29 | S = "${WORKDIR}/${BP}" | ||
30 | tex_texinfo = "texmf/tex/texinfo" | ||
31 | |||
32 | inherit gettext autotools | ||
33 | |||
34 | do_install_append() { | ||
35 | mkdir -p ${D}${datadir}/${tex_texinfo} | ||
36 | install -p -m644 ${S}/doc/texinfo.tex ${S}/doc/txi-??.tex ${D}${datadir}/${tex_texinfo} | ||
37 | } | ||
38 | |||
39 | do_install_append_class-native() { | ||
40 | install -m 755 info/makedoc ${D}${bindir} | ||
41 | install -m 755 makeinfo/makeinfo ${D}${bindir} | ||
42 | } | ||
43 | |||
44 | PACKAGES += "info info-doc" | ||
45 | |||
46 | FILES_info = "${bindir}/info ${bindir}/infokey ${bindir}/install-info" | ||
47 | FILES_info-doc = "${infodir}/info.info ${infodir}/dir ${infodir}/info-*.info \ | ||
48 | ${mandir}/man1/info.1* ${mandir}/man5/info.5* \ | ||
49 | ${mandir}/man1/infokey.1* ${mandir}/man1/install-info.1*" | ||
50 | |||
51 | FILES_${PN} = "${bindir}/makeinfo ${bindir}/texi* ${bindir}/pdftexi2dvi ${bindir}/pod2texi ${datadir}/texinfo" | ||
52 | FILES_${PN}-doc = "${infodir}/texinfo* \ | ||
53 | ${datadir}/${tex_texinfo} \ | ||
54 | ${mandir}/man1 ${mandir}/man5" | ||
55 | |||
56 | BBCLASSEXTEND = "native" | ||