blob: 282f0374fc28d3fa7476278440449c7f80464f93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
# 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.14.ebuild,v 1.6 2004/06/09 17:47:22 agriffis Exp $
inherit libtool
DESCRIPTION="A commercial-quality network protocol analyzer"
SRC_URI="http://www.ethereal.com/distribution/${P}.tar.bz2"
HOMEPAGE="http://www.ethereal.com/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~sparc ~ppc alpha"
IUSE="gtk ipv6 snmp ssl gtk2"
RDEPEND=">=sys-libs/zlib-1.1.4
snmp? ( virtual/snmp )
gtk? (
gtk2? (
>=dev-libs/glib-2.0.4
=x11-libs/gtk+-2*
)
!gtk2? (
=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}
>=sys-apps/sed-4
dev-lang/perl
sys-devel/bison
sys-devel/flex"
src_unpack() {
unpack ${A}
cd ${S}
elibtoolize
# gcc related configure script braindamage
sed -i \
-e "s|-I/usr/local/include||" configure \
|| die "sed configure failed"
chmod +x ./configure
sed -i \
-e "s|@PCAP_LIBS@ @SOCKET_LIBS@ @NSL_LIBS@|@PCAP_LIBS@ @SOCKET_LIBS@ @NSL_LIBS@ @ADNS_LIBS@|" \
Makefile.am \
|| die "sed Makefile.am failed"
}
src_compile() {
local myconf
if ! use gtk && ! 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 || die "make install failed"
dodoc AUTHORS ChangeLog INSTALL.* NEWS README* TODO
}
|