3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
29 lines
609 B
Makefile
29 lines
609 B
Makefile
# New ports collection makefile for: mdw
|
|
# Date created: 5 July 2001
|
|
# Whom: petef@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mdw
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.redbrick.dcu.ie/~colmmacc/mdw/
|
|
|
|
MAINTAINER= petef@FreeBSD.org
|
|
COMMENT= A utility to check the MD5 sum of a webpage
|
|
|
|
USE_AUTOCONF_VER= 213
|
|
USE_REINPLACE= yes
|
|
|
|
MAN1= mdw.1
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's!quite!quiet!g; s!.BR md5sum (1),!!' \
|
|
${WRKSRC}/doc/mdw.1
|
|
|
|
post-install:
|
|
@${MKDIR} ${PREFIX}/share/examples/mdw
|
|
${INSTALL_DATA} ${WRKSRC}/doc/example.sh ${PREFIX}/share/examples/mdw
|
|
|
|
.include <bsd.port.mk>
|