blob: dfa32d0b9ef42315253a99b5fc1b7bdda3a60e6f (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
inherit autotools fcaps perl-module
DESCRIPTION="Protocol independent ANSI-C ping library and command line utility"
HOMEPAGE="https://noping.cc/"
SRC_URI="https://noping.cc/files/${P}.tar.bz2"
LICENSE="LGPL-2.1 GPL-2"
SLOT="0/0.3"
KEYWORDS="~alpha amd64 arm x86"
IUSE="+filecaps ncurses perl"
DEPEND="ncurses? ( sys-libs/ncurses:0= )"
RDEPEND=${DEPEND}
PATCHES=(
"${FILESDIR}"/${PN}-1.10.0-no-werror.patch
"${FILESDIR}/${PN}-1.6.2-nouidmagic.patch"
"${FILESDIR}"/${P}-gcc8-fix.patch
"${FILESDIR}"/${P}-do-not-quit-when-ping_send-fail.patch
"${FILESDIR}"/${P}-report-right-error-msg-when-select-fails.patch
)
src_prepare() {
default
eautoreconf
}
src_configure() {
econf \
$(use_with perl perl-bindings INSTALLDIRS=vendor) \
$(use_with ncurses)
}
src_test() {
if use perl; then
pushd bindings/perl >/dev/null || die
perl-module_src_test
popd >/dev/null || die
fi
}
src_install() {
default
find "${ED}"usr/lib* -name '*.la' -o -name '*.a' -delete || die
}
pkg_postinst() {
if use filecaps; then
local _caps_str="CAP_NET_RAW"
_files=( "${EROOT%/}/usr/bin/oping")
if use ncurses; then
_files+=( "${EROOT%/}/usr/bin/noping")
fi
fcaps "${_caps_str}" "${_files[@]}"
elog "Capabilities for"
elog ""
local _file=
for _file in "${_files[@]}"; do
elog " ${_file}"
done
elog ""
elog "set to ${_caps_str}+EP due to set 'filecaps' USE flag."
elog
fi
}
|