diff options
author | Kyle Manna <nitro@gentoo.org> | 2002-07-23 22:19:15 +0000 |
---|---|---|
committer | Kyle Manna <nitro@gentoo.org> | 2002-07-23 22:19:15 +0000 |
commit | 6123103a17e1e4e7b1fc8ea812af64517f4c7ead (patch) | |
tree | 6e13012e26d11a1cb6c96fd191ac1b5701de1c5b /net-analyzer | |
parent | ppc KEYWORD (diff) | |
download | historical-6123103a17e1e4e7b1fc8ea812af64517f4c7ead.tar.gz historical-6123103a17e1e4e7b1fc8ea812af64517f4c7ead.tar.bz2 historical-6123103a17e1e4e7b1fc8ea812af64517f4c7ead.zip |
New version, small fixes.
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/net-snmp/ChangeLog | 9 | ||||
-rw-r--r-- | net-analyzer/net-snmp/files/digest-net-snmp-5.0.2a | 1 | ||||
-rw-r--r-- | net-analyzer/net-snmp/net-snmp-5.0.2a.ebuild | 59 |
3 files changed, 68 insertions, 1 deletions
diff --git a/net-analyzer/net-snmp/ChangeLog b/net-analyzer/net-snmp/ChangeLog index 516dc8778394..d915607c1ff8 100644 --- a/net-analyzer/net-snmp/ChangeLog +++ b/net-analyzer/net-snmp/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-analyzer/net-snmp # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.1 2002/06/29 20:42:47 blocke Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.2 2002/07/23 22:19:15 nitro Exp $ + +*net-snmp-5.0.2a (23 Jul 2002) + + 23 Jul 2002; Kyle Manna <nitro@gentoo.org> net-snmp-5.0.2a.ebuild: + + Version bump, dropped emake in favor of make, add the host MIB module, and + commented out ipv6 transports. *net-snmp-5.0.1 (29 Jun 2002) diff --git a/net-analyzer/net-snmp/files/digest-net-snmp-5.0.2a b/net-analyzer/net-snmp/files/digest-net-snmp-5.0.2a new file mode 100644 index 000000000000..f392eb21731a --- /dev/null +++ b/net-analyzer/net-snmp/files/digest-net-snmp-5.0.2a @@ -0,0 +1 @@ +MD5 18f137c812b62955123a03b35a7e2c0f net-snmp-5.0.2a.tar.gz 2201724 diff --git a/net-analyzer/net-snmp/net-snmp-5.0.2a.ebuild b/net-analyzer/net-snmp/net-snmp-5.0.2a.ebuild new file mode 100644 index 000000000000..c16f84cdf97a --- /dev/null +++ b/net-analyzer/net-snmp/net-snmp-5.0.2a.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.0.2a.ebuild,v 1.1 2002/07/23 22:19:15 nitro Exp $ + +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/krb5-1.2.5 )" + +SLOT="0" +LICENSE="as-is" +KEYWORDS="x86" + +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 +} |