app-crypt/pkcrack: cleanup
authorAlon Bar-Lev <alonbl@gentoo.org>
Sun, 12 Jun 2016 02:46:49 +0000 (05:46 +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/pkcrack/pkcrack-1.2.2.ebuild [deleted file]

diff --git a/app-crypt/pkcrack/pkcrack-1.2.2.ebuild b/app-crypt/pkcrack/pkcrack-1.2.2.ebuild
deleted file mode 100644 (file)
index b5923cb..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-inherit toolchain-funcs
-
-DESCRIPTION="PkZip cipher breaker"
-HOMEPAGE="http://www.unix-ag.uni-kl.de/~conrad/krypto/pkcrack.html"
-SRC_URI="http://www.unix-ag.uni-kl.de/~conrad/krypto/pkcrack/${P}.tar.gz"
-
-LICENSE="pkcrack"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="test"
-
-DEPEND="test? ( app-arch/zip[crypt] )"
-RDEPEND="!<app-text/html-xml-utils-5.3"
-
-src_prepare() {
-       cd "${S}/src"
-       sed -i -e "s/^CC=.*/CC=$(tc-getCC)/" \
-               -e "/^CFLAGS=.*/d" \
-               -e "s/CFLAGS/LDFLAGS/" \
-               Makefile
-       sed -i -e "s:void main:int main:" *.c
-}
-
-src_compile() {
-       cd "${S}/src"
-       emake
-}
-
-src_test() {
-       cd "${S}/test"
-       make CC="$(tc-getCC)" all
-}
-
-src_install() {
-       cd "${S}/src"
-       dobin pkcrack zipdecrypt findkey extract makekey
-       dodoc "${S}/doc/"*
-}
-
-pkg_postinst() {
-       elog "Author DEMANDS :-) a postcard be sent to:"
-       elog
-       elog "    Peter Conrad"
-       elog "    Am Heckenberg 1"
-       elog "    56727 Mayen"
-       elog "    Germany"
-       elog
-       elog "See: http://www.unix-ag.uni-kl.de/~conrad/krypto/pkcrack/pkcrack-readme.html"
-}