parlay

yet another gentoo overlay
git clone https://git.parazyd.org/parlay
Log | Files | Refs | README

commit cf98c29f03a4e6b3c91bbd66792530383c27e715
parent 4486a9dd9e5b9dff353be58eca30ee008ae32fab
Author: parazyd <parazyd@dyne.org>
Date:   Mon,  2 Jan 2017 15:02:26 +0100

app-crypt/tomb: Update to 2.3

Diffstat:
Mapp-crypt/tomb/Manifest | 2+-
Dapp-crypt/tomb/tomb-2.2.ebuild | 48------------------------------------------------
Aapp-crypt/tomb/tomb-2.3.ebuild | 51+++++++++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 52 insertions(+), 49 deletions(-)

diff --git a/app-crypt/tomb/Manifest b/app-crypt/tomb/Manifest @@ -1 +1 @@ -DIST tomb-2.2.tar.gz 4662721 SHA256 c0172ef8273c4be9322a52b6e503c8bf442ce74028605e198ed5d7e6d090ba86 SHA512 11723f1cccc75ffe64156b1f26ee7095a0147b48e05c58e98ea0fac933e9f7e5884c705a10dd4416338bab443c56902435709de85e313a053fe61883631e1290 WHIRLPOOL b3a009b17f19a352db1b7d28d8d0712ca497dfe74e8e4825285efa34b9d6a273d6b2a955f6f27b2215affd686935e9408bdbbfa98fe11806b2d32d4d83af52da +DIST Tomb-2.3.tar.gz 4692165 SHA256 7e55ed51b6f5781a7ec40f4e8ec17a24999f1dd18c707f4c00c131d2d15220c9 SHA512 251a38dd28871767b52eda3069161da2f0d54d66372ff2a0dc9ae1e3e74b215c8d93bce9b5249f95b87851cc6d2b2543e9013d89a37a1e79e02cf56ad4f7dbb4 WHIRLPOOL 4195c687568b3ab25ddf22c0c1226a4b4c60b34850fe11fd1b7c5067ad4efc9e049f377344e624930eb6cc3adfc1b727642b41ddd0da8c0a7e5e9cf28ad501a0 diff --git a/app-crypt/tomb/tomb-2.2.ebuild b/app-crypt/tomb/tomb-2.2.ebuild @@ -1,48 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 -inherit eutils - -DESCRIPTION="The Crypto Undertaker" -HOMEPAGE="https://www.dyne.org/software/tomb" -SRC_URI="https://files.dyne.org/tomb/tomb-2.2.tar.gz" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86" -IUSE="kdf gtk3" - -DEPEND=" - dev-libs/libgcrypt - sys-fs/cryptsetup - app-admin/sudo - app-crypt/pinentry - app-crypt/gnupg - gtk3? ( gnome-extra/zenity ) -" - -RDEPEND="${DEPEND}" - -DOCS=( doc/TODO.org ) - -src_compile() { - if use kdf; then - emake CC=$(tc-getCC) -C extras/kdf-keys/ - fi -} - -src_install() { - dobin tomb - doman doc/tomb.1 - if use kdf; then - dobin extras/kdf-keys/tomb-kdb-hexencode - dobin extras/kdf-keys/tomb-kdb-pbkdf2 - dobin extras/kdf-keys/tomb-kdb-pbkdf2-gensalt - dobin extras/kdf-keys/tomb-kdb-pbkdf2-getiter - fi - if use gtk3; then - dobin extras/gtomb/gtomb - fi -} diff --git a/app-crypt/tomb/tomb-2.3.ebuild b/app-crypt/tomb/tomb-2.3.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit eutils + +DESCRIPTION="The Crypto Undertaker" +HOMEPAGE="https://www.dyne.org/software/tomb" +SRC_URI="https://files.dyne.org/${PN}/Tomb-${PV}.tar.gz" + +S="${WORKDIR}/Tomb-${PV}" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86" +IUSE="kdf gtk3" + +DEPEND=" + dev-libs/libgcrypt + sys-fs/cryptsetup + app-admin/sudo + app-crypt/pinentry + app-crypt/gnupg + gtk3? ( gnome-extra/zenity ) +" + +RDEPEND="${DEPEND}" + +DOCS=( doc/TODO.org README.md KNOWN_BUGS.md ChangeLog.md AUTHORS.md INSTALL.md ) + +src_compile() { + if use kdf; then + emake CC=$(tc-getCC) -C extras/kdf-keys/ + fi +} + +src_install() { + dobin tomb + doman doc/tomb.1 + if use kdf; then + dobin extras/kdf-keys/tomb-kdb-hexencode + dobin extras/kdf-keys/tomb-kdb-pbkdf2 + dobin extras/kdf-keys/tomb-kdb-pbkdf2-gensalt + dobin extras/kdf-keys/tomb-kdb-pbkdf2-getiter + fi + + if use gtk3; then + dobin extras/gtomb/gtomb + fi +}