diff options
author | Aaron Walker <ka0ttic@gentoo.org> | 2005-05-06 13:00:50 +0000 |
---|---|---|
committer | Aaron Walker <ka0ttic@gentoo.org> | 2005-05-06 13:00:50 +0000 |
commit | 03f1396b6279377b4a754e29dce5194a42c56ea6 (patch) | |
tree | 6530f6ff9d1cdd79a108dfc8aa8c7c9ef77fe99c /net-libs | |
parent | Added to ~ppc (diff) | |
download | gentoo-2-03f1396b6279377b4a754e29dce5194a42c56ea6.tar.gz gentoo-2-03f1396b6279377b4a754e29dce5194a42c56ea6.tar.bz2 gentoo-2-03f1396b6279377b4a754e29dce5194a42c56ea6.zip |
Install pcap-int.h on fbsd.
(Portage version: 2.0.51.21)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libpcap/ChangeLog | 5 | ||||
-rw-r--r-- | net-libs/libpcap/Manifest | 16 | ||||
-rw-r--r-- | net-libs/libpcap/libpcap-0.8.3-r1.ebuild | 11 |
3 files changed, 15 insertions, 17 deletions
diff --git a/net-libs/libpcap/ChangeLog b/net-libs/libpcap/ChangeLog index caef1f2a4700..d2e5134de140 100644 --- a/net-libs/libpcap/ChangeLog +++ b/net-libs/libpcap/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-libs/libpcap # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/ChangeLog,v 1.34 2005/01/29 00:37:20 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/ChangeLog,v 1.35 2005/05/06 13:00:50 ka0ttic Exp $ + + 06 May 2005; Aaron Walker <ka0ttic@gentoo.org> libpcap-0.8.3-r1.ebuild: + Install pcap-int.h on fbsd. 29 Jan 2005; Daniel Black <dragonheart@gentoo.org> libpcap-0.8.3-r1.ebuild: new PROVIDE - virtual/libpcap diff --git a/net-libs/libpcap/Manifest b/net-libs/libpcap/Manifest index e7549126370b..cab36d5d1dcb 100644 --- a/net-libs/libpcap/Manifest +++ b/net-libs/libpcap/Manifest @@ -1,15 +1,5 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 6d0c2334431141b601ca441b4df7d821 ChangeLog 5016 +MD5 790596f332d0118b3ed35a2dc503fe92 libpcap-0.8.3-r1.ebuild 1452 +MD5 93a67be4de4f49007ff3919b8a1d26d6 ChangeLog 5121 MD5 50057505c6cef15415ae8f8ca7378d82 metadata.xml 261 -MD5 f86ec4c8c8760074f99123e4f34d7495 libpcap-0.8.3-r1.ebuild 1320 -MD5 29710cca211a266690d649eff1ffe287 files/libpcap-0.8.1-fPIC.patch 298 MD5 aa690ff148a4b4bbb5a59276fbb583a8 files/digest-libpcap-0.8.3-r1 65 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.0 (GNU/Linux) - -iD8DBQFB+trHmdTrptrqvGERAibpAKCLo3k6eI3t95voRmKIzwwd5dlZjQCfYiPy -qe/ZvcTjXEwR6JQQlqemrVw= -=Ho7L ------END PGP SIGNATURE----- +MD5 29710cca211a266690d649eff1ffe287 files/libpcap-0.8.1-fPIC.patch 298 diff --git a/net-libs/libpcap/libpcap-0.8.3-r1.ebuild b/net-libs/libpcap/libpcap-0.8.3-r1.ebuild index f862dc905cce..b513c2c8b5ab 100644 --- a/net-libs/libpcap/libpcap-0.8.3-r1.ebuild +++ b/net-libs/libpcap/libpcap-0.8.3-r1.ebuild @@ -1,6 +1,6 @@ # 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.8.3-r1.ebuild,v 1.18 2005/01/29 00:37:20 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcap/libpcap-0.8.3-r1.ebuild,v 1.19 2005/05/06 13:00:50 ka0ttic Exp $ inherit eutils multilib toolchain-funcs @@ -26,7 +26,7 @@ src_unpack() { } src_compile() { - econf `use_enable ipv6` || die "bad configure" + econf $(use_enable ipv6) || die "bad configure" emake || die "compile problem" # no provision for this in the Makefile, so... @@ -35,7 +35,12 @@ src_compile() { } src_install() { - einstall || die + einstall || die "make install failed" + + if use x86-fbsd ; 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} |