summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-08-16 01:14:13 +0000
committerMike Frysinger <vapier@gentoo.org>2008-08-16 01:14:13 +0000
commitbecdb5fe49c4e7a0a0af12642f156ed30079961f (patch)
tree5a37219b7bb65e19371c36242e866bffc193e619 /app-crypt/pdfcrack
parentVersion bump. (diff)
downloadgentoo-2-becdb5fe49c4e7a0a0af12642f156ed30079961f.tar.gz
gentoo-2-becdb5fe49c4e7a0a0af12642f156ed30079961f.tar.bz2
gentoo-2-becdb5fe49c4e7a0a0af12642f156ed30079961f.zip
old
Diffstat (limited to 'app-crypt/pdfcrack')
-rw-r--r--app-crypt/pdfcrack/files/pdfcrack-0.9-build.patch27
-rw-r--r--app-crypt/pdfcrack/pdfcrack-0.9.ebuild25
2 files changed, 0 insertions, 52 deletions
diff --git a/app-crypt/pdfcrack/files/pdfcrack-0.9-build.patch b/app-crypt/pdfcrack/files/pdfcrack-0.9-build.patch
deleted file mode 100644
index 4dba6d9341b2..000000000000
--- a/app-crypt/pdfcrack/files/pdfcrack-0.9-build.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-just use implicit rules so correct variables get used
-
---- Makefile
-+++ Makefile
-@@ -1,20 +1,13 @@
--CFLAGS= -Wall -Wshadow -Wwrite-strings -Wsign-compare -Wfloat-equal \
-+CFLAGS+= -Wall -Wshadow -Wwrite-strings -Wsign-compare -Wfloat-equal \
- -Wconversion -Wmissing-noreturn -Wbad-function-cast \
-- -Wmissing-prototypes -Winline -Wredundant-decls -O3
-+ -Wmissing-prototypes -Winline -Wredundant-decls
-
- all: pdfcrack
-
- pdfcrack: main.o rc4.o md5.o pdfcrack.o pdfparser.o passwords.o common.o \
- benchmark.o
-- gcc $(CFLAGS) -o $@ $+
-- strip $@
-
- pdfreader: pdfparser.o pdfreader.o common.o
-- gcc $(CFLAGS) -o $@ $+
-- strip $@
-
- clean:
- rm -f pdfcrack pdfreader testreader *.o
--
--%.o: %.c
-- gcc $(CFLAGS) -c -o $@ $+
diff --git a/app-crypt/pdfcrack/pdfcrack-0.9.ebuild b/app-crypt/pdfcrack/pdfcrack-0.9.ebuild
deleted file mode 100644
index f708464c854c..000000000000
--- a/app-crypt/pdfcrack/pdfcrack-0.9.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/pdfcrack/pdfcrack-0.9.ebuild,v 1.1 2008/03/22 03:04:07 vapier Exp $
-
-inherit eutils
-
-DESCRIPTION="Tool for recovering passwords and content from PDF-files"
-HOMEPAGE="http://pdfcrack.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-build.patch
-}
-
-src_install() {
- dobin pdfcrack || die
- dodoc changelog README TODO
-}