From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C3F181382C5 for ; Sat, 17 Mar 2018 15:42:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BBB95E0814; Sat, 17 Mar 2018 15:42:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 92310E0814 for ; Sat, 17 Mar 2018 15:42:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BDE35335C9D for ; Sat, 17 Mar 2018 15:42:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8641D232 for ; Sat, 17 Mar 2018 15:42:21 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1521301315.4c0c1e9b94956e892a5a61f0d9a3ffdcef233efc.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/nfs-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-fs/nfs-utils/nfs-utils-2.3.1-r2.ebuild net-fs/nfs-utils/nfs-utils-2.3.1-r3.ebuild X-VCS-Directories: net-fs/nfs-utils/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 4c0c1e9b94956e892a5a61f0d9a3ffdcef233efc X-VCS-Branch: master Date: Sat, 17 Mar 2018 15:42:21 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b3248b36-83b8-4783-b4fd-93342e3f01c5 X-Archives-Hash: 3d564dedeaac2ebbe47a14f5cfeb5651 commit: 4c0c1e9b94956e892a5a61f0d9a3ffdcef233efc Author: Thomas Deutschmann gentoo org> AuthorDate: Sat Mar 17 15:41:55 2018 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Sat Mar 17 15:41:55 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c0c1e9b net-fs/nfs-utils: Fix LDAP automagic Package-Manager: Portage-2.3.24, Repoman-2.3.6 RepoMan-Options: --force ...tils-2.3.1-r2.ebuild => nfs-utils-2.3.1-r3.ebuild} | 19 ++++++++++--------- 1 file 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 similarity index 96% rename from net-fs/nfs-utils/nfs-utils-2.3.1-r2.ebuild rename to net-fs/nfs-utils/nfs-utils-2.3.1-r3.ebuild index fa6a0640931..9e7f359734e 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[@]}" }