summaryrefslogtreecommitdiff
path: root/net-nds
diff options
context:
space:
mode:
authorMichael Orlitzky <mjo@gentoo.org>2018-01-20 12:21:19 -0500
committerMichael Orlitzky <mjo@gentoo.org>2018-01-20 12:22:22 -0500
commitd21091ab12da59df78633ca800900d6e622042a2 (patch)
tree33f76a21cb8bc4af53dee90502dc51c3af10e51f /net-nds
parent77e5af1ca415b16016fb221d65aeff8bab116395 (diff)
downloadgentoo-d21091ab12da59df78633ca800900d6e622042a2.tar.gz
gentoo-d21091ab12da59df78633ca800900d6e622042a2.tar.xz
net-nds/rpcbind: use default values for "--bindir" and "--with-rpcuser"
Upstream commit 9afccfc moves the rpcbind executable from the bindir to the sbindir, meaning that we don't have to override the bindir in our ebuild if we want rpcbind installed to e.g. /usr/sbin. This commit drops the "--bindir" flag from src_configure, so the default will be used. As a side effect, this will place the rpcinfo executable in the bindir where it belongs, allowing us to fix things like bug 457042. Our ebuild was also passing "--with-rpcuser=root" explicitly, even though that is the default value. This commit removes the redundancy. Bug: https://bugs.gentoo.org/457042 Closes: https://bugs.gentoo.org/628766 Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'net-nds')
-rw-r--r--net-nds/rpcbind/rpcbind-9999.ebuild4
1 files changed, 1 insertions, 3 deletions
diff --git a/net-nds/rpcbind/rpcbind-9999.ebuild b/net-nds/rpcbind/rpcbind-9999.ebuild
index 8ed5edc7bbf..788cb937f34 100644
--- a/net-nds/rpcbind/rpcbind-9999.ebuild
+++ b/net-nds/rpcbind/rpcbind-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
@@ -35,9 +35,7 @@ src_prepare() {
src_configure() {
econf \
- --bindir="${EPREFIX}"/sbin \
--with-statedir="${EPREFIX}"/run/${PN} \
- --with-rpcuser=root \
--with-systemdsystemunitdir=$(usex systemd "$(systemd_get_unitdir)" "no") \
$(use_enable tcpd libwrap) \
$(use_enable debug) \