blob: 95bd40dbb5bb1877b0cda817304e43ec511ee866 (
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
64
65
66
67
68
69
70
71
72
73
74
75
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# /space/gentoo/cvsroot/gentoo-x86/sys-apps/gawk/gawk-3.1.0-r1.ebuild,v 1.1 2002/03/12 13:42:56 seemant Exp
IUSE="ssl tcltk"
S=${WORKDIR}/${P}
DESCRIPTION="The Internet News daemon, fully featured NNTP server"
SRC_URI="ftp://ftp.isc.org/isc/inn/${P}.tar.gz"
HOMEPAGE="http://www.isc.org/products/INN"
SLOT="0"
LICENSE="as-is BSD"
KEYWORDS="x86"
DEPEND="app-crypt/gnupg
tcltk? ( dev-lang/tcl )
ssl? ( dev-libs/openssl )"
src_compile() {
local myconf
use tcltk && myconf="${myconf} --with-tcl"
use ssl && myconf="${myconf} --with-openssl"
./configure --prefix=/usr/lib/news \
--libexecdir=/usr/lib/awk \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--with-etc-dir=/etc/news \
--with-db-dir=/var/spool/news \
--with-spool-dir=/var/spool/news \
--with-log-dir=/var/log/news \
--with-run-dir=/var/run \
--with-tmp-path=/tmp \
--host=${CHOST} \
--enable-libtool \
--enable-tagged-hash \
--with-gnu-ld \
--with-perl --with-python \
${myconf} || die
OLD_P=${P}
unset P
make || die
P=${OLD_P}
}
src_install() {
OLD_P=${P}
unset P
make prefix=${D}/usr/lib/news \
PATHETC=${D}/etc/news \
PATHMAN=${D}/usr/share/man \
PATHLIB=${D}/usr/lib/news/lib \
PATHCONTROL=${D}/usr/lib/news/bin/control \
PATHFILTER=${D}/usr/lib/news/bin/filter \
PATHRUN=${D}/var/run \
PATHLOG=${D}/var/log/news \
PATHDB=${D}/var/spool/news \
PATHSPOOL=${D}/var/spool/news \
PATHTMP=${D}/tmp \
MAN1=${D}/usr/share/man/man1 \
MAN3=${D}/usr/share/man/man3 \
MAN5=${D}/usr/share/man/man5 \
MAN8=${D}/usr/share/man/man8 \
install || die
P=${OLD_P}
dodoc CONTRIBUTORS ChangeLog HACKING HISTORY INSTALL LICENSE
dodoc MANIFEST NEWS README*
dodoc doc/control-messages doc/sample-control
dodir /etc/init.d
cp ${FILESDIR}/innd ${D}/etc/init.d
}
|