diff options
author | Johannes Winkelmann <jw@smts.ch> | 2006-02-23 15:26:10 +0000 |
---|---|---|
committer | Johannes Winkelmann <jw@smts.ch> | 2006-02-23 15:26:10 +0000 |
commit | bdea7e6c6a535e57a07d376a3139d0788efaaa41 (patch) | |
tree | 1a7334c99fa39b1ad1a7a35c113b18cb0d92413c /libpcap | |
download | opt-bdea7e6c6a535e57a07d376a3139d0788efaaa41.tar.gz opt-bdea7e6c6a535e57a07d376a3139d0788efaaa41.tar.xz |
create branch for 2.2
Diffstat (limited to 'libpcap')
-rw-r--r-- | libpcap/.footprint | 13 | ||||
-rw-r--r-- | libpcap/.md5sum | 1 | ||||
-rw-r--r-- | libpcap/Pkgfile | 17 |
3 files changed, 31 insertions, 0 deletions
diff --git a/libpcap/.footprint b/libpcap/.footprint new file mode 100644 index 000000000..0ff0252d5 --- /dev/null +++ b/libpcap/.footprint @@ -0,0 +1,13 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/pcap-bpf.h +-rw-r--r-- root/root usr/include/pcap-namedb.h +-rw-r--r-- root/root usr/include/pcap.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libpcap.a +lrwxrwxrwx root/root usr/lib/libpcap.so -> libpcap.so.0.9.4 +lrwxrwxrwx root/root usr/lib/libpcap.so.0 -> libpcap.so.0.9.4 +-rwxr-xr-x root/root usr/lib/libpcap.so.0.9.4 +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man3/ +-rw-r--r-- root/root usr/man/man3/pcap.3.gz diff --git a/libpcap/.md5sum b/libpcap/.md5sum new file mode 100644 index 000000000..7ab718c84 --- /dev/null +++ b/libpcap/.md5sum @@ -0,0 +1 @@ +79025766e8027df154cb1f32de8a7974 libpcap-0.9.4.tar.gz diff --git a/libpcap/Pkgfile b/libpcap/Pkgfile new file mode 100644 index 000000000..53fd70591 --- /dev/null +++ b/libpcap/Pkgfile @@ -0,0 +1,17 @@ +# Description: Packet capture library +# URL: http://www.tcpdump.org +# Maintainer: J�rgen Daubert, juergen dot daubert at t-online dot de + +name=libpcap +version=0.9.4 +release=1 +source=(http://www.tcpdump.org/release/$name-$version.tar.gz) + +build () { + cd $name-$version + ./configure --prefix=/usr --enable-ipv6 + make + make DESTDIR=$PKG install install-shared + ln -s $name.so.$version $PKG/usr/lib/$name.so.0 + ln -s $name.so.$version $PKG/usr/lib/$name.so +} |