39 lines
941 B
Makefile
39 lines
941 B
Makefile
# New ports collection makefile for: autotools
|
|
# Date created: 14th April 2007
|
|
# Whom: Ade Lovett <ade@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= autotools
|
|
PORTVERSION= 20101016
|
|
CATEGORIES= devel
|
|
MASTER_SITES= # none
|
|
DISTFILES= # none
|
|
|
|
# note: before committing to this port, contact portmgr to arrange for an
|
|
# experimental ports run. Untested commits may be backed out at portmgr's
|
|
# discretion.
|
|
MAINTAINER= autotools@FreeBSD.org
|
|
COMMENT= Autotools meta-port
|
|
|
|
RUN_DEPENDS= libtool:${PORTSDIR}/devel/libtool22
|
|
|
|
PLIST_FILES= share/${PORTNAME}
|
|
NO_BUILD= yes
|
|
NO_FETCH= yes
|
|
|
|
AVAIL_AUTOCONF= 2.13 2.68
|
|
AVAIL_AUTOMAKE= 1.4 1.11
|
|
|
|
.for VER in ${AVAIL_AUTOCONF}
|
|
RUN_DEPENDS+= autoconf-${VER}:${PORTSDIR}/devel/autoconf${VER:C/\.//}
|
|
.endfor
|
|
|
|
.for VER in ${AVAIL_AUTOMAKE}
|
|
RUN_DEPENDS+= automake-${VER}:${PORTSDIR}/devel/automake${VER:C/\.//}
|
|
.endfor
|
|
|
|
do-install:
|
|
@${ECHO_CMD} "Placeholder file" > ${PREFIX}/${PLIST_FILES}
|
|
|
|
.include <bsd.port.mk>
|