blob: 88b0ef4b0972e38d5f25632fea083e35be5daee6 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/packit/packit-0.6.0c-r1.ebuild,v 1.6 2004/07/11 10:34:11 eldad Exp $
inherit eutils
DESCRIPTION="network auditing tool that allows you to monitor, manipulate, and inject customized IPv4 traffic"
HOMEPAGE="http://www.packetfactory.net/projects/packit/"
SRC_URI="http://www.packetfactory.net/projects/packit/downloads/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=">=net-libs/libnet-1.1.0-r3"
src_unpack() {
unpack ${A}
cd ${S}
has_version '>=net-libs/libpcap-0.8.1' \
&& sed -i 's!^#include <net/bpf.h>$!#include <pcap-bpf.h>!' \
include/packit.h
}
src_compile() {
econf || die "configure failed"
emake || die "configure failed"
}
src_install() {
make install DESTDIR=${D} || die
dodoc INSTALL LICENSE VERSION docs/*
}
|