diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2000-02-13 03:25:05 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2000-02-13 03:25:05 +0000 |
commit | b5d1cecde4e6c0dcb132742181e822478f6759af (patch) | |
tree | a5f4ee1240324a616c9004580f7a5eddaac86d39 /security/crack | |
parent | 00b371ce6a59014fd7d6dd1d58740f77e8f8caab (diff) | |
download | ports-b5d1cecde4e6c0dcb132742181e822478f6759af.tar.gz ports-b5d1cecde4e6c0dcb132742181e822478f6759af.zip |
Style nits in the ports I maintain.
Notes
Notes:
svn path=/head/; revision=25734
Diffstat (limited to 'security/crack')
-rw-r--r-- | security/crack/Makefile | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/security/crack/Makefile b/security/crack/Makefile index 30dc25e05d2e..9f32c6f6c4b5 100644 --- a/security/crack/Makefile +++ b/security/crack/Makefile @@ -1,9 +1,9 @@ # ex:ts=8 # Ports collection makefile for: Crack -# Version required: 5.0 -# Date created: 12 Jan 1997 -# Whom: David O'Brien <obrien@FreeBSD.org> -# Whom: Yukihiro Nakai <nakai@mlab.t.u-tokyo.ac.jp> +# Version required: 5.0 +# Date created: 12 Jan 1997 +# Whom: David O'Brien <obrien@FreeBSD.org> +# & Yukihiro Nakai <nakai@mlab.t.u-tokyo.ac.jp> # # $FreeBSD$ # @@ -16,7 +16,7 @@ MASTER_SITES= ftp://ftp.win.tue.nl/pub/security/ \ ftp://ftp.auscert.org.au/pub/coast/mirrors/cert.org/tools/crack/ \ ftp://ftp.riken.go.jp/pub/net/cert_security_tools/crack/ -MAINTAINER= obrien@FreeBSD.org +MAINTAINER= obrien@FreeBSD.org RESTRICTED= "contains crypto (libdes)" WRKSRC= ${WRKDIR}/c50a @@ -31,13 +31,13 @@ pre-configure: pre-build: @(if [ ! -f /usr/share/dict/words ];then \ - ${ECHO_MSG} "You may want to install the dict distribution into /usr/share/dict" ; \ - ${ECHO_MSG} "to increase the size of the cracking dictionary." ; \ + ${ECHO_MSG} "You may want to install the dict distribution into /usr/share/dict" ; \ + ${ECHO_MSG} "to increase the size of the cracking dictionary." ; \ fi) do-build: - (cd ${WRKSRC} ; ./Crack -makeonly) - (cd ${WRKSRC} ; ./Crack -makedict) + cd ${WRKSRC} ; ./Crack -makeonly + cd ${WRKSRC} ; ./Crack -makedict .if !defined(USE_DES) @#(cd ${WRKSRC} ; ./Crack -fgnd -fmt bsd ${FILESDIR}/pw-md5.test) .endif @@ -45,6 +45,6 @@ do-build: do-install: @${MKDIR} ${PREFIX}/crack @${RM} -f ${WRKSRC}/Run/* - @(cd ${WRKSRC} ; tar cf - . | (cd ${PREFIX}/crack; tar xfBp -)) + @cd ${WRKSRC} ; tar cf - . | (cd ${PREFIX}/crack; tar xfBp -) .include <bsd.port.mk> |