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 1C834139694 for ; Tue, 16 May 2017 08:34:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D86AE0D1C; Tue, 16 May 2017 08:34:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 28491E0D1C for ; Tue, 16 May 2017 08:34:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 51B1D3416AB for ; Tue, 16 May 2017 08:34:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 195264EBE for ; Tue, 16 May 2017 08:34:52 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1494923686.e9cf932ca6565acc8e1eed0fbe826ce81f97abbd.polynomial-c@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.1.2_rc2.ebuild X-VCS-Directories: net-fs/nfs-utils/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: e9cf932ca6565acc8e1eed0fbe826ce81f97abbd X-VCS-Branch: master Date: Tue, 16 May 2017 08:34:52 +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: c414b760-5e4b-43f2-8f99-2c5952939b54 X-Archives-Hash: 66735059e2533e63afe6e809fccdcf87 commit: e9cf932ca6565acc8e1eed0fbe826ce81f97abbd Author: Lars Wendler gentoo org> AuthorDate: Tue May 16 08:22:41 2017 +0000 Commit: Lars Wendler gentoo org> CommitDate: Tue May 16 08:34:46 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9cf932c net-fs/nfs-utils: Minor ebuild improvements. Package-Manager: Portage-2.3.5, Repoman-2.3.2 net-fs/nfs-utils/nfs-utils-2.1.2_rc2.ebuild | 38 +++++++++++++++++------------ 1 file changed, 22 insertions(+), 16 deletions(-) diff --git a/net-fs/nfs-utils/nfs-utils-2.1.2_rc2.ebuild b/net-fs/nfs-utils/nfs-utils-2.1.2_rc2.ebuild index 31d0250fb54..62ab1c43c85 100644 --- a/net-fs/nfs-utils/nfs-utils-2.1.2_rc2.ebuild +++ b/net-fs/nfs-utils/nfs-utils-2.1.2_rc2.ebuild @@ -62,9 +62,13 @@ RDEPEND="${DEPEND_COMMON} DEPEND="${DEPEND_COMMON} virtual/pkgconfig" +PATCHES=( + "${FILESDIR}"/${PN}-1.1.4-mtab-sym.patch + "${FILESDIR}"/${PN}-1.2.8-cross-build.patch +) + src_prepare() { - epatch "${FILESDIR}"/${PN}-1.1.4-mtab-sym.patch - epatch "${FILESDIR}"/${PN}-1.2.8-cross-build.patch + epatch "${PATCHES[@]}" sed \ -e "/^sbindir/s:= := \"${EPREFIX}\":g" \ @@ -77,21 +81,23 @@ src_prepare() { src_configure() { export libsqlite3_cv_is_recent=yes # Our DEPEND forces this. export ac_cv_header_keyutils_h=$(usex nfsidmap) - econf \ - --with-statedir="${EPREFIX}"/var/lib/nfs \ - --enable-tirpc \ - --with-tirpcinclude="${EPREFIX}"/usr/include/tirpc/ \ - $(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) \ + local myeconfargs=( + --with-statedir="${EPREFIX}"/var/lib/nfs + --enable-tirpc + --with-tirpcinclude="${EPREFIX}"/usr/include/tirpc/ + $(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 + ) + econf "${myeconfargs[@]}" } src_compile(){