Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/stoken/
Date: Sun, 31 May 2020 20:13:32
Message-Id: 1590956002.519505b5d95b1110ae1c4a05fa34f86d53e083c3.prometheanfire@gentoo
1 commit: 519505b5d95b1110ae1c4a05fa34f86d53e083c3
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 31 20:13:06 2020 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Sun May 31 20:13:22 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=519505b5
7
8 app-crypt/stoken: make static builds optional
9
10 Closes: https://bugs.gentoo.org/726486
11 Package-Manager: Portage-2.3.99, Repoman-2.3.22
12 RepoMan-Options: --force
13 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
14
15 app-crypt/stoken/{stoken-0.92.ebuild => stoken-0.92-r1.ebuild} | 6 +++---
16 1 file changed, 3 insertions(+), 3 deletions(-)
17
18 diff --git a/app-crypt/stoken/stoken-0.92.ebuild b/app-crypt/stoken/stoken-0.92-r1.ebuild
19 similarity index 83%
20 rename from app-crypt/stoken/stoken-0.92.ebuild
21 rename to app-crypt/stoken/stoken-0.92-r1.ebuild
22 index 5774eec2cf5..d535f81ddc4 100644
23 --- a/app-crypt/stoken/stoken-0.92.ebuild
24 +++ b/app-crypt/stoken/stoken-0.92-r1.ebuild
25 @@ -1,4 +1,4 @@
26 -# Copyright 1999-2018 Gentoo Foundation
27 +# Copyright 1999-2020 Gentoo Authors
28 # Distributed under the terms of the GNU General Public License v2
29
30 EAPI="6"
31 @@ -12,7 +12,7 @@ SRC_URI="https://github.com/cernekee/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
32 LICENSE="LGPL-2.1+"
33 SLOT="0"
34 KEYWORDS="amd64 arm arm64 ppc64 x86"
35 -IUSE="gtk"
36 +IUSE="gtk static"
37
38 # || ( dev-libs/nettle dev-libs/libtomcrypt ) libtomcrypt is not packaged
39 RDEPEND="
40 @@ -26,5 +26,5 @@ src_prepare() {
41 }
42
43 src_configure() {
44 - econf $(use_with gtk)
45 + econf $(use_with gtk) --enable-static=$(usex static)
46 }