summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/groff/groff_1.18.1.4.bb
diff options
context:
space:
mode:
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