blob: e167fe691c8adaaa7c53eb14cffcf7817e0f3836 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sniffit/sniffit-0.3.7-r1.ebuild,v 1.7 2006/02/15 23:54:33 jokey Exp $
inherit eutils
MY_P="${P/-/.}.beta"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="Interactive Packet Sniffer"
SRC_URI="http://reptile.rug.ac.be/~coder/sniffit/files/${MY_P}.tar.gz
http://www.clan-tva.com/m0rpheus/sniffit_0.3.7.beta-10.diff"
HOMEPAGE="http://reptile.rug.ac.be/~coder/sniffit/sniffit.html"
DEPEND="net-libs/libpcap
>=sys-libs/ncurses-5.2"
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86 ppc sparc ~amd64"
IUSE=""
src_unpack() {
unpack ${MY_P}.tar.gz
cd ${S}
epatch ${DISTDIR}/sniffit_0.3.7.beta-10.diff
# Fix issues with gcc-3.3 (bug #25328)
epatch ${FILESDIR}/${P}-gcc33.patch
}
src_compile() {
econf || die
emake OBJ_FLAG="-w -c ${CFLAGS}" \
EXE_FLAG="-w ${CFLAGS} -o sniffit" || die
}
src_install () {
dobin sniffit
doman sniffit.5 sniffit.8
dodoc README* PLUGIN-HOWTO BETA* HISTORY LICENSE changelog
}
|