blob: 7749798e0210d951591baf36e2030cd22d989c3b (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit eutils fixheadtails qmail
DESCRIPTION="reads sendmail's .forward files under qmail"
HOMEPAGE="http://cr.yp.to/dot-forward.html"
SRC_URI="http://cr.yp.to/software/${P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~alpha amd64 arm hppa ~ia64 m68k ~mips ppc ppc64 s390 sparc x86"
IUSE=""
# See bug 97850
RESTRICT="test"
DEPEND="
acct-group/nofiles
acct-group/qmail
"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}"/${PV}-errno.patch
)
DOCS=(
BLURB
CHANGES
FILES
INSTALL
README
TARGETS
THANKS
TODO
)
src_prepare() {
default
ht_fix_file Makefile
}
src_configure() {
qmail_set_cc
}
src_compile() {
emake prog
}
src_install() {
einstalldocs
doman *.1
insopts -o root -g qmail -m 755
insinto "${QMAIL_HOME}"/bin
doins dot-forward
}
|