blob: a650b183fa44556866b8c490f2f0a0d853261d89 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/dot-forward/dot-forward-0.71-r2.ebuild,v 1.13 2014/01/08 06:40:53 vapier Exp $
inherit eutils toolchain-funcs user
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 sh sparc x86"
IUSE=""
# See bug 97850
RESTRICT="test"
DEPEND=""
src_unpack() {
unpack ${P}.tar.gz
cd ${S}
epatch ${FILESDIR}/${PV}-errno.patch
epatch ${FILESDIR}/${PV}-head-1.patch
echo "$(tc-getCC) ${CFLAGS}" > conf-cc
echo "$(tc-getCC)" > conf-ld
}
src_compile() {
emake prog || die
}
src_install() {
dodoc BLURB CHANGES FILES INSTALL README SYSDEPS TARGETS THANKS
dodoc TODO VERSION
doman *.1
insopts -o root -g qmail -m 755
insinto /var/qmail/bin
doins dot-forward || die
}
pkg_setup() {
# keep in sync with mini-qmail pkg
einfo "Creating qmail group"
enewgroup qmail 201
}
|