diff options
author | Bruce A. Locke <blocke@gentoo.org> | 2002-06-29 03:43:50 +0000 |
---|---|---|
committer | Bruce A. Locke <blocke@gentoo.org> | 2002-06-29 03:43:50 +0000 |
commit | 7164943c147460a92e57b0e79b7ce353f14e05cf (patch) | |
tree | 2add46e2eceb88b7a146f92e2cfac381fbbc1d1c /net-analyzer | |
parent | updated license upon authors responce (diff) | |
download | gentoo-2-7164943c147460a92e57b0e79b7ce353f14e05cf.tar.gz gentoo-2-7164943c147460a92e57b0e79b7ce353f14e05cf.tar.bz2 gentoo-2-7164943c147460a92e57b0e79b7ce353f14e05cf.zip |
new version of ethereal... older versions pulled due to security issues
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/ethereal/ChangeLog | 20 | ||||
-rw-r--r-- | net-analyzer/ethereal/ethereal-0.9.3-r1.ebuild | 54 | ||||
-rw-r--r-- | net-analyzer/ethereal/ethereal-0.9.4.ebuild | 61 | ||||
-rw-r--r-- | net-analyzer/ethereal/ethereal-0.9.5.ebuild (renamed from net-analyzer/ethereal/ethereal-0.9.3-r2.ebuild) | 2 | ||||
-rw-r--r-- | net-analyzer/ethereal/files/digest-ethereal-0.9.3-r1 | 1 | ||||
-rw-r--r-- | net-analyzer/ethereal/files/digest-ethereal-0.9.3-r2 | 1 | ||||
-rw-r--r-- | net-analyzer/ethereal/files/digest-ethereal-0.9.4 | 1 | ||||
-rw-r--r-- | net-analyzer/ethereal/files/digest-ethereal-0.9.5 | 1 | ||||
-rw-r--r-- | net-analyzer/ethereal/files/ethereal-0.9.3-gentoo.patch | 25 | ||||
-rw-r--r-- | net-analyzer/ethereal/files/ethereal-0.9.4-gentoo.patch | 25 |
10 files changed, 11 insertions, 180 deletions
diff --git a/net-analyzer/ethereal/ChangeLog b/net-analyzer/ethereal/ChangeLog index 3095b63c4691..4112b80e189b 100644 --- a/net-analyzer/ethereal/ChangeLog +++ b/net-analyzer/ethereal/ChangeLog @@ -1,8 +1,15 @@ # 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.6 2002/06/21 00:34:56 sunflare Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ethereal/ChangeLog,v 1.7 2002/06/29 03:43:50 blocke Exp $ -#ethereal-0.9.4 (20 Jun 2002) +*ethereal-0.9.5 (28 Jun 2002) + + 28 Jun 2002; Bruce A. Locke <blocke@shivan.org> ethereal-0.9.5.ebuild: + + Bumped the version to 0.9.5 and removed older versions. Older versions + had a buffer overflow in various modules and should no longer be used. + +*ethereal-0.9.4 (20 Jun 2002) 20 May 2002; Phil Bordelon <sunflare@gentoo.org> ethereal-0.9.4.ebuild : @@ -32,12 +39,3 @@ Update to the latest version, closing bug 1439 -*ethereal-0.9.0 (1 Feb 2002) - - 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : - - Added initial ChangeLog which should be updated whenever the package is - updated in any way. This changelog is targetted to users. This means that the - comments should well explained and written in clean English. The details about - writing correct changelogs are explained in the skel.ChangeLog file which you - can find in the root directory of the portage repository. diff --git a/net-analyzer/ethereal/ethereal-0.9.3-r1.ebuild b/net-analyzer/ethereal/ethereal-0.9.3-r1.ebuild deleted file mode 100644 index 2ce00b950439..000000000000 --- a/net-analyzer/ethereal/ethereal-0.9.3-r1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# 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.3-r1.ebuild,v 1.2 2002/05/23 06:50:15 seemant Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="A commercial-quality network protocol analyzer" -SRC_URI="http://www.ethereal.com/distribution/${P}.tar.gz" -HOMEPAGE="http://www.ethereal.com/" -LICENSE="GPL-2" -SLOT="0" - -RDEPEND="virtual/glibc - >=sys-libs/zlib-1.1.3 - =dev-libs/glib-1.2* - snmp? ( >=net-analyzer/ucd-snmp-4.1.2 ) - X? ( virtual/x11 =x11-libs/gtk+-1.2* ) - ssl? ( >=dev-libs/openssl-0.9.6b )" - -DEPEND="${RDEPEND} - sys-devel/perl - sys-devel/bison - sys-devel/flex - >=net-libs/libpcap-0.5.2" - -src_compile() { - local myconf - use X || myconf="${myconf} --disable-ethereal" - use ssl || myconf="${myconf} --without-ssl" - use snmp || myconf="${myconf} --disable-snmp" - - ./configure \ - --prefix=/usr \ - --enable-pcap \ - --enable-zlib \ - --enable-ipv6 \ - --mandir=/usr/share/man \ - --sysconfdir=/etc/ethereal \ - --with-plugindir=/usr/lib/ethereal/plugins/${PV} \ - --host=${CHOST} ${myconf} || die "bad ./configure" - - make || die "compile problem" -} - -src_install() { - dodir /usr/lib/ethereal/plugins/${PV} - - make install \ - prefix=${D}/usr \ - mandir=${D}/usr/share/man \ - sysconfdir=${D}/etc/ethereal \ - plugindir=${D}/usr/lib/ethereal/plugins/${PV} || die - - dodoc AUTHORS COPYING ChangeLog INSTALL.* NEWS README* TODO -} diff --git a/net-analyzer/ethereal/ethereal-0.9.4.ebuild b/net-analyzer/ethereal/ethereal-0.9.4.ebuild deleted file mode 100644 index 8fdc3bb6aad2..000000000000 --- a/net-analyzer/ethereal/ethereal-0.9.4.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# /space/gentoo/cvsroot/gentoo-x86/net-analyzer/ethereal/ethereal-0.9.3-r1.ebuild,v 1.2 2002/05/23 06:50:15 seemant Exp - -S=${WORKDIR}/${P} -DESCRIPTION="A commercial-quality network protocol analyzer" -SRC_URI="http://www.ethereal.com/distribution/${P}.tar.gz" -HOMEPAGE="http://www.ethereal.com/" -LICENSE="GPL-2" -SLOT="0" - -RDEPEND="virtual/glibc - >=sys-libs/zlib-1.1.3 - =dev-libs/glib-1.2* - snmp? ( >=net-analyzer/ucd-snmp-4.1.2 ) - X? ( virtual/x11 =x11-libs/gtk+-1.2* ) - ssl? ( >=dev-libs/openssl-0.9.6b )" - -DEPEND="${RDEPEND} - sys-devel/perl - sys-devel/bison - sys-devel/flex - >=net-libs/libpcap-0.5.2" - -src_unpack() { - unpack ${A} - cd ${S} - patch configure < ${FILESDIR}/${P}-gentoo.patch || die -} - -src_compile() { - local myconf - use X || myconf="${myconf} --disable-ethereal" - use ssl || myconf="${myconf} --without-ssl" - use snmp || myconf="${myconf} --disable-snmp" - - ./configure \ - --prefix=/usr \ - --enable-pcap \ - --enable-zlib \ - --enable-ipv6 \ - --includedir="" \ - --mandir=/usr/share/man \ - --sysconfdir=/etc/ethereal \ - --with-plugindir=/usr/lib/ethereal/plugins/${PV} \ - --host=${CHOST} ${myconf} || die "bad ./configure" - - make || die "compile problem" -} - -src_install() { - dodir /usr/lib/ethereal/plugins/${PV} - - make install \ - prefix=${D}/usr \ - mandir=${D}/usr/share/man \ - sysconfdir=${D}/etc/ethereal \ - plugindir=${D}/usr/lib/ethereal/plugins/${PV} || die - - dodoc AUTHORS COPYING ChangeLog INSTALL.* NEWS README* TODO -} diff --git a/net-analyzer/ethereal/ethereal-0.9.3-r2.ebuild b/net-analyzer/ethereal/ethereal-0.9.5.ebuild index 8fdc3bb6aad2..116e09b92b44 100644 --- a/net-analyzer/ethereal/ethereal-0.9.3-r2.ebuild +++ b/net-analyzer/ethereal/ethereal-0.9.5.ebuild @@ -25,7 +25,7 @@ DEPEND="${RDEPEND} src_unpack() { unpack ${A} cd ${S} - patch configure < ${FILESDIR}/${P}-gentoo.patch || die +# patch configure < ${FILESDIR}/${P}-gentoo.patch || die } src_compile() { diff --git a/net-analyzer/ethereal/files/digest-ethereal-0.9.3-r1 b/net-analyzer/ethereal/files/digest-ethereal-0.9.3-r1 deleted file mode 100644 index 35591709ece6..000000000000 --- a/net-analyzer/ethereal/files/digest-ethereal-0.9.3-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 9ecd125c0ef321800fd799edc025d8e9 ethereal-0.9.3.tar.gz 2961451 diff --git a/net-analyzer/ethereal/files/digest-ethereal-0.9.3-r2 b/net-analyzer/ethereal/files/digest-ethereal-0.9.3-r2 deleted file mode 100644 index 35591709ece6..000000000000 --- a/net-analyzer/ethereal/files/digest-ethereal-0.9.3-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 9ecd125c0ef321800fd799edc025d8e9 ethereal-0.9.3.tar.gz 2961451 diff --git a/net-analyzer/ethereal/files/digest-ethereal-0.9.4 b/net-analyzer/ethereal/files/digest-ethereal-0.9.4 deleted file mode 100644 index aacde0ec7056..000000000000 --- a/net-analyzer/ethereal/files/digest-ethereal-0.9.4 +++ /dev/null @@ -1 +0,0 @@ -MD5 42e999daa659820ee93aaaa39ea1e9ea ethereal-0.9.4.tar.gz 3278908 diff --git a/net-analyzer/ethereal/files/digest-ethereal-0.9.5 b/net-analyzer/ethereal/files/digest-ethereal-0.9.5 new file mode 100644 index 000000000000..08d48ba93256 --- /dev/null +++ b/net-analyzer/ethereal/files/digest-ethereal-0.9.5 @@ -0,0 +1 @@ +MD5 a7a02706c0f22e56a45bd8999dbb35e3 ethereal-0.9.5.tar.gz 3384282 diff --git a/net-analyzer/ethereal/files/ethereal-0.9.3-gentoo.patch b/net-analyzer/ethereal/files/ethereal-0.9.3-gentoo.patch deleted file mode 100644 index 4ebc35e44902..000000000000 --- a/net-analyzer/ethereal/files/ethereal-0.9.3-gentoo.patch +++ /dev/null @@ -1,25 +0,0 @@ ---- configure Tue May 28 21:37:39 2002 -+++ configure.new Tue May 28 21:39:23 2002 -@@ -3352,14 +3352,14 @@ - echo $ac_n "checking for extraneous pcap header directories""... $ac_c" 1>&6 - echo "configure:3354: checking for extraneous pcap header directories" >&5 - found_pcap_dir="" -- for pcap_dir in /usr/include/pcap /usr/local/include/pcap $prefix/include -- do -- if test -d $pcap_dir ; then -- CFLAGS="$CFLAGS -I$pcap_dir" -- CPPFLAGS="$CPPFLAGS -I$pcap_dir" -- found_pcap_dir=" $found_pcap_dir -I$pcap_dir" -- fi -- done -+# for pcap_dir in /usr/include/pcap /usr/local/include/pcap $prefix/include -+# do -+# if test -d $pcap_dir ; then -+# CFLAGS="$CFLAGS -I$pcap_dir" -+# CPPFLAGS="$CPPFLAGS -I$pcap_dir" -+# found_pcap_dir=" $found_pcap_dir -I$pcap_dir" -+# fi -+# done - - if test "$found_pcap_dir" != "" ; then - echo "$ac_t""found --$found_pcap_dir added to CFLAGS" 1>&6 diff --git a/net-analyzer/ethereal/files/ethereal-0.9.4-gentoo.patch b/net-analyzer/ethereal/files/ethereal-0.9.4-gentoo.patch deleted file mode 100644 index 4ebc35e44902..000000000000 --- a/net-analyzer/ethereal/files/ethereal-0.9.4-gentoo.patch +++ /dev/null @@ -1,25 +0,0 @@ ---- configure Tue May 28 21:37:39 2002 -+++ configure.new Tue May 28 21:39:23 2002 -@@ -3352,14 +3352,14 @@ - echo $ac_n "checking for extraneous pcap header directories""... $ac_c" 1>&6 - echo "configure:3354: checking for extraneous pcap header directories" >&5 - found_pcap_dir="" -- for pcap_dir in /usr/include/pcap /usr/local/include/pcap $prefix/include -- do -- if test -d $pcap_dir ; then -- CFLAGS="$CFLAGS -I$pcap_dir" -- CPPFLAGS="$CPPFLAGS -I$pcap_dir" -- found_pcap_dir=" $found_pcap_dir -I$pcap_dir" -- fi -- done -+# for pcap_dir in /usr/include/pcap /usr/local/include/pcap $prefix/include -+# do -+# if test -d $pcap_dir ; then -+# CFLAGS="$CFLAGS -I$pcap_dir" -+# CPPFLAGS="$CPPFLAGS -I$pcap_dir" -+# found_pcap_dir=" $found_pcap_dir -I$pcap_dir" -+# fi -+# done - - if test "$found_pcap_dir" != "" ; then - echo "$ac_t""found --$found_pcap_dir added to CFLAGS" 1>&6 |