diff options
Diffstat (limited to 'net-analyzer/ethereal/ethereal-0.9.5-r1.ebuild')
-rw-r--r-- | net-analyzer/ethereal/ethereal-0.9.5-r1.ebuild | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/net-analyzer/ethereal/ethereal-0.9.5-r1.ebuild b/net-analyzer/ethereal/ethereal-0.9.5-r1.ebuild new file mode 100644 index 000000000000..fea64e5d7da4 --- /dev/null +++ b/net-analyzer/ethereal/ethereal-0.9.5-r1.ebuild @@ -0,0 +1,62 @@ +# 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.5-r1.ebuild,v 1.1 2002/06/29 19:30:01 blocke 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.4 + =dev-libs/glib-1.2* + snmp? ( >=net-analyzer/ucd-snmp-4.2.5 ) + 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.7.1" + +src_compile() { + local myconf + use X || myconf="${myconf} --disable-ethereal" + use ssl || myconf="${myconf} --without-ssl" + use snmp || myconf="${myconf} --without-ucdsnmp" + + ./configure \ + --prefix=/usr \ + --enable-pcap \ + --enable-zlib \ + --enable-ipv6 \ + --enable-tethereal \ + --enable-editcap \ + --enable-mergecap \ + --enable-text2cap \ + --enable-idl2eth \ + --enable-dftest \ + --enable-randpkt \ + --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 +} |