blob: 404ae9f3cbc8ad67918072a2e1b47486bcce7235 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit autotools eutils toolchain-funcs
MY_P="${P/-/.}.beta"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="Interactive Packet Sniffer"
SRC_URI="http://reptile.rug.ac.be/~coder/${PN}/files/${MY_P}.tar.gz"
HOMEPAGE="http://reptile.rug.ac.be/~coder/sniffit/sniffit.html"
RDEPEND="
net-libs/libpcap
>=sys-libs/ncurses-5.2
"
DEPEND="
${RDEPEND}
virtual/pkgconfig
"
SLOT="0"
LICENSE="BSD"
KEYWORDS="amd64 ppc sparc x86"
src_prepare() {
epatch \
"${FILESDIR}"/${P}-gentoo.patch \
"${FILESDIR}"/${P}-misc.patch \
"${FILESDIR}"/${P}-tinfo.patch
eautoreconf
tc-export CC
}
src_install () {
dosbin sniffit
doman sniffit.5 sniffit.8
dodoc README* PLUGIN-HOWTO BETA* HISTORY
}
|