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.
37 lines
784 B
Makefile
37 lines
784 B
Makefile
# New ports collection makefile for: rtpmon
|
|
# Date created: 1 November 1996
|
|
# Whom: Bill Fenner <fenner@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rtpmon
|
|
PORTVERSION= 1.0a7
|
|
PORTREVISION= 1
|
|
CATEGORIES= mbone tk83
|
|
MASTER_SITES= ftp://mm-ftp.cs.berkeley.edu/pub/rtpmon/
|
|
|
|
MAINTAINER= fenner@FreeBSD.org
|
|
COMMENT= A program to montior loss in multicast sessions
|
|
|
|
LIB_DEPENDS= tk83.1:${PORTSDIR}/x11-toolkits/tk83
|
|
|
|
USE_AUTOTOOLS= autoconf:253:env
|
|
GNU_CONFIGURE= yes
|
|
USE_X_PREFIX= yes
|
|
MAN1= rtpmon.1
|
|
PLIST_FILES= bin/rtpmon
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} >= 501000
|
|
BROKEN= "Does not compile on FreeBSD ${OSVERSION}"
|
|
.endif
|
|
|
|
pre-configure:
|
|
@cd ${WRKSRC}; ${CHMOD} +w configure; ${AUTOCONF}
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${PREFIX}/bin/rtpmon
|
|
|
|
.include <bsd.port.post.mk>
|