app-crypt/tomb: Remove steghide dependency. - parlay - yet another gentoo overlay
HTML git clone https://git.parazyd.org/parlay
DIR Log
DIR Files
DIR Refs
DIR README
---
DIR commit be0db4eb2b4bd6033c6d8f70ce23e99e6a45776b
DIR parent c03b3c9e8e09f86fd0fa41fb548afa431e4ea3b4
HTML Author: parazyd <parazyd@dyne.org>
Date: Tue, 6 Jun 2017 12:21:24 +0200
app-crypt/tomb: Remove steghide dependency.
Diffstat:
D app-crypt/tomb/tomb-2.4-r1.ebuild | 51 -------------------------------
A app-crypt/tomb/tomb-2.4-r2.ebuild | 50 +++++++++++++++++++++++++++++++
2 files changed, 50 insertions(+), 51 deletions(-)
---
DIR diff --git a/app-crypt/tomb/tomb-2.4-r1.ebuild b/app-crypt/tomb/tomb-2.4-r1.ebuild
@@ -1,51 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-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="tools"
-
-DEPEND="
- app-shells/zsh
- sys-fs/cryptsetup
- app-admin/sudo
- app-crypt/pinentry
- app-crypt/gnupg
- tools? (
- app-crypt/steghide
- dev-libs/libgcrypt:0
- )
-"
-
-RDEPEND="${DEPEND}"
-
-DOCS=( doc/TODO.org README.txt KNOWN_BUGS.txt ChangeLog.txt AUTHORS.txt INSTALL.txt COPYING.txt )
-
-src_compile() {
- if use tools; then
- emake CC=$(tc-getCC) -C extras/kdf-keys/
- fi
-}
-
-src_install() {
- dobin tomb
- doman doc/tomb.1
- dodoc "${DOCS[@]}"
-
- if use tools; 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
-}
DIR diff --git a/app-crypt/tomb/tomb-2.4-r2.ebuild b/app-crypt/tomb/tomb-2.4-r2.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+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="tools"
+
+DEPEND="
+ app-shells/zsh
+ sys-fs/cryptsetup
+ app-admin/sudo
+ app-crypt/pinentry
+ app-crypt/gnupg
+ tools? (
+ dev-libs/libgcrypt:0
+ )
+"
+
+RDEPEND="${DEPEND}"
+
+DOCS=( doc/TODO.org README.txt KNOWN_BUGS.txt ChangeLog.txt AUTHORS.txt INSTALL.txt COPYING.txt )
+
+src_compile() {
+ if use tools; then
+ emake CC=$(tc-getCC) -C extras/kdf-keys/
+ fi
+}
+
+src_install() {
+ dobin tomb
+ doman doc/tomb.1
+ dodoc "${DOCS[@]}"
+
+ if use tools; 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
+}