blob: fae62215a1d9e0d3e88cca0e932852ea60ea5974 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/libpcap-0.9.5.ebuild,v 1.12 2007/04/22 22:14:42 kanaka 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 m68k ~mips ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
IUSE="ipv6"
DEPEND="!virtual/libpcap"
PROVIDE="virtual/libpcap"
src_unpack() {
unpack ${A}; cd "${S}"
epatch "${FILESDIR}"/${PN}-0.9.3-whitespace.diff
epatch "${FILESDIR}"/${PN}-0.8.1-fPIC.patch
}
src_compile() {
MY_OPTS=""
if tc-is-cross-compiler; then
if [[ "${LIBPCAP_PCAP}" == "linux" ]]; then
MY_OPTS="--with-pcap=linux"
elif [[ "${LIBPCAP_PCAP}" == "bpf" ]]; then
MY_OPTS="--with-pcap=bpf"
else
eerror "When cross compile, you must set"
eerror "the env variable to one of these values:"
eerror " linux"
eerror " bpf"
die "LIBPCAP_PCAP is not set"
fi
fi
econf $(use_enable ipv6) ${MY_OPTS} || die "bad configure"
emake || die "compile problem"
# no provision for this in the Makefile, so...
$(tc-getCC) ${LDFLAGS} -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 libpcap.so.${PV:0:3} /usr/$(get_libdir)/libpcap.so.0
dosym libpcap.so.${PV:0:3} /usr/$(get_libdir)/libpcap.so
dodoc CREDITS CHANGES FILES README* VERSION
}
|