diff options
-rw-r--r-- | meta/recipes-extended/texinfo/texinfo_4.13a.bb | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/meta/recipes-extended/texinfo/texinfo_4.13a.bb b/meta/recipes-extended/texinfo/texinfo_4.13a.bb index be10c26a0b..ac89b66b2d 100644 --- a/meta/recipes-extended/texinfo/texinfo_4.13a.bb +++ b/meta/recipes-extended/texinfo/texinfo_4.13a.bb | |||
@@ -1,29 +1,31 @@ | |||
1 | DESCRIPTION = "Texinfo is a documentation system that can produce both online \ | 1 | SUMMARY = "Documentation system for on-line information and printed output" |
2 | information and printed output from a single source file. The GNU \ | 2 | DESCRIPTION = "Texinfo is a documentation system that can produce both \ |
3 | Project uses the Texinfo file format for most of its documentation." | 3 | online information and printed output from a single source file. The \ |
4 | 4 | GNU Project uses the Texinfo file format for most of its documentation." | |
5 | SECTION = "console/utils" | ||
6 | HOMEPAGE = "http://www.gnu.org/software/texinfo/" | 5 | HOMEPAGE = "http://www.gnu.org/software/texinfo/" |
6 | SECTION = "console/utils" | ||
7 | PRIORITY = "required" | 7 | PRIORITY = "required" |
8 | LICENSE = "GPLV3+" | 8 | LICENSE = "GPLv3+" |
9 | PR = "r0" | ||
10 | |||
11 | LIC_FILES_CHKSUM = "file://COPYING;md5=adefda309052235aa5d1e99ce7557010" | 9 | LIC_FILES_CHKSUM = "file://COPYING;md5=adefda309052235aa5d1e99ce7557010" |
10 | PR = "r0" | ||
12 | 11 | ||
13 | DEPENDS = "zlib" | 12 | DEPENDS = "zlib" |
14 | 13 | ||
15 | SRC_URI = "http://ftp.gnu.org/gnu/texinfo/texinfo-${PV}.tar.gz \ | 14 | SRC_URI = "${GNU_MIRROR}/texinfo/texinfo-${PV}.tar.gz \ |
16 | file://texinfo-4.12-zlib.patch;striplevel=1 \ | 15 | file://texinfo-4.12-zlib.patch;striplevel=1 \ |
17 | file://texinfo-4.13a-data_types.patch;striplevel=1 \ | 16 | file://texinfo-4.13a-data_types.patch;striplevel=1 \ |
18 | file://texinfo-4.13a-mosdo-crash.patch;striplevel=1 \ | 17 | file://texinfo-4.13a-mosdo-crash.patch;striplevel=1 \ |
19 | file://texinfo-4.13a-powerpc.patch;striplevel=1 \ | 18 | file://texinfo-4.13a-powerpc.patch;striplevel=1 \ |
20 | file://texinfo-4.13a-help-index-segfault.patch;striplevel=1" | 19 | file://texinfo-4.13a-help-index-segfault.patch;striplevel=1" |
21 | 20 | ||
22 | inherit gettext autotools | 21 | SRC_URI[md5sum] = "71ba711519209b5fb583fed2b3d86fcb" |
22 | SRC_URI[sha256sum] = "1303e91a1c752b69a32666a407e9fbdd6e936def4b09bc7de30f416301530d68" | ||
23 | 23 | ||
24 | S = ${WORKDIR}/texinfo-4.13 | 24 | S = ${WORKDIR}/texinfo-4.13 |
25 | tex_texinfo = "texmf/tex/texinfo" | 25 | tex_texinfo = "texmf/tex/texinfo" |
26 | 26 | ||
27 | inherit gettext autotools | ||
28 | |||
27 | do_configure() { | 29 | do_configure() { |
28 | oe_runconf | 30 | oe_runconf |
29 | } | 31 | } |
@@ -55,3 +57,5 @@ FILES_${PN}-doc = "${datadir}/texinfo ${infodir}/texinfo* \ | |||
55 | ${mandir}/man1/texindex.1* ${mandir}/man1/texi2dvi.1* \ | 57 | ${mandir}/man1/texindex.1* ${mandir}/man1/texi2dvi.1* \ |
56 | ${mandir}/man1/texi2pdf.1* ${mandir}/man1/pdftexi2dvi.1*" | 58 | ${mandir}/man1/texi2pdf.1* ${mandir}/man1/pdftexi2dvi.1*" |
57 | FILES_${PN}-dbg = "${bindir}/.debug/texindex ${bindir}/.debug/makeinfo" | 59 | FILES_${PN}-dbg = "${bindir}/.debug/texindex ${bindir}/.debug/makeinfo" |
60 | |||
61 | BBCLASSEXTEND = "native" | ||