summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/man/man_1.6f.bb
blob: 3a36a5bc35f25d24aa49b5d57d1bbe742b5c990e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
SUMMARY = "Online documentation tools"
DESCRIPTION = "A set of documentation tools: man, apropos and whatis"
SECTION = "console/utils"
HOMEPAGE = "http://primates.ximian.com/~flucifredi/man"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b"

PR = "r4"

DEPENDS = "groff less"

SRC_URI = "http://primates.ximian.com/~flucifredi/${BPN}/${BPN}-${PV}.tar.gz \
           file://man-1.5k-confpath.patch;striplevel=0 \
           file://man-1.5h1-make.patch; \
           file://man-1.5k-nonascii.patch; \
           file://man-1.6e-security.patch; \
           file://man-1.6e-mandirs.patch; \
           file://man-1.5m2-bug11621.patch; \
           file://man-1.5k-sofix.patch; \
           file://man-1.5m2-buildroot.patch; \
           file://man-1.6e-ro_usr.patch; \
           file://man-1.5i2-newline.patch;striplevel=0 \
           file://man-1.5j-utf8.patch; \
           file://man-1.5i2-overflow.patch; \
           file://man-1.5j-nocache.patch; \
           file://man-1.5i2-initial.patch; \
           file://man-1.5h1-gencat.patch;striplevel=0 \
           file://man-1.5g-nonrootbuild.patch; \
           file://man-1.5m2-tv_fhs.patch;striplevel=0 \
           file://man-1.5j-i18n.patch; \
           file://man-1.6e-whatis2.patch; \
           file://man-1.6e-use_i18n_vars_in_a_std_way.patch; \
           file://man-1.5m2-no-color-for-printing.patch; \
           file://man-1.5m2-sigpipe.patch; \
           file://man-1.6e-i18n_whatis.patch; \
           file://man-1.6e-new_sections.patch; \
           file://man-1.6e-lzma+xz-support.patch; \
           file://man*"

SRC_URI[md5sum] = "67aaaa6df35215e812fd7d89472c44b6"
SRC_URI[sha256sum] = "9f208c7e1981371ad4481d6e6c2c566bc726a15778723f94136d220fb9375f6c"


do_configure () {
        ${S}/configure -default -confdir /etc +sgid +fhs +lang all
}


fakeroot do_install() {
        oe_runmake install DESTDIR=${D}
}

do_install_append(){
	mkdir -p  ${D}/etc/
        mkdir -p ${D}${datadir}/man/man5
        mkdir -p ${D}${datadir}/man/man7
	cp ${WORKDIR}/man.conf ${D}/etc/man.config
        cp ${WORKDIR}/man.1.gz ${D}${datadir}/man/man1/
        cp ${WORKDIR}/man.7.gz ${D}${datadir}/man/man7/
        cp ${WORKDIR}/manpath.5.gz ${D}${datadir}/man/man5/
}


RDEPENDS_${PN} = "less groff"
FILES_${PN} += "${datadir}/locale ${sysconfdir}/man.config"