From: Chris Larson Date: Tue, 13 Jan 2004 22:51:24 +0000 (+0000) Subject: BUGFIX: fix the build of libpcap 0.8.1, which was failing due to autoconf versioning... X-Git-Tag: Release-2010-05/1~20411 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca55f7b3e33556366db135c53f6aec76f80270a9;p=openembedded.git BUGFIX: fix the build of libpcap 0.8.1, which was failing due to autoconf versioning issues. (LIBOBJS vs AC_LIBOBJ) BKrev: 4004766cfso8N2iCdHYWnI2-6k6mCw --- diff --git a/libpcap/libpcap-0.8.1/configure.patch b/libpcap/libpcap-0.8.1/configure.patch new file mode 100644 index 0000000000..e69de29bb2 diff --git a/libpcap/libpcap_0.8.1.oe b/libpcap/libpcap_0.8.1.oe index e69de29bb2..bc72e876bd 100644 --- a/libpcap/libpcap_0.8.1.oe +++ b/libpcap/libpcap_0.8.1.oe @@ -0,0 +1,30 @@ +DESCRIPTION="Network Packet Capture Library" +SECTION="libs" +PRIORITY="required" +RDEPENDS="libc6" +DEPENDS=virtual/libc + +SRC_URI=http://www.tcpdump.org/release/libpcap-${PV}.tar.gz; \ + file://${FILESDIR}/shared.patch;patch=1 \ + file://${FILESDIR}/configure.patch;patch=1 + +inherit autotools +EXTRA_OECONF=" --with-pcap=linux" + +do_configure_prepend () { + if [ ! -e acinclude.m4 ]; then + cat aclocal.m4 > acinclude.m4 + fi +} + +do_stage () { + install -d ${STAGING_DIR}/target/include/net + install -m 0644 net/bpf.h ${STAGING_DIR}/target/include/net/bpf.h + install -m 0644 pcap.h ${STAGING_DIR}/target/include/pcap.h + install -m 0644 pcap-namedb.h ${STAGING_DIR}/target/include/pcap-namedb.h + install -m 0755 libpcap.so.${PV} ${STAGING_LIBDIR}/ + ln -sf libpcap.so.${PV} ${STAGING_LIBDIR}/libpcap.so.0.8 + ln -sf libpcap.so.${PV} ${STAGING_LIBDIR}/libpcap.so.0 + ln -sf libpcap.so.${PV} ${STAGING_LIBDIR}/libpcap.so + install -m 0644 libpcap.a ${STAGING_LIBDIR}/ +}