diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2018-03-17 16:41:55 +0100 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2018-03-17 16:41:55 +0100 |
commit | 4c0c1e9b94956e892a5a61f0d9a3ffdcef233efc (patch) | |
tree | eb7d080077f8816b8dc6152a24e37190a9040772 /net-fs/nfs-utils | |
parent | media-libs/leptonica: Drop old 1.74.1 (diff) | |
download | gentoo-4c0c1e9b94956e892a5a61f0d9a3ffdcef233efc.tar.gz gentoo-4c0c1e9b94956e892a5a61f0d9a3ffdcef233efc.tar.bz2 gentoo-4c0c1e9b94956e892a5a61f0d9a3ffdcef233efc.zip |
net-fs/nfs-utils: Fix LDAP automagic
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --force
Diffstat (limited to 'net-fs/nfs-utils')
-rw-r--r-- | net-fs/nfs-utils/nfs-utils-2.3.1-r3.ebuild (renamed from net-fs/nfs-utils/nfs-utils-2.3.1-r2.ebuild) | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/net-fs/nfs-utils/nfs-utils-2.3.1-r2.ebuild b/net-fs/nfs-utils/nfs-utils-2.3.1-r3.ebuild index fa6a0640931c..9e7f359734ea 100644 --- a/net-fs/nfs-utils/nfs-utils-2.3.1-r2.ebuild +++ b/net-fs/nfs-utils/nfs-utils-2.3.1-r3.ebuild @@ -81,22 +81,23 @@ src_configure() { export libsqlite3_cv_is_recent=yes # Our DEPEND forces this. export ac_cv_header_keyutils_h=$(usex nfsidmap) local myeconfargs=( - --with-statedir="${EPREFIX}"/var/lib/nfs + --with-statedir="${EPREFIX%/}"/var/lib/nfs --enable-tirpc - --with-tirpcinclude="${EPREFIX}"/usr/include/tirpc/ - --with-pluginpath="${EPREFIX}"/usr/$(get_libdir)/libnfsidmap + --with-tirpcinclude="${EPREFIX%/}"/usr/include/tirpc/ + --with-pluginpath="${EPREFIX%/}"/usr/$(get_libdir)/libnfsidmap --with-systemd="$(systemd_get_systemunitdir)" + --without-gssglue + $(use_enable caps) + $(use_enable ipv6) + $(use_enable kerberos gss) + $(use_enable kerberos svcgss) + $(use_enable ldap) $(use_enable libmount libmount-mount) - $(use_with tcpd tcp-wrappers) $(use_enable nfsdcld nfsdcltrack) $(use_enable nfsv4) $(use_enable nfsv41) - $(use_enable ipv6) - $(use_enable caps) $(use_enable uuid) - $(use_enable kerberos gss) - $(use_enable kerberos svcgss) - --without-gssglue + $(use_with tcpd tcp-wrappers) ) econf "${myeconfargs[@]}" } |