diff --git a/app-crypt/elettra/elettra-1.0-r1.ebuild b/app-crypt/elettra/elettra-1.0-r1.ebuild new file mode 100644 index 00000000000..ca63b7bbac2 --- /dev/null +++ b/app-crypt/elettra/elettra-1.0-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +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" + +LICENSE="WTFPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" + +RDEPEND="sys-libs/zlib + app-crypt/mhash + dev-libs/libmcrypt" +DEPEND="${RDEPEND}" + +S="${WORKDIR}/${PN}" + +src_compile() { + $(tc-getCC) ${CFLAGS} ${LDFLAGS} -I. src/*.c \ + -lz $(libmcrypt-config --cflags --libs) -lmhash \ + -o elettra || die "compilation failed" +} + +src_install() { + dobin elettra + dodoc README +}