blob: 601f3ec4d4275e6122ae9d75047e4e9bf2c80533 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit flag-o-matic systemd
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="git://linux-nfs.org/~steved/rpcbind.git"
inherit autotools git-r3
else
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86"
fi
DESCRIPTION="portmap replacement which supports RPC over various protocols"
HOMEPAGE="https://sourceforge.net/projects/rpcbind/"
LICENSE="BSD"
SLOT="0"
IUSE="debug remotecalls selinux systemd tcpd warmstarts"
REQUIRED_USE="systemd? ( warmstarts )"
CDEPEND=">=net-libs/libtirpc-0.2.3:=
systemd? ( sys-apps/systemd:= )
tcpd? ( sys-apps/tcp-wrappers )"
DEPEND="${CDEPEND}
net-libs/libnsl
sys-fs/quota[rpc]
virtual/pkgconfig"
RDEPEND="${CDEPEND}
selinux? ( sec-policy/selinux-rpcbind )"
src_prepare() {
default
[[ ${PV} == "9999" ]] && eautoreconf
}
src_configure() {
local myeconfargs=(
--bindir="${EPREFIX}"/sbin
--sbindir="${EPREFIX}"/sbin
--with-statedir="${EPREFIX}"/run/${PN}
--with-systemdsystemunitdir=$(usex systemd "$(systemd_get_systemunitdir)" "no")
$(use_enable debug)
$(use_enable remotecalls rmtcalls)
$(use_enable warmstarts)
$(use_enable tcpd libwrap)
)
# Allow configure to find /usr/include/rpc/rpc.h in rpcsvc/mount.h
# https://bugs.gentoo.org/665222
append-cppflags "$($(tc-getPKG_CONFIG) --cflags libtirpc)"
econf "${myeconfargs[@]}"
}
src_install() {
default
newinitd "${FILESDIR}"/${PN}.initd ${PN}
newconfd "${FILESDIR}"/${PN}.confd ${PN}
}
|