app-crypt/tc-play: cleanup
authorAlon Bar-Lev <alonbl@gentoo.org>
Sun, 12 Jun 2016 02:42:02 +0000 (05:42 +0300)
committerAlon Bar-Lev <alonbl@gentoo.org>
Sun, 12 Jun 2016 03:22:05 +0000 (06:22 +0300)
Package-Manager: portage-2.2.28

app-crypt/tc-play/metadata.xml
app-crypt/tc-play/tc-play-2.0.ebuild [deleted file]

index bd7d1f05fe433f243444d85f01203ded64e3d127..5f7a0a616455c89d728d6acf493cfedd9b683bff 100644 (file)
@@ -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 (file)
index 4d371e2..0000000
+++ /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
-}