diff options
Diffstat (limited to 'security/md4coll/Makefile')
-rw-r--r-- | security/md4coll/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/security/md4coll/Makefile b/security/md4coll/Makefile new file mode 100644 index 0000000..21fd9cb --- /dev/null +++ b/security/md4coll/Makefile @@ -0,0 +1,36 @@ +# New ports collection makefile for: md4 collision generator +# Date created: Wed Nov 23 04:51:32 UTC 2005 +# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= md4coll +DISTVERSION= 0.1 +CATEGORIES= security +MASTER_SITES= http://www.stachliu.com/ +DISTNAME= ${PORTNAME}.c +EXTRACT_SUFX= +EXTRACT_ONLY= + +MAINTAINER= lioux@FreeBSD.org +COMMENT= Fast MD4 collision generator + +ONLY_FOR_ARCHS= i386 + +NO_WRKSUBDIR= yes +PLIST_FILES= bin/${PORTNAME} + +post-extract: + @${CP} ${DISTDIR}/${DISTNAME} ${WRKSRC} + +do-build: + ${CC} ${CFLAGS} ${WRKSRC}/${DISTNAME} -o ${WRKSRC}/${PORTNAME} + +do-install: + @${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + +post-install: + @${CAT} ${PKGMESSAGE} + +.include <bsd.port.mk> |