diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2010-06-30 10:31:47 +0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-01 14:13:07 +0100 |
commit | d92a3c09f377d259547311e11910d539953533d8 (patch) | |
tree | 24dc4eb7329e4d2d19c0cf8d6ce45e26d4e751cd /meta/packages/libpcap/libpcap.inc | |
parent | 64b82f8acd84a2e816b5474ff8fd5a4c4390c6a4 (diff) | |
download | openembedded-core-d92a3c09f377d259547311e11910d539953533d8.tar.gz openembedded-core-d92a3c09f377d259547311e11910d539953533d8.tar.bz2 openembedded-core-d92a3c09f377d259547311e11910d539953533d8.zip |
libpcap: Upgraded to version 1.1.1
Remove config-fixes.patch and ldflags.patch since the change is already in the
latest version
Remove shared.patch since it is not being used.
Rebase aclocal.patch according to the latest package version
Also contains Metadata fix
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Diffstat (limited to 'meta/packages/libpcap/libpcap.inc')
-rw-r--r-- | meta/packages/libpcap/libpcap.inc | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/meta/packages/libpcap/libpcap.inc b/meta/packages/libpcap/libpcap.inc index d8f0b2561c..2025d84c0d 100644 --- a/meta/packages/libpcap/libpcap.inc +++ b/meta/packages/libpcap/libpcap.inc @@ -1,7 +1,10 @@ -DESCRIPTION = "Network Packet Capture Library" +DESCRIPTION = "Libpcap is a tool to capture network packages on Unix/Linux platform" HOMEPAGE = "http://www.tcpdump.org/" +BUGTRACKER = "http://sourceforge.net/tracker/?group_id=53067&atid=469577" SECTION = "libs/network" LICENSE = "BSD" +LIC_FILES_CHKSUM = "file://LICENSE;md5=1d4b0366557951c84a94fabe3529f867 \ + file://pcap.h;beginline=1;endline=34;md5=8d6cf7e17d5745010d633e30bc529ea9" DEPENDS = "flex-native bison-native" SRC_URI = "http://www.tcpdump.org/release/libpcap-${PV}.tar.gz" @@ -15,7 +18,7 @@ CFLAGS_prepend = "-I${S} " CXXFLAGS_prepend = "-I${S} " do_configure_prepend () { - if [ ! -e acinclude.m4 ]; then - cat aclocal.m4 > acinclude.m4 - fi + if [ ! -e acinclude.m4 ]; then + cat aclocal.m4 > acinclude.m4 + fi } |