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 15F361396D0 for ; Fri, 18 Aug 2017 15:37:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 75FE7E0D4E; Fri, 18 Aug 2017 15:37:27 +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 4E24BE0D4E for ; Fri, 18 Aug 2017 15:37:27 +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 38BBB34195E for ; Fri, 18 Aug 2017 15:37:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D29D97A28 for ; Fri, 18 Aug 2017 15:37:24 +0000 (UTC) From: "Craig Andrews" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Craig Andrews" Message-ID: <1503070630.7bc676e48afca51540d8045ca7667b8a54c66433.candrews@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libtirpc/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libtirpc/libtirpc-1.0.1-r3.ebuild X-VCS-Directories: net-libs/libtirpc/ X-VCS-Committer: candrews X-VCS-Committer-Name: Craig Andrews X-VCS-Revision: 7bc676e48afca51540d8045ca7667b8a54c66433 X-VCS-Branch: master Date: Fri, 18 Aug 2017 15:37:24 +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: 4205f79f-37a0-419e-92ea-b5676d2033c6 X-Archives-Hash: 41bcf52206356a85b16c4cd4dee984d7 commit: 7bc676e48afca51540d8045ca7667b8a54c66433 Author: Craig Andrews integralblue com> AuthorDate: Wed Jul 5 18:28:20 2017 +0000 Commit: Craig Andrews gentoo org> CommitDate: Fri Aug 18 15:37:10 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bc676e4 net-libs/libtirpc: bump to EAPI=6 Package-Manager: Portage-2.3.6, Repoman-2.3.2 Closes: #5054 net-libs/libtirpc/libtirpc-1.0.1-r3.ebuild | 68 ++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) diff --git a/net-libs/libtirpc/libtirpc-1.0.1-r3.ebuild b/net-libs/libtirpc/libtirpc-1.0.1-r3.ebuild new file mode 100644 index 00000000000..a87b7fdbbc1 --- /dev/null +++ b/net-libs/libtirpc/libtirpc-1.0.1-r3.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +inherit autotools multilib-minimal toolchain-funcs + +DESCRIPTION="Transport Independent RPC library (SunRPC replacement)" +HOMEPAGE="http://libtirpc.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2 + mirror://gentoo/${PN}-glibc-nfs.tar.xz" + +LICENSE="GPL-2" +SLOT="0/3" # subslot matches SONAME major +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="ipv6 kerberos static-libs" + +RDEPEND="kerberos? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] )" +DEPEND="${RDEPEND} + app-arch/xz-utils + >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]" + +PATCHES=( + "${FILESDIR}/${P}-CVE-2017-8779.patch" + "${FILESDIR}/${P}_uclibc-dont-use-struct-rpcent.patch" + "${FILESDIR}/${P}_ifdef-out-yp-headers-742bbdff6ddf.patch" + "${FILESDIR}/${P}_remove-nis-h-dep-5f00f8c78c5d.patch" + "${FILESDIR}/${P}_add-des_impl-c-7f6bb9a3467a.patch" + "${FILESDIR}/${P}_remove-des-deps-to-glibc-503ac2e9fa56.patch" + "${FILESDIR}/${P}_uclibc-use-memset-not-bzero.patch" +) + +src_prepare() { + default + cp -r "${WORKDIR}"/tirpc . || die + eautoreconf +} + +multilib_src_configure() { + ECONF_SOURCE=${S} \ + econf \ + $(use_enable ipv6) \ + $(use_enable kerberos gssapi) \ + $(use_enable static-libs static) +} + +multilib_src_install() { + default + + # libtirpc replaces rpc support in glibc, so we need it in / + gen_usr_ldscript -a tirpc +} + +multilib_src_install_all() { + einstalldocs + + insinto /etc + doins doc/netconfig + + insinto /usr/include/tirpc + doins -r "${WORKDIR}"/tirpc/. + + # makes sure that the linking order for nfs-utils is proper, as + # libtool would inject a libgssglue dependency in the list. + if ! use static-libs ; then + find "${D}" -name '*.la' -delete || die + fi +}