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 9C7E81382C5 for ; Sun, 31 May 2020 20:13:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3F06E0949; Sun, 31 May 2020 20:13:31 +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 AAB81E0949 for ; Sun, 31 May 2020 20:13:31 +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 B0B9234EF26 for ; Sun, 31 May 2020 20:13:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3A0E71F9 for ; Sun, 31 May 2020 20:13:28 +0000 (UTC) From: "Matthew Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Thode" Message-ID: <1590956002.519505b5d95b1110ae1c4a05fa34f86d53e083c3.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/stoken/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/stoken/stoken-0.92-r1.ebuild app-crypt/stoken/stoken-0.92.ebuild X-VCS-Directories: app-crypt/stoken/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matthew Thode X-VCS-Revision: 519505b5d95b1110ae1c4a05fa34f86d53e083c3 X-VCS-Branch: master Date: Sun, 31 May 2020 20:13:28 +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: e366148d-7ad4-48e9-a435-11009eb3f64c X-Archives-Hash: 9d2bdb5884be167f0f6069a08e679c33 commit: 519505b5d95b1110ae1c4a05fa34f86d53e083c3 Author: Matthew Thode gentoo org> AuthorDate: Sun May 31 20:13:06 2020 +0000 Commit: Matthew Thode gentoo org> CommitDate: Sun May 31 20:13:22 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=519505b5 app-crypt/stoken: make static builds optional Closes: https://bugs.gentoo.org/726486 Package-Manager: Portage-2.3.99, Repoman-2.3.22 RepoMan-Options: --force Signed-off-by: Matthew Thode gentoo.org> app-crypt/stoken/{stoken-0.92.ebuild => stoken-0.92-r1.ebuild} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app-crypt/stoken/stoken-0.92.ebuild b/app-crypt/stoken/stoken-0.92-r1.ebuild similarity index 83% rename from app-crypt/stoken/stoken-0.92.ebuild rename to app-crypt/stoken/stoken-0.92-r1.ebuild index 5774eec2cf5..d535f81ddc4 100644 --- a/app-crypt/stoken/stoken-0.92.ebuild +++ b/app-crypt/stoken/stoken-0.92-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -12,7 +12,7 @@ SRC_URI="https://github.com/cernekee/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="LGPL-2.1+" SLOT="0" KEYWORDS="amd64 arm arm64 ppc64 x86" -IUSE="gtk" +IUSE="gtk static" # || ( dev-libs/nettle dev-libs/libtomcrypt ) libtomcrypt is not packaged RDEPEND=" @@ -26,5 +26,5 @@ src_prepare() { } src_configure() { - econf $(use_with gtk) + econf $(use_with gtk) --enable-static=$(usex static) }