[Midnightbsd-cvs] mports: mports/devel:
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Mon Mar 24 14:03:31 EDT 2008
Log Message:
-----------
Modified Files:
--------------
mports/devel:
Makefile (r1.201 -> r1.202)
Added Files:
-----------
mports/devel/autotools:
Makefile (r1.1)
pkg-descr (r1.1)
-------------- next part --------------
Index: Makefile
===================================================================
RCS file: /home/cvs/mports/devel/Makefile,v
retrieving revision 1.201
retrieving revision 1.202
diff -L devel/Makefile -L devel/Makefile -u -r1.201 -r1.202
--- devel/Makefile
+++ devel/Makefile
@@ -22,6 +22,7 @@
SUBDIR += automake15
SUBDIR += automake19
SUBDIR += automake110
+ SUBDIR += autotools
SUBDIR += bison
SUBDIR += bison2
SUBDIR += boehm-gc
--- /dev/null
+++ devel/autotools/pkg-descr
@@ -0,0 +1,2 @@
+Simple metaport that brings in all available versions of autoconf,
+automake, and libtool.
--- /dev/null
+++ devel/autotools/Makefile
@@ -0,0 +1,37 @@
+# New ports collection makefile for: autotools
+# Date created: 14th April 2007
+# Whom: Ade Lovett <ade at FreeBSD.org>
+#
+# $MidnightBSD: mports/devel/autotools/Makefile,v 1.1 2008/03/24 18:03:29 laffer1 Exp $
+# $FreeBSD: ports/devel/autotools/Makefile,v 1.2 2007/09/30 04:46:42 linimon Exp $
+
+PORTNAME= autotools
+PORTVERSION= 20070905
+CATEGORIES= devel
+MASTER_SITES= # none
+DISTFILES= # none
+
+MAINTAINER= ports at MidnightBSD.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.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>
More information about the Midnightbsd-cvs
mailing list