blob: c7ce7a680af0685ccda2825d03b60b2c0d6f904f (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/fastforward/fastforward-0.51.ebuild,v 1.6 2002/10/04 06:07:52 vapier Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Fastforward handles qmail forwarding according to a cdb database"
HOMEPAGE="http://cr.yp.to/fastforward.html"
SRC_URI="http://cr.yp.to/software/fastforward-0.51.tar.gz"
DEPEND="sys-apps/groff"
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86 sparc sparc64"
src_unpack() {
cd ${WORKDIR}
unpack ${P}.tar.gz
cd ${S}
echo "gcc ${CFLAGS}" > conf-cc
echo "gcc" > conf-ld
}
src_compile() {
cd ${S}
emake it || die
}
src_install() {
into /usr
dodoc ALIASES BLURB CHANGES FILES INSTALL README SYSDEPS TARGETS
dodoc THANKS TODO VERSION
insopts -o root -g qmail -m 755
insinto /var/qmail/bin
doins fastforward newaliases newinclude printforward printmaillist \
setforward setmaillist
into /usr
for i in *.1
do
doman $i
done
}
|