Diff libpcap-1.10.5 with a libpcap-9999
| /usr/portage/net-libs/libpcap/libpcap-9999.ebuild 2026-01-08 10:18:06.739008352 +0300 | ||
|---|---|---|
| 1 |
# Copyright 1999-2025 Gentoo Authors |
|
| 1 |
# Copyright 1999-2026 Gentoo Authors |
|
| 2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 | 3 | |
| 4 | 4 |
EAPI=8 |
| ... | ... | |
| 18 | 18 |
SRC_URI="https://www.tcpdump.org/release/${P}.tar.gz"
|
| 19 | 19 |
SRC_URI+=" verify-sig? ( https://www.tcpdump.org/release/${P}.tar.gz.sig )"
|
| 20 | 20 | |
| 21 |
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos" |
|
| 21 |
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" |
|
| 22 | 22 |
fi |
| 23 | 23 | |
| 24 | 24 |
# The project itself has COPYING with BSD, but the files used for |
| ... | ... | |
| 45 | 45 |
" |
| 46 | 46 | |
| 47 | 47 |
if [[ ${PV} != *9999* ]] ; then
|
| 48 |
BDEPEND+=" verify-sig? ( >=sec-keys/openpgp-keys-tcpdump-20240901 )" |
|
| 48 |
BDEPEND+=" verify-sig? ( >=sec-keys/openpgp-keys-tcpdump-20260104 )" |
|
| 49 | 49 |
fi |
| 50 | 50 | |
| 51 | 51 |
src_prepare() {
|
| ... | ... | |
| 62 | 62 |
# bug #884275 |
| 63 | 63 |
export LEX=flex |
| 64 | 64 | |
| 65 |
ECONF_SOURCE="${S}" econf \
|
|
| 66 |
$(use_enable bluetooth) \ |
|
| 67 |
$(use_enable dbus) \ |
|
| 68 |
$(use_enable rdma) \ |
|
| 69 |
$(use_enable remote) \ |
|
| 70 |
$(use_enable usb) \ |
|
| 71 |
$(use_enable yydebug) \ |
|
| 72 |
$(use_with netlink libnl) \ |
|
| 65 |
local myeconfargs=( |
|
| 66 |
$(use_enable bluetooth) |
|
| 67 |
$(use_enable dbus) |
|
| 68 |
$(use_enable rdma) |
|
| 69 |
$(use_enable remote) |
|
| 70 |
$(use_enable usb) |
|
| 71 |
$(use_enable yydebug) |
|
| 72 |
$(use_with netlink libnl) |
|
| 73 | 73 |
--enable-ipv6 |
| 74 |
) |
|
| 75 | ||
| 76 |
ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
|
|
| 74 | 77 |
} |
| 75 | 78 | |
| 76 | 79 |
multilib_src_compile() {
|