blob: 7adb70d2abbff103e72fae09d1f7f9d0bf8879c3 (
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
|
# 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.7.ebuild,v 1.4 2004/06/24 22:14:49 agriffis 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"
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>!' \
src/{globals,main}.h
}
src_install() {
make install DESTDIR=${D} || die
dodoc INSTALL LICENSE VERSION docs/*
}
|