summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Bar-Lev <alonbl@gentoo.org>2016-06-12 05:42:02 +0300
committerAlon Bar-Lev <alonbl@gentoo.org>2016-06-12 06:22:05 +0300
commitd2423ffe45fdcff538f641928b7a60033c535537 (patch)
tree361c42ecafe1b852c13acac2c72a5043601ac35b /app-crypt
parentapp-crypt/dieharder: cleanup (diff)
downloadgentoo-d2423ffe45fdcff538f641928b7a60033c535537.tar.gz
gentoo-d2423ffe45fdcff538f641928b7a60033c535537.tar.bz2
gentoo-d2423ffe45fdcff538f641928b7a60033c535537.zip
app-crypt/tc-play: cleanup
Package-Manager: portage-2.2.28
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/tc-play/metadata.xml5
-rw-r--r--app-crypt/tc-play/tc-play-2.0.ebuild52
2 files changed, 0 insertions, 57 deletions
diff --git a/app-crypt/tc-play/metadata.xml b/app-crypt/tc-play/metadata.xml
index bd7d1f05fe43..5f7a0a616455 100644
--- a/app-crypt/tc-play/metadata.xml
+++ b/app-crypt/tc-play/metadata.xml
@@ -5,11 +5,6 @@
<email>crypto@gentoo.org</email>
<name>Crypto</name>
</maintainer>
- <use>
- <flag name="openssl">
- Use openssl crypto backend.
- </flag>
- </use>
<upstream>
<remote-id type="github">bwalex/tc-play</remote-id>
</upstream>
diff --git a/app-crypt/tc-play/tc-play-2.0.ebuild b/app-crypt/tc-play/tc-play-2.0.ebuild
deleted file mode 100644
index 4d371e2d7ef0..000000000000
--- a/app-crypt/tc-play/tc-play-2.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit toolchain-funcs multilib
-
-DESCRIPTION="a free, pretty much fully featured and stable TrueCrypt implementation"
-HOMEPAGE="https://github.com/bwalex/tc-play"
-SRC_URI="https://github.com/bwalex/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="openssl"
-
-DEPEND="
- dev-libs/libgpg-error
- sys-fs/lvm2
- sys-apps/util-linux
- dev-libs/libgcrypt:0
- openssl? ( dev-libs/openssl:0 )"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
- local backend="gcrypt"
- use openssl && backend="openssl"
-
- EXTRA_MAKE_FLAGS=(
- PBKDF_BACKEND="${backend}"
- WARNFLAGS=""
- CC=$(tc-getCC)
- AR=$(tc-getAR)
- PREFIX=/usr \
- LIBDIR=/usr/$(get_libdir)
- )
-}
-
-src_compile() {
- emake -f Makefile.classic \
- tcplay \
- "${EXTRA_MAKE_FLAGS[@]}"
-}
-
-src_install() {
- emake -f Makefile.classic \
- "${EXTRA_MAKE_FLAGS[@]}" \
- install_program \
- DESTDIR="${ED}"
- dodoc README.md
-}