diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-09-25 20:28:52 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-09-25 20:28:52 +0000 |
commit | cf9afa59de9cd99a3402f705d821da33a02d38b2 (patch) | |
tree | f03571b90b91d07d9c6d4e3611790424ba254a13 /net-analyzer/ethereal/ethereal-0.9.15.ebuild | |
parent | Version bumped. (diff) | |
download | gentoo-2-cf9afa59de9cd99a3402f705d821da33a02d38b2.tar.gz gentoo-2-cf9afa59de9cd99a3402f705d821da33a02d38b2.tar.bz2 gentoo-2-cf9afa59de9cd99a3402f705d821da33a02d38b2.zip |
Version bumped.
Diffstat (limited to 'net-analyzer/ethereal/ethereal-0.9.15.ebuild')
-rw-r--r-- | net-analyzer/ethereal/ethereal-0.9.15.ebuild | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/net-analyzer/ethereal/ethereal-0.9.15.ebuild b/net-analyzer/ethereal/ethereal-0.9.15.ebuild new file mode 100644 index 000000000000..6a3a4ae00ed3 --- /dev/null +++ b/net-analyzer/ethereal/ethereal-0.9.15.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2003 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.1 2003/09/25 20:28:46 mholzer 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 + 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-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 +} |