mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
38 lines
867 B
Makefile
38 lines
867 B
Makefile
# New ports collection makefile for: md5deep
|
|
# Date created: 15 July 2004
|
|
# Whom: Frank Laszlo <laszlof@vonostingroup.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= md5deep
|
|
PORTVERSION= 1.12
|
|
CATEGORIES= security
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= laszlof@vonostingroup.com
|
|
COMMENT= Program to compute various message digests recursively
|
|
|
|
ALL_TARGET= unix
|
|
USE_GMAKE= yes
|
|
|
|
MAN1= md5deep.1
|
|
MLINKS= md5deep.1 sha1deep.1 md5deep.1 sha256deep.1 \
|
|
md5deep.1 whirlpooldeep.1 md5deep.1 tigerdeep.1
|
|
|
|
PLIST_FILES= bin/md5deep bin/sha1deep bin/sha256deep \
|
|
bin/whirlpooldeep bin/tigerdeep
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 500000
|
|
BROKEN= "Does not compile on FreeBSD 4.x"
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's!/usr/local!${PREFIX}!' \
|
|
-e 's!-Wall -O2!$(CFLAGS)!' ${WRKSRC}/Makefile
|
|
|
|
.include <bsd.port.post.mk>
|