summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Manna <nitro@gentoo.org>2003-05-03 04:15:19 +0000
committerKyle Manna <nitro@gentoo.org>2003-05-03 04:15:19 +0000
commit8c3e624a0c84f7f4057aa64504d9a024b2d92820 (patch)
treee177d25fedc26fe08e3fcb812c4f5360757c94ec /net-analyzer/net-snmp
parentChanged ~sparc keyword to sparc in relation to the mutt related buffer overflow. (diff)
downloadhistorical-8c3e624a0c84f7f4057aa64504d9a024b2d92820.tar.gz
historical-8c3e624a0c84f7f4057aa64504d9a024b2d92820.tar.bz2
historical-8c3e624a0c84f7f4057aa64504d9a024b2d92820.zip
Try this again...
Diffstat (limited to 'net-analyzer/net-snmp')
-rw-r--r--net-analyzer/net-snmp/ChangeLog6
-rw-r--r--net-analyzer/net-snmp/net-snmp-5.0.6.ebuild16
2 files changed, 13 insertions, 9 deletions
diff --git a/net-analyzer/net-snmp/ChangeLog b/net-analyzer/net-snmp/ChangeLog
index ec1c15b0a8fd..7ff80bfcb9a8 100644
--- a/net-analyzer/net-snmp/ChangeLog
+++ b/net-analyzer/net-snmp/ChangeLog
@@ -1,13 +1,13 @@
# ChangeLog for net-analyzer/net-snmp
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.11 2003/04/30 22:55:01 nitro Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.12 2003/05/03 04:15:19 nitro Exp $
06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
*net-snmp-5.0.6 (14 Oct 2002)
- 30 Apr 2003; Kyle Manna <nitro@gentoo.org> net-snmp-5.0.6.ebuild:
- Removed double quotes. Closes #5882.
+ 02 May 2003; Kyle Manna <nitro@gentoo.org> net-snmp-5.0.6.ebuild:
+ Removed double quotes. Closes #5882. Now using sed for kerberos.
21 Apr 2003; Martin Holzer <mholzer@gentoo.org> Manifest,
net-snmp-5.0.6.ebuild, files/net-snmpd.rc6:
diff --git a/net-analyzer/net-snmp/net-snmp-5.0.6.ebuild b/net-analyzer/net-snmp/net-snmp-5.0.6.ebuild
index a71357b060b3..dc0adc60e95d 100644
--- a/net-analyzer/net-snmp/net-snmp-5.0.6.ebuild
+++ b/net-analyzer/net-snmp/net-snmp-5.0.6.ebuild
@@ -1,6 +1,6 @@
# 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.6.ebuild,v 1.7 2003/05/01 20:58:06 nitro Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.0.6.ebuild,v 1.8 2003/05/03 04:15:19 nitro Exp $
IUSE="ssl kerberos ipv6 tcpd"
@@ -11,7 +11,6 @@ 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 )"
@@ -25,6 +24,12 @@ src_unpack() {
cd ${S}
patch -p1 < ${FILESDIR}/${PF}-gentoo.diff
+
+ use kerberos && {
+ cp "${S}/configure" "${S}/configure.tmp"
+ sed 's:security_def_list="usm":security_def_list="usm ksm":' \
+ "${S}/configure.tmp" > "${S}/configure"
+ }
}
src_compile() {
@@ -33,11 +38,10 @@ src_compile() {
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"
+# Doesn't seem that emerge passes the escaped double quotes properly -- nitro
+# use kerberos && myconf="--with-security-modules=usm ksm"
- econf \
+econf \
--with-cflags="${CFLAGS}" \
--host="${CHOST}" \
--with-zlib \