summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2004-03-20 06:53:06 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2004-03-20 06:53:06 +0000
commit64c000574b4402e4d7d008e1e3518da2ba385abd (patch)
treeee2cadfc0f1612951b6a1eedc98f92f4e07b6a28 /net-analyzer/ethereal
parentBump to 1.0, fix for GTK+ 2.4 (Manifest recommit) (diff)
downloadgentoo-2-64c000574b4402e4d7d008e1e3518da2ba385abd.tar.gz
gentoo-2-64c000574b4402e4d7d008e1e3518da2ba385abd.tar.bz2
gentoo-2-64c000574b4402e4d7d008e1e3518da2ba385abd.zip
thin ebuilds
Diffstat (limited to 'net-analyzer/ethereal')
-rw-r--r--net-analyzer/ethereal/ChangeLog6
-rw-r--r--net-analyzer/ethereal/ethereal-0.10.0a.ebuild85
-rw-r--r--net-analyzer/ethereal/ethereal-0.9.13.ebuild75
-rw-r--r--net-analyzer/ethereal/ethereal-0.9.15.ebuild73
-rw-r--r--net-analyzer/ethereal/files/digest-ethereal-0.10.0a1
-rw-r--r--net-analyzer/ethereal/files/digest-ethereal-0.9.131
-rw-r--r--net-analyzer/ethereal/files/digest-ethereal-0.9.151
7 files changed, 5 insertions, 237 deletions
diff --git a/net-analyzer/ethereal/ChangeLog b/net-analyzer/ethereal/ChangeLog
index 1702c348b56e..7f800f6f46fe 100644
--- a/net-analyzer/ethereal/ChangeLog
+++ b/net-analyzer/ethereal/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-analyzer/ethereal
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ethereal/ChangeLog,v 1.50 2004/02/24 20:58:12 mholzer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ethereal/ChangeLog,v 1.51 2004/03/20 06:53:06 mr_bones_ Exp $
+
+ 19 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org>
+ ethereal-0.10.0a.ebuild, ethereal-0.9.13.ebuild, ethereal-0.9.15.ebuild:
+ thin ebuilds
*ethereal-0.10.2 (24 Feb 2004)
diff --git a/net-analyzer/ethereal/ethereal-0.10.0a.ebuild b/net-analyzer/ethereal/ethereal-0.10.0a.ebuild
deleted file mode 100644
index e5ac23438193..000000000000
--- a/net-analyzer/ethereal/ethereal-0.10.0a.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2004 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ethereal/ethereal-0.10.0a.ebuild,v 1.4 2004/02/19 13:08:39 mholzer Exp $
-
-IUSE="adns gtk ipv6 snmp ssl gtk2"
-
-inherit libtool
-
-DESCRIPTION="A commercial-quality network protocol analyzer"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-RESTRICT="nomirror"
-HOMEPAGE="http://www.ethereal.com/"
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~x86 ~sparc ~ppc ~alpha ~amd64 ~ia64"
-
-replace-flags '-O3' '-O'
-replace-flags '-O2' '-O'
-
-RDEPEND=">=sys-libs/zlib-1.1.4
- snmp? ( virtual/snmp )
- >=dev-util/pkgconfig-0.15.0
- gtk? (
- gtk2? ( >=dev-libs/glib-2.0.4 =x11-libs/gtk+-2* )
- !gtk2? ( =x11-libs/gtk+-1.2* )
- )
- !gtk ( =dev-libs/glib-1.2* )
- ssl? ( >=dev-libs/openssl-0.9.6e )
- >=net-libs/libpcap-0.7.1
- >=dev-libs/libpcre-4.2
- adns? ( net-libs/adns )"
-
-DEPEND="${RDEPEND}
- dev-lang/perl
- sys-devel/bison
- sys-devel/flex"
-
-src_unpack() {
- unpack ${A} && cd ${S} || die
-
- # running a full elibtoolize seems to break things in this
- # package... see bug 41831 (17 Feb 2004 agriffis)
- elibtoolize --patch-only
-}
-
-src_compile() {
- local myconf="
- $(use_with ssl)
- $(use_enable ipv6)
- $(use_with adns)"
-
- if use gtk; then
- myconf="${myconf} $(use_enable gtk2)"
- else
- myconf="${myconf} --disable-ethereal"
- # the asn1 plugin needs gtk
- sed -i -e '/plugins.asn1/d' Makefile.in || die "sed failed"
- sed -i -e '/^SUBDIRS/s/asn1//' plugins/Makefile.in || die "sed failed"
- fi
-
- # if USE=snmp, then one of the snmp libraries will be available,
- # thanks to virtual/snmp. In that case, let Ethereal use
- # whichever it finds.
- if ! use snmp; then
- myconf="${myconf} --without-ucd-snmp --without-net-snmp"
- fi
-
- econf \
- --enable-dftest \
- --enable-randpkt \
- --sysconfdir=/etc/ethereal \
- ${myconf} || die "bad ./configure"
-
- addwrite "/usr/share/snmp/mibs/.index"
- emake || die "compile problem"
-}
-
-src_install() {
- addwrite "/usr/share/snmp/mibs/.index"
- dodir /usr/lib/ethereal/plugins/${PV}
- make DESTDIR=${D} install
- dodoc AUTHORS COPYING ChangeLog INSTALL.* NEWS README* TODO
- insinto "/usr/share/pixmaps/"
- doins "image/hi48-app-ethereal.png"
-}
diff --git a/net-analyzer/ethereal/ethereal-0.9.13.ebuild b/net-analyzer/ethereal/ethereal-0.9.13.ebuild
deleted file mode 100644
index f09dc6dccee4..000000000000
--- a/net-analyzer/ethereal/ethereal-0.9.13.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2004 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ethereal/ethereal-0.9.13.ebuild,v 1.10 2004/01/05 13:05:18 weeve Exp $
-
-IUSE="gtk ipv6 snmp ssl gtk2"
-inherit libtool
-S=${WORKDIR}/${P}
-DESCRIPTION="A commercial-quality network protocol analyzer"
-SRC_URI="http://www.ethereal.com/distribution/${P}.tar.bz2"
-HOMEPAGE="http://www.ethereal.com/"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="x86 sparc ppc ~alpha"
-
-RDEPEND=">=sys-libs/zlib-1.1.4
- snmp? ( virtual/snmp )
- gtk2? ( >=dev-libs/glib-2.0.4 =x11-libs/gtk+-2* ) : ( gtk? ( =x11-libs/gtk+-1.2* =dev-libs/glib-1.2* ) )
- gtk? ( =x11-libs/gtk+-1.2* =dev-libs/glib-1.2* )
- ssl? ( >=dev-libs/openssl-0.9.6e )
- >=net-libs/libpcap-0.7.1"
-
-DEPEND="${RDEPEND}
- dev-lang/perl
- sys-devel/bison
- sys-devel/flex"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- elibtoolize
- # gcc related configure script braindamage
- mv configure configure.broken
- sed "s|-I/usr/local/include||" configure.broken > configure
- chmod +x ./configure
- mv Makefile.am Makefile.am.orig
- sed "s|@PCAP_LIBS@ @SOCKET_LIBS@ @NSL_LIBS@|@PCAP_LIBS@ @SOCKET_LIBS@ @NSL_LIBS@ @ADNS_LIBS@|" \
- Makefile.am.orig > Makefile.am
-}
-
-src_compile() {
- local myconf
-
- if [ -z "`use gtk`" ] && [ -z "`use gtk2`" ]; then
- myconf="${myconf} --disable-ethereal"
- fi
-
- use gtk2 && myconf="${myconf} --enable-gtk2"
- use ssl || myconf="${myconf} --without-ssl"
- use snmp || myconf="${myconf} --without-ucdsnmp"
- use ipv6 && myconf="${myconf} --enable-ipv6"
-
- econf \
- --enable-pcap \
- --enable-zlib \
- --enable-tethereal \
- --enable-editcap \
- --enable-mergecap \
- --enable-text2cap \
- --enable-idl2eth \
- --enable-dftest \
- --enable-randpkt \
- --sysconfdir=/etc/ethereal \
- --with-plugindir=/usr/lib/ethereal/plugins/${PV} \
- ${myconf} || die "bad ./configure"
- addwrite "/usr/share/snmp/mibs/.index"
- emake || die "compile problem"
-}
-
-src_install() {
- addwrite "/usr/share/snmp/mibs/.index"
- dodir /usr/lib/ethereal/plugins/${PV}
- make DESTDIR=${D} install
- dodoc AUTHORS COPYING ChangeLog INSTALL.* NEWS README* TODO
-}
diff --git a/net-analyzer/ethereal/ethereal-0.9.15.ebuild b/net-analyzer/ethereal/ethereal-0.9.15.ebuild
deleted file mode 100644
index f03f92cee2b3..000000000000
--- a/net-analyzer/ethereal/ethereal-0.9.15.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2004 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ethereal/ethereal-0.9.15.ebuild,v 1.4 2004/01/05 13:05:18 weeve Exp $
-
-IUSE="gtk ipv6 snmp ssl gtk2"
-inherit libtool
-S=${WORKDIR}/${P}
-DESCRIPTION="A commercial-quality network protocol analyzer"
-SRC_URI="http://www.ethereal.com/distribution/${P}.tar.bz2"
-HOMEPAGE="http://www.ethereal.com/"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~x86 ~sparc ~ppc ~alpha"
-
-RDEPEND=">=sys-libs/zlib-1.1.4
- snmp? ( virtual/snmp )
- gtk2? ( >=dev-libs/glib-2.0.4 =x11-libs/gtk+-2* )
- !gtk2 ( gtk? ( =x11-libs/gtk+-1.2* =dev-libs/glib-1.2* ) )
- ssl? ( >=dev-libs/openssl-0.9.6e )
- >=net-libs/libpcap-0.7.1"
-
-DEPEND="${RDEPEND}
- dev-lang/perl
- sys-devel/bison
- sys-devel/flex"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- elibtoolize
- # gcc related configure script braindamage
- sed -i "s|-I/usr/local/include||" configure
- chmod +x ./configure
- sed -i "s|@PCAP_LIBS@ @SOCKET_LIBS@ @NSL_LIBS@|@PCAP_LIBS@ @SOCKET_LIBS@ @NSL_LIBS@ @ADNS_LIBS@|" \
- Makefile.am
-}
-
-src_compile() {
- local myconf
-
- if [ -z "`use gtk`" ] && [ -z "`use gtk2`" ]; then
- myconf="${myconf} --disable-ethereal"
- fi
-
- use gtk2 && myconf="${myconf} --enable-gtk2"
- use ssl || myconf="${myconf} --without-ssl"
- use snmp || myconf="${myconf} --without-ucd-snmp"
- use ipv6 && myconf="${myconf} --enable-ipv6"
-
- econf \
- --enable-pcap \
- --enable-zlib \
- --enable-tethereal \
- --enable-editcap \
- --enable-mergecap \
- --enable-text2cap \
- --enable-idl2eth \
- --enable-dftest \
- --enable-randpkt \
- --sysconfdir=/etc/ethereal \
- --with-plugindir=/usr/lib/ethereal/plugins/${PV} \
- ${myconf} || die "bad ./configure"
- addwrite "/usr/share/snmp/mibs/.index"
- emake || die "compile problem"
-}
-
-src_install() {
- addwrite "/usr/share/snmp/mibs/.index"
- dodir /usr/lib/ethereal/plugins/${PV}
- make DESTDIR=${D} install
- dodoc AUTHORS COPYING ChangeLog INSTALL.* NEWS README* TODO
-}
diff --git a/net-analyzer/ethereal/files/digest-ethereal-0.10.0a b/net-analyzer/ethereal/files/digest-ethereal-0.10.0a
deleted file mode 100644
index ad5491475faa..000000000000
--- a/net-analyzer/ethereal/files/digest-ethereal-0.10.0a
+++ /dev/null
@@ -1 +0,0 @@
-MD5 1e31508c5509272595fa237d074461b1 ethereal-0.10.0a.tar.bz2 4388176
diff --git a/net-analyzer/ethereal/files/digest-ethereal-0.9.13 b/net-analyzer/ethereal/files/digest-ethereal-0.9.13
deleted file mode 100644
index 23e5ca54a9ec..000000000000
--- a/net-analyzer/ethereal/files/digest-ethereal-0.9.13
+++ /dev/null
@@ -1 +0,0 @@
-MD5 a533a13d175be1f8c2be188ac8f4c7ea ethereal-0.9.13.tar.bz2 3760571
diff --git a/net-analyzer/ethereal/files/digest-ethereal-0.9.15 b/net-analyzer/ethereal/files/digest-ethereal-0.9.15
deleted file mode 100644
index c4733e75068e..000000000000
--- a/net-analyzer/ethereal/files/digest-ethereal-0.9.15
+++ /dev/null
@@ -1 +0,0 @@
-MD5 4702c6ff619ff6e59d224688a118644c ethereal-0.9.15.tar.bz2 4019718