blob: 935258a0aba7450b6fea0f579682c534bf67a233 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/dsniff/dsniff-2.4_beta1-r5.ebuild,v 1.1 2010/09/20 11:07:17 jer Exp $
EAPI="2"
inherit autotools eutils flag-o-matic toolchain-funcs
DESCRIPTION="A collection of tools for network auditing and penetration testing"
HOMEPAGE="http://monkey.org/~dugsong/dsniff/"
SRC_URI="http://monkey.org/~dugsong/${PN}/beta/${P/_beta/b}.tar.gz
mirror://debian/pool/main/d/${PN}/${PN}_2.4b1+debian-18.diff.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
IUSE="X"
DEPEND="net-libs/libpcap
>=net-libs/libnet-1.1.2.1-r1
>=net-libs/libnids-1.21
>=dev-libs/openssl-0.9.6e
>=sys-libs/db-4.2.52_p4
X? ( x11-libs/libXmu )"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${P/_beta1/}"
src_prepare() {
# Debian's patchset
epatch "${DISTDIR}"/${PN}_2.4b1+debian-18.diff.gz
epatch dsniff-2.4b1+debian/debian/patches/*.dpatch
# Bug 125084
epatch "${FILESDIR}"/${PV}-httppostfix.patch
# various Makefile.in patches
epatch "${FILESDIR}"/${PV}-make.patch
eautoreconf
}
src_configure() {
econf \
$(use_with X x) \
|| die "econf failed"
}
src_compile() {
emake CC="$(tc-getCC)" || die "emake failed"
}
src_install() {
emake install install_prefix="${D}" || die "emake install failed"
dodir /etc/dsniff
cp "${D}"/usr/share/dsniff/{dnsspoof.hosts,dsniff.{magic,services}} \
"${D}"/etc/dsniff/
dodoc CHANGES README TODO
}
|