diff options
author | 2019-01-07 17:30:20 +0100 | |
---|---|---|
committer | 2019-01-07 18:00:09 +0100 | |
commit | d27e7ce775713ca07a7c5be0c83d70932aaa05ab (patch) | |
tree | f498af3ce5ba84650099c7f0ce328ee50768a759 /app-misc/tkpasman/tkpasman-2.2b.ebuild | |
parent | app-crypt/heimdal: Adjusted dependencies (diff) | |
download | gentoo-d27e7ce775713ca07a7c5be0c83d70932aaa05ab.tar.gz gentoo-d27e7ce775713ca07a7c5be0c83d70932aaa05ab.tar.bz2 gentoo-d27e7ce775713ca07a7c5be0c83d70932aaa05ab.zip |
app-misc/tkpasman: Adjusted (sub-)slot dependency on dev-libs/openssl
Bumped to EAPI-7
Package-Manager: Portage-2.3.54, Repoman-2.3.12
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'app-misc/tkpasman/tkpasman-2.2b.ebuild')
-rw-r--r-- | app-misc/tkpasman/tkpasman-2.2b.ebuild | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/app-misc/tkpasman/tkpasman-2.2b.ebuild b/app-misc/tkpasman/tkpasman-2.2b.ebuild index d731fe173f99..009b2731e9b5 100644 --- a/app-misc/tkpasman/tkpasman-2.2b.ebuild +++ b/app-misc/tkpasman/tkpasman-2.2b.ebuild @@ -1,9 +1,7 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 - -inherit eutils +EAPI=7 MY_P="TkPasMan-${PV}" @@ -20,13 +18,17 @@ DEPEND=" >=dev-lang/tcl-8.3:0= >=dev-lang/tk-8.3:0=" RDEPEND="${DEPEND} - ssl? ( dev-libs/openssl ) + ssl? ( dev-libs/openssl:0= ) " -S=${WORKDIR}/${MY_P} +S="${WORKDIR}/${MY_P}" + +PATCHES=( + "${FILESDIR}"/${PN}-2.2a-gentoo.patch +) src_prepare() { - epatch "${FILESDIR}"/${PN}-2.2a-gentoo.patch + default if use ssl; then sed -i "s:^USE_OPENSSL=true:USE_OPENSSL=false:g" config || die |