diff options
author | Aaron Bauman <bman@gentoo.org> | 2019-11-09 22:57:18 -0500 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2019-11-09 22:57:18 -0500 |
commit | 9b803d4796f5c27a5c6cbc1fbc3f539339c284ab (patch) | |
tree | d2c28ddd504824da4f05cca783303df59abde9d7 /app-crypt/elettra | |
parent | profiles/package.mask: remove app-text/vlna mask (diff) | |
download | gentoo-9b803d4796f5c27a5c6cbc1fbc3f539339c284ab.tar.gz gentoo-9b803d4796f5c27a5c6cbc1fbc3f539339c284ab.tar.bz2 gentoo-9b803d4796f5c27a5c6cbc1fbc3f539339c284ab.zip |
app-crypt/elettra: bump EAPI and stuff
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'app-crypt/elettra')
-rw-r--r-- | app-crypt/elettra/elettra-1.0.ebuild | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/app-crypt/elettra/elettra-1.0.ebuild b/app-crypt/elettra/elettra-1.0.ebuild index 4e47c0f1db08..c15d05715817 100644 --- a/app-crypt/elettra/elettra-1.0.ebuild +++ b/app-crypt/elettra/elettra-1.0.ebuild @@ -1,15 +1,15 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=0 +EAPI=7 inherit toolchain-funcs MY_P="${PN}-src-${PV}" DESCRIPTION="Plausible deniable file cryptography" -HOMEPAGE="http://www.winstonsmith.info/julia/elettra/" -SRC_URI="http://www.winstonsmith.info/julia/elettra/${MY_P}.tar.gz" +HOMEPAGE="https://www.winstonsmith.info/julia/elettra/" +SRC_URI="https://www.winstonsmith.info/julia/elettra/${MY_P}.tar.gz" LICENSE="WTFPL-2" SLOT="0" @@ -17,8 +17,8 @@ KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" IUSE="" RDEPEND="sys-libs/zlib - app-crypt/mhash - dev-libs/libmcrypt" + app-crypt/mhash + dev-libs/libmcrypt" DEPEND="${RDEPEND}" @@ -31,6 +31,6 @@ src_compile() { } src_install() { - dobin elettra || die "dobin failed" - dodoc README || die "dodoc failed" + dobin elettra + dodoc README } |