blob: f8d78a7823d2b4f66a2f202d77cd07bef92eaaca (
plain) (
blame)
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="A suite of tools compiling mdoc from the OpenBSD project"
HOMEPAGE="http://mdocml.bsd.lv/"
SRC_URI="http://mdocml.bsd.lv/snapshots/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
KEYWORDS="amd64 x86"
RESTRICT="mirror"
IUSE="+cron static"
RDEPEND="static? ( sys-libs/zlib[static-libs(+)] )
!sys-apps/man-db !sys-apps/man"
DEPEND="static? ( sys-libs/zlib )"
src_configure() {
cp "${FILESDIR}/configure.local" . || die
# Add Gentoo CFLAGS
echo 'CFLAGS="$CFLAGS' ${CFLAGS}\" >> configure.local
if use static; then
echo 'LDFLAGS="$LDFLAGS -static"' >> configure.local
fi
default
}
src_install() {
default
if use cron; then
exeinto /etc/cron.daily
newexe "${FILESDIR}"/mandoc.cron mandoc
fi
}
pkg_postinst() {
elog "In order to enable mandoc's apropos and man -k functionality,"
elog "the appropriate mandoc.db files need to be created. This can be"
elog "achieved by running makewhatis as root (sudo will not work)."
elog
elog "If the cron use-flag is enabled, a cron.daily entry that calls"
elog "makewhatis will be installed."
}
|