blob: 14e905553a37c354de5a4cf5641dede1ecab7eca (
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
|
# 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/sniffit/sniffit-0.3.7.ebuild,v 1.3 2002/07/11 06:30:45 drobbins Exp $
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-0.6.2 >=sys-libs/ncurses-5.2"
src_unpack() {
unpack ${MY_P}.tar.gz
cd ${S}
patch < ${DISTDIR}/sniffit_0.3.7.beta-10.diff || die
}
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.FIRST PLUGIN-HOWTO
}
|