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 E749F138359 for ; Tue, 11 Aug 2020 13:18:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D09ECE0858; Tue, 11 Aug 2020 13:18:39 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 B5BCEE0858 for ; Tue, 11 Aug 2020 13:18:39 +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 717D234F0B1 for ; Tue, 11 Aug 2020 13:18:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EBC6B274 for ; Tue, 11 Aug 2020 13:18:36 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1597151781.d5208c5b1bab20efa7a4b7b87b3a64ba6c418bbd.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libspt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libspt/libspt-1.1-r2.ebuild dev-libs/libspt/libspt-1.1-r4.ebuild X-VCS-Directories: dev-libs/libspt/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: d5208c5b1bab20efa7a4b7b87b3a64ba6c418bbd X-VCS-Branch: master Date: Tue, 11 Aug 2020 13:18:36 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e900fcd0-281f-452c-bbf1-45b464e0dbf2 X-Archives-Hash: e10d24f1d34741e2d0e1da6ac9581163 commit: d5208c5b1bab20efa7a4b7b87b3a64ba6c418bbd Author: Akinori Hattori gentoo org> AuthorDate: Tue Aug 11 13:16:21 2020 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Tue Aug 11 13:16:21 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5208c5b dev-libs/libspt: add static-libs USE flag Closes: https://bugs.gentoo.org/726980 Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Akinori Hattori gentoo.org> dev-libs/libspt/libspt-1.1-r2.ebuild | 6 ++++-- dev-libs/libspt/libspt-1.1-r4.ebuild | 8 +++++--- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/dev-libs/libspt/libspt-1.1-r2.ebuild b/dev-libs/libspt/libspt-1.1-r2.ebuild index c2411df796b..84e91ac5b6e 100644 --- a/dev-libs/libspt/libspt-1.1-r2.ebuild +++ b/dev-libs/libspt/libspt-1.1-r2.ebuild @@ -12,7 +12,7 @@ SRC_URI="http://www.j10n.org/${PN}/${P}.tar.bz2" LICENSE="BSD-2" SLOT="0" KEYWORDS="~alpha amd64 ppc x86" -IUSE="+libtirpc" +IUSE="+libtirpc static-libs" RESTRICT="test" RDEPEND="!libtirpc? ( elibc_glibc? ( sys-libs/glibc[rpc(-)] ) ) @@ -34,5 +34,7 @@ src_prepare() { } src_configure() { - econf $(use_with libtirpc) + econf \ + $(use_enable static-libs static) \ + $(use_with libtirpc) } diff --git a/dev-libs/libspt/libspt-1.1-r4.ebuild b/dev-libs/libspt/libspt-1.1-r4.ebuild index 4679b16bc3f..1598b42d9b9 100644 --- a/dev-libs/libspt/libspt-1.1-r4.ebuild +++ b/dev-libs/libspt/libspt-1.1-r4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -12,7 +12,7 @@ SRC_URI="http://www.j10n.org/${PN}/${P}.tar.bz2" LICENSE="BSD-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="suid" +IUSE="static-libs suid" RESTRICT="test" RDEPEND="net-libs/libtirpc" @@ -33,7 +33,9 @@ src_prepare() { } src_configure() { - econf --with-libtirpc + econf \ + $(use_enable static-libs static) \ + --with-libtirpc } src_install() {