blob: 4a1647aed288e0228306230b11d86374fe31b195 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libnet/libnet-1.1.0.ebuild,v 1.3 2002/10/04 06:06:03 vapier Exp $
S=${WORKDIR}/Libnet-latest
DESCRIPTION="library to provide an API for commonly used low-level network
functions (mainly packet injection). Used by packet scrubbers and the like,
not to be confused with the perl libnet"
SRC_URI="http://www.packetfactory.net/libnet/dist/${P}.tar.gz"
HOMEPAGE="http://www.packetfactory.net/libnet/"
DEPEND=""
SLOT="0"
LICENSE="LGPL-2"
KEYWORDS="x86"
src_compile() {
econf || die
emake || die
}
src_install () {
einstall || die
doexe libnet-config
dodoc VERSION README doc/{CHANGELOG,COPYING,DESIGN_NOTES,PACKET_BUILDING}
dodoc doc/{RAWSOCKET_NON_SEQUITUR,TODO,BUGS,CONTRIB,MIGRATION,PORTED,SUPPORTED_PROTOCOLS}
docinto Ancillary
dodoc doc/Ancillary/README*
}
|