summaryrefslogtreecommitdiff
path: root/security/john/Makefile
diff options
context:
space:
mode:
authorhubertf <hubertf@pkgsrc.org>2001-03-26 12:40:45 +0000
committerhubertf <hubertf@pkgsrc.org>2001-03-26 12:40:45 +0000
commitc097a7a1c59de46422c31dd4dae1f43c88aab505 (patch)
treee258b45c2cf5b4e20fb9b564f0dec944d5e12255 /security/john/Makefile
parent329153ab6fda1e38a9e3ad41a5f074331fdddd96 (diff)
downloadpkgsrc-c097a7a1c59de46422c31dd4dae1f43c88aab505.tar.gz
Added john-1.6: Unix Password Cracker
John the Ripper is a password cracker, currently available for UNIX, DOS, WinNT/Win95. Its primary purpose is to detect weak UNIX passwords. It has been tested with Linux x86/Alpha/SPARC, FreeBSD x86, OpenBSD x86, Solaris 2.x SPARC and x86, Digital UNIX, AIX, HP-UX, and IRIX. The DOS and Win32 ports are done with DJGPP and Cygnus Developer's Kit, respectively. Package contributed by dawszy@e-lubin.com in private mail.
Diffstat (limited to 'security/john/Makefile')
-rw-r--r--security/john/Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/security/john/Makefile b/security/john/Makefile
new file mode 100644
index 00000000000..61c248db662
--- /dev/null
+++ b/security/john/Makefile
@@ -0,0 +1,28 @@
+# $NetBSD: Makefile,v 1.1.1.1 2001/03/26 12:40:45 hubertf Exp $
+#
+
+DISTNAME= john-1.6
+CATEGORIES= security textproc
+MASTER_SITES= http://www.openwall.com/john/
+
+MAINTAINER= DawS@irc.pl
+HOMEPAGE= http://www.openwall.com/john/
+COMMENT= Unix Password Cracker
+
+WRKSRC= ${WRKDIR}/${DISTNAME}/src
+ALL_TARGET= generic
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/../run/john ${PREFIX}/bin
+ ${INSTALL_DATA_DIR} ${PREFIX}/share/john/
+ ${INSTALL_DATA} ${WRKSRC}/../run/all.chr ${PREFIX}/share/john/
+ ${INSTALL_DATA} ${WRKSRC}/../run/alpha.chr ${PREFIX}/share/john/
+ ${INSTALL_DATA} ${WRKSRC}/../run/digits.chr ${PREFIX}/share/john/
+ ${INSTALL_DATA} ${WRKSRC}/../run/john.ini ${PREFIX}/share/john/
+ ${INSTALL_DATA} ${WRKSRC}/../run/mailer ${PREFIX}/bin
+ ${INSTALL_DATA} ${WRKSRC}/../run/password.lst ${PREFIX}/share/john/
+ ${LN} -sf ${PREFIX}/bin/john ${PREFIX}/bin/unafs
+ ${LN} -sf ${PREFIX}/bin/john ${PREFIX}/bin/unique
+ ${LN} -sf ${PREFIX}/bin/john ${PREFIX}/bin/unshadow
+
+.include "../../mk/bsd.pkg.mk"