diff options
author | Aaron Walker <ka0ttic@gentoo.org> | 2005-07-15 13:25:00 +0000 |
---|---|---|
committer | Aaron Walker <ka0ttic@gentoo.org> | 2005-07-15 13:25:00 +0000 |
commit | 5428cecb4443005b1e2d45ded6dcf0dec7daeff6 (patch) | |
tree | b9d470cbc975a4bfda1b1f4d55d3aad64de0be2e /net-libs/libpcap/libpcap-0.9.3.ebuild | |
parent | Fixed URL for cvoicecontrol. Thanks to Benjie Gillam in bug #98015. (diff) | |
download | gentoo-2-5428cecb4443005b1e2d45ded6dcf0dec7daeff6.tar.gz gentoo-2-5428cecb4443005b1e2d45ded6dcf0dec7daeff6.tar.bz2 gentoo-2-5428cecb4443005b1e2d45ded6dcf0dec7daeff6.zip |
Version bump for bug 99099.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'net-libs/libpcap/libpcap-0.9.3.ebuild')
-rw-r--r-- | net-libs/libpcap/libpcap-0.9.3.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/net-libs/libpcap/libpcap-0.9.3.ebuild b/net-libs/libpcap/libpcap-0.9.3.ebuild new file mode 100644 index 000000000000..a34fd1bdda3c --- /dev/null +++ b/net-libs/libpcap/libpcap-0.9.3.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/libpcap-0.9.3.ebuild,v 1.1 2005/07/15 13:25:00 ka0ttic Exp $ + +inherit eutils multilib toolchain-funcs + +DESCRIPTION="A system-independent library for user-level network packet capture" +HOMEPAGE="http://www.tcpdump.org/" +SRC_URI="http://www.tcpdump.org/release/${P}.tar.gz + http://www.jp.tcpdump.org/release/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +IUSE="ipv6" + +DEPEND="virtual/libc + !virtual/libpcap" + +PROVIDE="virtual/libpcap" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/${PN}-0.8.1-fPIC.patch +} + +src_compile() { + econf $(use_enable ipv6) || die "bad configure" + emake || die "compile problem" + + # no provision for this in the Makefile, so... + $(tc-getCC) -Wl,-soname,libpcap.so.0 -shared -fPIC -o libpcap.so.${PV:0:3} *.o \ + || die "couldn't make a shared lib" +} + +src_install() { + einstall || die "make install failed" + + # We need this to build pppd on G/FBSD systems + if [[ "${USERLAND}" == "BSD" ]]; then + insinto /usr/include + doins pcap-int.h || die "failed to install pcap-int.h" + fi + + insopts -m 755 + insinto /usr/$(get_libdir) ; doins libpcap.so.${PV:0:3} + dosym /usr/$(get_libdir)/libpcap.so.${PV:0:3} /usr/$(get_libdir)/libpcap.so.0 + dosym /usr/$(get_libdir)/libpcap.so.${PV:0:3} /usr/$(get_libdir)/libpcap.so + + dodoc CREDITS CHANGES FILES README* VERSION +} |