mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
54a0b86543
in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
30 lines
615 B
Makefile
30 lines
615 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_AUTOTOOLS= autoconf: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>
|