summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-09-15 13:35:56 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-09-15 13:35:56 +0000
commit0a7801f47cc520e8994f9c6871841e4c6cd93172 (patch)
tree33160970700a536cd714583f923412df6521c47f /net-analyzer/ethereal
parentkoffice-1.2, masked for a little while (diff)
downloadgentoo-2-0a7801f47cc520e8994f9c6871841e4c6cd93172.tar.gz
gentoo-2-0a7801f47cc520e8994f9c6871841e4c6cd93172.tar.bz2
gentoo-2-0a7801f47cc520e8994f9c6871841e4c6cd93172.zip
sandbox violation fix
Diffstat (limited to 'net-analyzer/ethereal')
-rw-r--r--net-analyzer/ethereal/ChangeLog7
-rw-r--r--net-analyzer/ethereal/ethereal-0.9.6.ebuild16
2 files changed, 12 insertions, 11 deletions
diff --git a/net-analyzer/ethereal/ChangeLog b/net-analyzer/ethereal/ChangeLog
index ef25ac3a7fb7..f81adc51fee6 100644
--- a/net-analyzer/ethereal/ChangeLog
+++ b/net-analyzer/ethereal/ChangeLog
@@ -1,9 +1,14 @@
# ChangeLog for net-analyzer/ethereal
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ethereal/ChangeLog,v 1.11 2002/08/31 15:38:46 blocke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ethereal/ChangeLog,v 1.12 2002/09/15 13:35:56 seemant Exp $
*ethereal-0.9.6 (30 Aug 2002)
+ 15 Sep 2002; Seemant Kulleen <seemant@gentoo.org> ethereal-0.9.6.ebuild :
+
+ Sandbox violation when "snmp" in USE fixed. Closes bug #7953 by:
+ gentoo@kirpatrick.com (Kurt Lieber)
+
31 Aug 2002; Bruce A. Locke <blocke@shivan.org> ethereal-0.9.6.ebuild:
Gcc 3.X configure script fix
diff --git a/net-analyzer/ethereal/ethereal-0.9.6.ebuild b/net-analyzer/ethereal/ethereal-0.9.6.ebuild
index 21502ac6e291..8d6cc20681a1 100644
--- a/net-analyzer/ethereal/ethereal-0.9.6.ebuild
+++ b/net-analyzer/ethereal/ethereal-0.9.6.ebuild
@@ -1,6 +1,6 @@
# 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/ethereal/ethereal-0.9.6.ebuild,v 1.2 2002/08/31 15:38:46 blocke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ethereal/ethereal-0.9.6.ebuild,v 1.3 2002/09/15 13:35:56 seemant Exp $
S=${WORKDIR}/${P}
DESCRIPTION="A commercial-quality network protocol analyzer"
@@ -11,8 +11,7 @@ SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
-RDEPEND="virtual/glibc
- >=sys-libs/zlib-1.1.4
+RDEPEND=">=sys-libs/zlib-1.1.4
=dev-libs/glib-1.2*
snmp? ( >=net-analyzer/ucd-snmp-4.2.5 )
X? ( virtual/x11 =x11-libs/gtk+-1.2* )
@@ -43,8 +42,7 @@ src_compile() {
use snmp || myconf="${myconf} --without-ucdsnmp"
use ipv6 && myconf="${myconf} --enable-ipv6"
- ./configure \
- --prefix=/usr \
+ econf \
--enable-pcap \
--enable-zlib \
--enable-tethereal \
@@ -54,10 +52,9 @@ src_compile() {
--enable-idl2eth \
--enable-dftest \
--enable-randpkt \
- --mandir=/usr/share/man \
--sysconfdir=/etc/ethereal \
--with-plugindir=/usr/lib/ethereal/plugins/${PV} \
- --host=${CHOST} ${myconf} || die "bad ./configure"
+ ${myconf} || die "bad ./configure"
#this was an old hack for gcc-3 compatibility
#--includedir="" \
@@ -68,9 +65,8 @@ src_compile() {
src_install() {
dodir /usr/lib/ethereal/plugins/${PV}
- make install \
- prefix=${D}/usr \
- mandir=${D}/usr/share/man \
+ einstall \
+ datadir=${D}/usr/share \
sysconfdir=${D}/etc/ethereal \
plugindir=${D}/usr/lib/ethereal/plugins/${PV} || die