diff options
author | Saul Wold <sgw@linux.intel.com> | 2013-08-09 08:36:04 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-16 11:18:07 +0100 |
commit | c46300e08cb483ae2acd6219edc79a614820fb6f (patch) | |
tree | 28d1c32604ed42e5ab20338639f22a039603cdcb /meta/recipes-extended/groff/groff_1.18.1.4.bb | |
parent | 053eca17db1774bfb2333d3c72813327fbd1a019 (diff) | |
download | poky-c46300e08cb483ae2acd6219edc79a614820fb6f.tar.gz |
groff: Add GPLv2 version
Apparrently a LICENSE change was missed, so we add the GPLv2 version back in
(From OE-Core master rev: 002818712fab5c6325b1f7205512945ea87ad76c)
(From OE-Core rev: 4fbb129bdfac7de91b23cefd9431e81a385406b6)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/groff/groff_1.18.1.4.bb')
-rw-r--r-- | meta/recipes-extended/groff/groff_1.18.1.4.bb | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/meta/recipes-extended/groff/groff_1.18.1.4.bb b/meta/recipes-extended/groff/groff_1.18.1.4.bb new file mode 100644 index 0000000000..9838698010 --- /dev/null +++ b/meta/recipes-extended/groff/groff_1.18.1.4.bb | |||
@@ -0,0 +1,45 @@ | |||
1 | SUMMARY = "GNU Troff software" | ||
2 | DESCRIPTION = "The groff (GNU troff) software is a typesetting package which reads plain text mixed with \ | ||
3 | formatting commands and produces formatted output." | ||
4 | SECTION = "console/utils" | ||
5 | HOMEPAGE = "ftp://ftp.gnu.org/gnu/groff/" | ||
6 | LICENSE = "GPLv2" | ||
7 | PR = "r1" | ||
8 | |||
9 | LIC_FILES_CHKSUM = "file://COPYING;md5=e43fc16fccd8519fba405f0a0ff6e8a3" | ||
10 | |||
11 | SRC_URI = "${GNU_MIRROR}/groff/groff-${PV}.tar.gz \ | ||
12 | file://groff-1.18.1.4-remove-mom.patch;striplevel=1 \ | ||
13 | file://man-local.patch \ | ||
14 | file://mdoc-local.patch" | ||
15 | |||
16 | inherit autotools | ||
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}" | ||
19 | |||
20 | SRC_URI[md5sum] = "ceecb81533936d251ed015f40e5f7287" | ||
21 | SRC_URI[sha256sum] = "ff3c7c3b6cae5e8cc5062a144de5eff0022e8e970e1774529cc2d5dde46ce50d" | ||
22 | PARALLEL_MAKE = "" | ||
23 | |||
24 | |||
25 | do_configure (){ | ||
26 | oe_runconf | ||
27 | } | ||
28 | |||
29 | do_install_prepend() { | ||
30 | install -m 0755 -d ${D} | ||
31 | } | ||
32 | |||
33 | |||
34 | do_install_append() { | ||
35 | mkdir -p ${D}${sysconfdir}/groff | ||
36 | cp -rf ${D}${datadir}/groff/site-tmac/* ${D}${sysconfdir}/groff/ | ||
37 | cp -rf ${D}${datadir}/groff/site-tmac/* ${D}${datadir}/groff/${PV}/tmac/ | ||
38 | } | ||
39 | |||
40 | pkg_postinst_${PN}() { | ||
41 | ln -s ${bindir}/tbl ${bindir}/gtbl | ||
42 | echo "export GROFF_FONT_PATH=/usr/share/groff/${PV}/font" >> ${sysconfdir}/profile | ||
43 | echo "export GROFF_TMAC_PATH=/usr/share/groff/${PV}/tmac" >> ${sysconfdir}/profile | ||
44 | } | ||
45 | |||