blob: 410fea6e84acefc0d09e9fc5fc88fedaa0d82ff0 (
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
|
# 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-r2.ebuild,v 1.2 2002/07/18 23:22:43 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/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
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_unpack() {
unpack ${A}
cd ${S}
#This is a new hack for gcc-3.1 compatibility
sed -e "1961,1962d;3358,3359d;3382,3383d" configure \
>configure.hacked
mv configure.hacked configure
chmod +x configure
}
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 \
--mandir=/usr/share/man \
--sysconfdir=/etc/ethereal \
--with-plugindir=/usr/lib/ethereal/plugins/${PV} \
--host=${CHOST} ${myconf} || die "bad ./configure"
#this was an old hack for gcc-3 compatibility
#--includedir="" \
emake || 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
}
|