blob: 259cdb7c392457e0a7a847f087ad6e4d446ea2fa (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.0.2a.ebuild,v 1.8 2003/06/06 23:58:22 rphillips Exp $
IUSE="ssl kerberos ipv6 tcpd"
S=${WORKDIR}/${P%[a-z]}
DESCRIPTION="Software for generating and retrieving SNMP data"
SRC_URI="mirror://sourceforge/net-snmp/${P}.tar.gz"
HOMEPAGE="http://net-snmp.sourceforge.net/"
DEPEND="virtual/glibc <sys-libs/db-2
>=sys-libs/zlib-1.1.4
ssl? ( >=dev-libs/openssl-0.9.6 )
tcpd? ( >=sys-apps/tcp-wrappers-7.6 )
ssl? ( >=dev-libs/openssl-0.9.6d )
kerberos? ( >=app-crypt/mit-krb5-1.2.5 )"
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86 ppc sparc "
src_compile() {
local myconf disable_sec_services
use ssl || myconf="${myconf} --enable-internal-md5 --with-openssl=no"
use tcpd && myconf="${myconf} --with-libwrap" || myconf="${myconf} --with-libwrap=no"
use ipv6 && myconf="${myconf} --enable-ipv6" || myconf="${myconf} --disable-ipv6"
# Doesn't seem that emerge passes the escaped double quotes properly -- nitro
#use ipv6 || myconf="${myconf} --with-out-transports=\"TCPIPv6 UDPIPv6\""
use kerberos && myconf="${myconf} --with-security-modules=\"usm ksm\""
econf \
--with-cflags="${CFLAGS}" \
--host="${CHOST}" \
--with-zlib \
--enable-shared \
--with-sys-location="Unknown" \
--with-sys-contact="root@Unknown" \
--with-default-snmp-version="3" \
--with-logfile=/var/log/net-snmpd.log \
--with-persistent-directory=/var/lib/net-snmp \
--with-mib-modules=host \
${myconf} || die "bad ./configure"
# Parallel makes don't work.
make || die "compile problem"
}
src_install () {
einstall exec_prefix=${D}/usr \
persistentdir=${D}/var/lib/net-snmp || die
dodir /var/lib/net-snmp
dodoc AGENT.txt ChangeLog FAQ INSTALL NEWS PORTING README* TODO EXAMPLE.conf.def
exeinto /etc/init.d
newexe ${FILESDIR}/net-snmpd.rc6 net-snmpd
}
|