Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libpcap/
Date: Thu, 10 Jun 2021 17:54:17
Message-Id: 1623347637.2f9343f97f8e3943f13952b60ebb30cf16724b16.sam@gentoo
1 commit: 2f9343f97f8e3943f13952b60ebb30cf16724b16
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 10 17:53:23 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 10 17:53:57 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f9343f9
7
8 net-libs/libpcap: add 1.10.1
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 net-libs/libpcap/Manifest | 2 +
13 net-libs/libpcap/libpcap-1.10.1.ebuild | 95 ++++++++++++++++++++++++++++++++++
14 2 files changed, 97 insertions(+)
15
16 diff --git a/net-libs/libpcap/Manifest b/net-libs/libpcap/Manifest
17 index 6e946903385..e973952f7f2 100644
18 --- a/net-libs/libpcap/Manifest
19 +++ b/net-libs/libpcap/Manifest
20 @@ -1,2 +1,4 @@
21 DIST libpcap-1.10.0-upstream.tar.gz 934559 BLAKE2B 54e809af242b18d600b88f29bbe31b01784b5160366242f313908b58dfb1e6ee2ceae8d359f730881e15c1b26ed90c553869dffb25a74eb3cea9f597dd490b1d SHA512 007710386ff3435ef97fc99293076eae3c39b424e986141184c712b0285f8589357a1b25085f7eba28730de04312042c724d193934a399797e95a56f5301da7f
22 DIST libpcap-1.10.0-upstream.tar.gz.sig 442 BLAKE2B f19ca45bbeee39ef1b3f8a8e8d8d9f24ad43e503430a3fa969a8ce668cb7926e1d19adb7e7cf11fff9dafa09b04507052ccc98f7b2a81f053ff01ec6c7ec8f87 SHA512 8a13aef00120080793da800f038d13124d412dfcfae6c0a952bcab544b50c8b69f6a672438bbe5bcdbfeda2e0d541bccefefbfc69f94e1635c0e9eaf77f19902
23 +DIST libpcap-1.10.1-upstream.tar.gz 935221 BLAKE2B 0ec028e5d026a97b92ba6f23f88daf36b827eee08a752a0162fbabd1b5a2a70141ec403b6ff26dc3eb25ca5c6630c9c2f60f05b33161770da3d5e829c4eecdc6 SHA512 56c314f19c2b857742bf8abcb1e78066986aaa95cec339b75a3c8b70a9fa2b5167da98708352f9ec97a1cea2700cfb4e040bda108d58ac46cec9b7deab88d171
24 +DIST libpcap-1.10.1-upstream.tar.gz.sig 442 BLAKE2B b76bf3c40a923b6c8fb9a356dff49a90e30dd0b0d785f138ac56bf1a41ad3a6fcfa3d5b3d28c12543857c5616b8938108b06313e35e4474d50991b72d9d371c8 SHA512 f9807efd11d99524b247981e5f4f02e1ffbeaa8468a9a22c66f9931a894071b9182164807b9fd11436883d36e8b0c6cc62302852005d958e34b5236e20caa33d
25
26 diff --git a/net-libs/libpcap/libpcap-1.10.1.ebuild b/net-libs/libpcap/libpcap-1.10.1.ebuild
27 new file mode 100644
28 index 00000000000..16825c3bbf1
29 --- /dev/null
30 +++ b/net-libs/libpcap/libpcap-1.10.1.ebuild
31 @@ -0,0 +1,95 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit autotools multilib-minimal
38 +
39 +DESCRIPTION="A system-independent library for user-level network packet capture"
40 +HOMEPAGE="https://www.tcpdump.org/ https://github.com/the-tcpdump-group/libpcap"
41 +
42 +if [[ ${PV} == *9999* ]] ; then
43 + EGIT_REPO_URI="https://github.com/the-tcpdump-group/libpcap"
44 + inherit git-r3
45 +else
46 + VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/tcpdump.asc
47 + inherit verify-sig
48 +
49 + # Note: drop -upstream on bump, this is just because we switched to the official
50 + # distfiles for verify-sig
51 + SRC_URI="https://www.tcpdump.org/release/${P}.tar.gz -> ${P}-upstream.tar.gz"
52 + SRC_URI+=" verify-sig? ( https://www.tcpdump.org/release/${P}.tar.gz.sig -> ${P}-upstream.tar.gz.sig )"
53 +
54 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris"
55 +fi
56 +
57 +LICENSE="BSD"
58 +SLOT="0"
59 +IUSE="bluetooth dbus netlink rdma remote static-libs usb yydebug"
60 +
61 +RDEPEND="
62 + bluetooth? ( net-wireless/bluez:=[${MULTILIB_USEDEP}] )
63 + dbus? ( sys-apps/dbus[${MULTILIB_USEDEP}] )
64 + netlink? ( dev-libs/libnl:3[${MULTILIB_USEDEP}] )
65 + rdma? ( sys-cluster/rdma-core )
66 + usb? ( virtual/libusb:1[${MULTILIB_USEDEP}] )
67 +"
68 +DEPEND="${RDEPEND}"
69 +BDEPEND="
70 + sys-devel/flex
71 + virtual/yacc
72 + dbus? ( virtual/pkgconfig )
73 +"
74 +
75 +if [[ ${PV} != *9999* ]] ; then
76 + BDEPEND+=" verify-sig? ( app-crypt/openpgp-keys-tcpdump )"
77 +fi
78 +
79 +PATCHES=(
80 + "${FILESDIR}"/${PN}-1.9.1-pcap-config.patch
81 + "${FILESDIR}"/${PN}-1.10.0-usbmon.patch
82 +)
83 +
84 +src_prepare() {
85 + default
86 +
87 + if ! [[ -f VERSION ]]; then
88 + echo ${PV} > VERSION || die
89 + fi
90 +
91 + eautoreconf
92 +}
93 +
94 +multilib_src_configure() {
95 + ECONF_SOURCE="${S}" \
96 + econf \
97 + $(use_enable bluetooth) \
98 + $(use_enable dbus) \
99 + $(use_enable rdma) \
100 + $(use_enable remote) \
101 + $(use_enable usb) \
102 + $(use_enable yydebug) \
103 + $(use_with netlink libnl) \
104 + --enable-ipv6
105 +}
106 +
107 +multilib_src_compile() {
108 + emake all shared
109 +}
110 +
111 +multilib_src_install_all() {
112 + dodoc CREDITS CHANGES VERSION TODO README.* doc/README.*
113 +
114 + # remove static libraries (--disable-static does not work)
115 + if ! use static-libs; then
116 + find "${ED}" -name '*.a' -exec rm {} + || die
117 + fi
118 +
119 + find "${ED}" -name '*.la' -delete || die
120 +
121 + # We need this to build pppd on G/FBSD systems
122 + if [[ "${USERLAND}" == "BSD" ]]; then
123 + insinto /usr/include
124 + doins pcap-int.h portability.h
125 + fi
126 +}