diff options
author | Jingdong Lu <jingdong.lu@windriver.com> | 2010-09-25 15:04:47 +0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-12-10 23:13:00 +0000 |
commit | 56c897d8d0a31aba4c887eacdd3dbe1ee2d368a1 (patch) | |
tree | 7ad9952f3d82ab50fbf35bd93fac929d256147a4 /meta/recipes-extended/texinfo/texinfo_4.13a.bb | |
parent | 47a1f50d17e217d8d9dd5d1074449369defbea65 (diff) | |
download | poky-56c897d8d0a31aba4c887eacdd3dbe1ee2d368a1.tar.gz |
texinfo: Add new package
Texinfo is a documentation system that can produce both online information
and printed output from a single source file.
Signed-off-by: Jingdong Lu <jingdong.lu@windriver.com>
Diffstat (limited to 'meta/recipes-extended/texinfo/texinfo_4.13a.bb')
-rw-r--r-- | meta/recipes-extended/texinfo/texinfo_4.13a.bb | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/meta/recipes-extended/texinfo/texinfo_4.13a.bb b/meta/recipes-extended/texinfo/texinfo_4.13a.bb new file mode 100644 index 0000000000..be10c26a0b --- /dev/null +++ b/meta/recipes-extended/texinfo/texinfo_4.13a.bb | |||
@@ -0,0 +1,57 @@ | |||
1 | DESCRIPTION = "Texinfo is a documentation system that can produce both online \ | ||
2 | information and printed output from a single source file. The GNU \ | ||
3 | Project uses the Texinfo file format for most of its documentation." | ||
4 | |||
5 | SECTION = "console/utils" | ||
6 | HOMEPAGE = "http://www.gnu.org/software/texinfo/" | ||
7 | PRIORITY = "required" | ||
8 | LICENSE = "GPLV3+" | ||
9 | PR = "r0" | ||
10 | |||
11 | LIC_FILES_CHKSUM = "file://COPYING;md5=adefda309052235aa5d1e99ce7557010" | ||
12 | |||
13 | DEPENDS = "zlib" | ||
14 | |||
15 | SRC_URI = "http://ftp.gnu.org/gnu/texinfo/texinfo-${PV}.tar.gz \ | ||
16 | file://texinfo-4.12-zlib.patch;striplevel=1 \ | ||
17 | file://texinfo-4.13a-data_types.patch;striplevel=1 \ | ||
18 | file://texinfo-4.13a-mosdo-crash.patch;striplevel=1 \ | ||
19 | file://texinfo-4.13a-powerpc.patch;striplevel=1 \ | ||
20 | file://texinfo-4.13a-help-index-segfault.patch;striplevel=1" | ||
21 | |||
22 | inherit gettext autotools | ||
23 | |||
24 | S = ${WORKDIR}/texinfo-4.13 | ||
25 | tex_texinfo = "texmf/tex/texinfo" | ||
26 | |||
27 | do_configure() { | ||
28 | oe_runconf | ||
29 | } | ||
30 | |||
31 | do_compile_prepend(){ | ||
32 | if [ -d tools ];then | ||
33 | make -C tools/gnulib/lib | ||
34 | fi | ||
35 | } | ||
36 | |||
37 | do_install_append() { | ||
38 | mkdir -p ${D}${datadir}/${tex_texinfo} | ||
39 | install -p -m644 doc/texinfo.tex doc/txi-??.tex ${D}${datadir}/${tex_texinfo} | ||
40 | } | ||
41 | |||
42 | PACKAGES += "info info-doc info-dbg" | ||
43 | |||
44 | FILES_info = "${bindir}/info ${bindir}/infokey ${bindir}/install-info" | ||
45 | FILES_info-doc = "${infodir}/info.info ${infodir}/dir ${infodir}/info-*.info \ | ||
46 | ${mandir}/man1/info.1* ${mandir}/man5/info.5* \ | ||
47 | ${mandir}/man1/infokey.1* ${mandir}/man1/install-info.1*" | ||
48 | FILES_info-dbg = "${bindir}/.debug/info ${bindir}/.debug/install-info \ | ||
49 | ${bindir}/.debug/infokey" | ||
50 | |||
51 | FILES_${PN} = "${bindir}/makeinfo ${bindir}/texi* ${bindir}/pdftexi2dvi" | ||
52 | FILES_${PN}-doc = "${datadir}/texinfo ${infodir}/texinfo* \ | ||
53 | ${datadir}/${tex_texinfo} \ | ||
54 | ${mandir}/man1/makeinfo.1* ${mandir}/man5/texinfo.5* \ | ||
55 | ${mandir}/man1/texindex.1* ${mandir}/man1/texi2dvi.1* \ | ||
56 | ${mandir}/man1/texi2pdf.1* ${mandir}/man1/pdftexi2dvi.1*" | ||
57 | FILES_${PN}-dbg = "${bindir}/.debug/texindex ${bindir}/.debug/makeinfo" | ||