diff options
author | Ade Lovett <ade@FreeBSD.org> | 2007-07-28 06:33:59 +0000 |
---|---|---|
committer | Ade Lovett <ade@FreeBSD.org> | 2007-07-28 06:33:59 +0000 |
commit | 3b3128196e8706c3616c88df7206b4a27f7b8959 (patch) | |
tree | 31433c1d06ed5be6756933b97f6d80a77f17b710 /devel/autotools | |
parent | 8cc5d5476277491942e4695f3ffd43176f7badc6 (diff) | |
download | ports-3b3128196e8706c3616c88df7206b4a27f7b8959.tar.gz ports-3b3128196e8706c3616c88df7206b4a27f7b8959.zip |
Notes
Diffstat (limited to 'devel/autotools')
-rw-r--r-- | devel/autotools/Makefile | 36 | ||||
-rw-r--r-- | devel/autotools/pkg-descr | 2 |
2 files changed, 38 insertions, 0 deletions
diff --git a/devel/autotools/Makefile b/devel/autotools/Makefile new file mode 100644 index 000000000000..748ec7da18c7 --- /dev/null +++ b/devel/autotools/Makefile @@ -0,0 +1,36 @@ +# New ports collection makefile for: autotools +# Date created: 14th April 2007 +# Whom: Ade Lovett <ade@FreeBSD.org> +# +# $FreeBSD$ + +PORTNAME= autotools +PORTVERSION= 20070417 +CATEGORIES= devel +MASTER_SITES= # none +DISTFILES= # none + +MAINTAINER= ade@FreeBSD.org +COMMENT= Autotools meta-port + +RUN_DEPENDS= libtool:${PORTSDIR}/devel/libtool15 + +PLIST_FILES= share/${PORTNAME} +NO_BUILD= yes +NO_FETCH= yes + +AVAIL_AUTOCONF= 2.13 2.53 2.59 2.61 +AVAIL_AUTOMAKE= 1.4 1.5 1.6 1.7 1.8 1.9 1.10 + +.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> diff --git a/devel/autotools/pkg-descr b/devel/autotools/pkg-descr new file mode 100644 index 000000000000..16e941a123dc --- /dev/null +++ b/devel/autotools/pkg-descr @@ -0,0 +1,2 @@ +Simple metaport that brings in all available versions of autoconf, +automake, and libtool. |