summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Manna <nitro@gentoo.org>2003-05-08 02:22:28 +0000
committerKyle Manna <nitro@gentoo.org>2003-05-08 02:22:28 +0000
commit6c83f92804ebc730f86e4975889440d16af9aeba (patch)
tree9fd55c480a4442189f392fc85c03a3802fd9a6e6 /net-analyzer/net-snmp
parentmodify cross-setslot to only set SLOT="${1}"; old tricks actually (diff)
downloadhistorical-6c83f92804ebc730f86e4975889440d16af9aeba.tar.gz
historical-6c83f92804ebc730f86e4975889440d16af9aeba.tar.bz2
historical-6c83f92804ebc730f86e4975889440d16af9aeba.zip
Commented out kerberos support -- generates compile errors
Diffstat (limited to 'net-analyzer/net-snmp')
-rw-r--r--net-analyzer/net-snmp/ChangeLog5
-rw-r--r--net-analyzer/net-snmp/net-snmp-5.0.6.ebuild16
2 files changed, 13 insertions, 8 deletions
diff --git a/net-analyzer/net-snmp/ChangeLog b/net-analyzer/net-snmp/ChangeLog
index 7ff80bfcb9a8..9cc72a2995ca 100644
--- a/net-analyzer/net-snmp/ChangeLog
+++ b/net-analyzer/net-snmp/ChangeLog
@@ -1,11 +1,14 @@
# 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.12 2003/05/03 04:15:19 nitro Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.13 2003/05/08 02:22:26 nitro Exp $
06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
*net-snmp-5.0.6 (14 Oct 2002)
+ 07 May 2003; Kyle Manna <nitro@gentoo.org> net-snmp-5.0.6.ebuild:
+ Commented out kerberos support, generates compile errors.
+
02 May 2003; Kyle Manna <nitro@gentoo.org> net-snmp-5.0.6.ebuild:
Removed double quotes. Closes #5882. Now using sed for kerberos.
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 dc0adc60e95d..568669566faf 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.8 2003/05/03 04:15:19 nitro Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/net-snmp-5.0.6.ebuild,v 1.9 2003/05/08 02:22:28 nitro Exp $
IUSE="ssl kerberos ipv6 tcpd"
@@ -25,11 +25,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"
- }
+# Kerberos support trips with a compile error
+# 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() {
@@ -38,7 +39,8 @@ 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
+
+# Doesn't seem that emerge passes the escaped double quotes properly
# use kerberos && myconf="--with-security-modules=usm ksm"
econf \