summaryrefslogtreecommitdiff
blob: d5025022c0c0cf517dd5670a3d1875338aaa7110 (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
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Geert Bevin <gbevin@theleaf.be>
# $Header: /var/cvsroot/gentoo-x86/net-mail/dot-forward/dot-forward-0.71.ebuild,v 1.1 2001/12/05 02:33:04 gbevin Exp $

S=${WORKDIR}/${P}
DESCRIPTION="Dot-forward reads sendmail's .forward files under qmail."
HOMEPAGE="http://cr.yp.to/dot-forward.html"

SRC_URI="http://cr.yp.to/software/dot-forward-0.71.tar.gz"

DEPEND="virtual/glibc
	sys-apps/groff"

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 BLURB CHANGES FILES INSTALL README SYSDEPS TARGETS THANKS
    dodoc TODO VERSION
 
    insopts -o root -g qmail -m 755
    insinto /var/qmail/bin
    doins dot-forward

    into /usr
    for i in *.1
    do
        doman $i
    done

}