diff options
author | Matthew Thode <prometheanfire@gentoo.org> | 2020-05-31 15:13:06 -0500 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2020-05-31 15:13:22 -0500 |
commit | 519505b5d95b1110ae1c4a05fa34f86d53e083c3 (patch) | |
tree | c690cae3b9400962759216a6de4b50e8af7b1878 /app-crypt/stoken | |
parent | app-editors/e3: Set QA_FLAGS_IGNORED for e3 binary. (diff) | |
download | gentoo-519505b5d95b1110ae1c4a05fa34f86d53e083c3.tar.gz gentoo-519505b5d95b1110ae1c4a05fa34f86d53e083c3.tar.bz2 gentoo-519505b5d95b1110ae1c4a05fa34f86d53e083c3.zip |
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 <prometheanfire@gentoo.org>
Diffstat (limited to 'app-crypt/stoken')
-rw-r--r-- | app-crypt/stoken/stoken-0.92-r1.ebuild (renamed from app-crypt/stoken/stoken-0.92.ebuild) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app-crypt/stoken/stoken-0.92.ebuild b/app-crypt/stoken/stoken-0.92-r1.ebuild index 5774eec2cf50..d535f81ddc4e 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) } |