summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/groff/groff_1.18.1.4.bb
diff options
context:
space:
mode:
authorKang Kai <kai.kang@windriver.com>2011-04-27 15:44:45 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-05-04 00:54:34 +0100
commitd2c84ea13d1f019f0effe270dab8e2e8ce8a61d6 (patch)
treeb6de7e96dd4cb7639d37eac7df91027097c8ada9 /meta/recipes-extended/groff/groff_1.18.1.4.bb
parent288638e4f23d90800f95ebaa606aaffca79c3bbc (diff)
downloadpoky-d2c84ea13d1f019f0effe270dab8e2e8ce8a61d6.tar.gz
groff: update to 1.20.1
Update groff to 1.20.1, add SUMMARY and LICENSE info From OE 70bf94cd8669f549ca90581e9592d409b6e24e2e Fixes [Yocto 879] (From OE-Core rev: 6c5cbb73550639ec71cb9564883253dbe1c09f36) Signed-off-by: Kang Kai <kai.kang@windriver.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.bb46
1 files changed, 0 insertions, 46 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
deleted file mode 100644
index cf3adeac84..0000000000
--- a/meta/recipes-extended/groff/groff_1.18.1.4.bb
+++ /dev/null
@@ -1,46 +0,0 @@
1SUMMARY = "GNU Troff software"
2DESCRIPTION = "The groff (GNU troff) software is a typesetting package which reads plain text mixed with \
3formatting commands and produces formatted output."
4SECTION = "console/utils"
5PRIORITY = "required"
6HOMEPAGE = "ftp://ftp.gnu.org/gnu/groff/"
7LICENSE = "GPLv2"
8PR = "r1"
9
10LIC_FILES_CHKSUM = "file://COPYING;md5=e43fc16fccd8519fba405f0a0ff6e8a3"
11
12SRC_URI = "${GNU_MIRROR}/groff/groff-${PV}.tar.gz \
13 file://groff-1.18.1.4-remove-mom.patch;striplevel=1 \
14 file://man-local.patch \
15 file://mdoc-local.patch"
16
17inherit autotools
18
19EXTRA_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}"
20
21SRC_URI[md5sum] = "ceecb81533936d251ed015f40e5f7287"
22SRC_URI[sha256sum] = "ff3c7c3b6cae5e8cc5062a144de5eff0022e8e970e1774529cc2d5dde46ce50d"
23PARALLEL_MAKE = ""
24
25
26do_configure (){
27 oe_runconf
28}
29
30do_install_prepend() {
31 install -m 0755 -d ${D}
32}
33
34
35do_install_append() {
36 mkdir -p ${D}${sysconfdir}/groff
37 cp -rf ${D}${datadir}/groff/site-tmac/* ${D}${sysconfdir}/groff/
38 cp -rf ${D}${datadir}/groff/site-tmac/* ${D}${datadir}/groff/${PV}/tmac/
39}
40
41pkg_postinst_${PN}() {
42 ln -s ${bindir}/tbl ${bindir}/gtbl
43 echo "export GROFF_FONT_PATH=/usr/share/groff/${PV}/font" >> ${sysconfdir}/profile
44 echo "export GROFF_TMAC_PATH=/usr/share/groff/${PV}/tmac" >> ${sysconfdir}/profile
45}
46