libdnet: inital import

This commit is contained in:
Thomas Penteker 2009-01-31 00:04:37 +01:00
parent da18366af2
commit 77ff9b65d4
3 changed files with 51 additions and 0 deletions

34
libdnet/.footprint Normal file
View File

@ -0,0 +1,34 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/dnet-config
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/dnet.h
drwxr-xr-x root/root usr/include/dnet/
-rw-r--r-- root/root usr/include/dnet/addr.h
-rw-r--r-- root/root usr/include/dnet/arp.h
-rw-r--r-- root/root usr/include/dnet/blob.h
-rw-r--r-- root/root usr/include/dnet/eth.h
-rw-r--r-- root/root usr/include/dnet/fw.h
-rw-r--r-- root/root usr/include/dnet/icmp.h
-rw-r--r-- root/root usr/include/dnet/intf.h
-rw-r--r-- root/root usr/include/dnet/ip.h
-rw-r--r-- root/root usr/include/dnet/ip6.h
-rw-r--r-- root/root usr/include/dnet/os.h
-rw-r--r-- root/root usr/include/dnet/rand.h
-rw-r--r-- root/root usr/include/dnet/route.h
-rw-r--r-- root/root usr/include/dnet/tcp.h
-rw-r--r-- root/root usr/include/dnet/tun.h
-rw-r--r-- root/root usr/include/dnet/udp.h
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libdnet -> libdnet.1.0.1
lrwxrwxrwx root/root usr/lib/libdnet.1 -> libdnet.1.0.1
-rwxr-xr-x root/root usr/lib/libdnet.1.0.1
-rw-r--r-- root/root usr/lib/libdnet.a
-rwxr-xr-x root/root usr/lib/libdnet.la
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man3/
-rw-r--r-- root/root usr/man/man3/dnet.3.gz
drwxr-xr-x root/root usr/man/man8/
-rw-r--r-- root/root usr/man/man8/dnet.8.gz
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/dnet

1
libdnet/.md5sum Normal file
View File

@ -0,0 +1 @@
04c394ed8e1e7fc455456e79e908916d libdnet-1.11.tar.gz

16
libdnet/Pkgfile Normal file
View File

@ -0,0 +1,16 @@
# Description: daemon and tools to handle all ARP # aspects
# URL: http://arpon.sf.net
# Maintainer: Thomas Penteker, tek at serverop dot de
# Depends on: libpcap, libnet
name=libdnet
version=1.11
release=1
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make install DESTDIR=$PKG
}