summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorAde Lovett <ade@FreeBSD.org>2004-03-14 06:17:56 +0000
committerAde Lovett <ade@FreeBSD.org>2004-03-14 06:17:56 +0000
commit3f651573ad3b90cf8e6539c52b4b34a1df543fa6 (patch)
tree14261786c359f03d9574a1c204f76ddc8ec4db8a /lang
parentBROKEN on amd64: Tries to link non-PIC libnet.a into PIC shared library (diff)
Whoa there, boy, that's a mighty big commit y'all have there...
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
Notes
Notes: svn path=/head/; revision=103963
Diffstat (limited to 'lang')
-rw-r--r--lang/chicken/Makefile2
-rw-r--r--lang/cim/Makefile2
-rw-r--r--lang/clips/Makefile2
-rw-r--r--lang/dylan/Makefile2
-rw-r--r--lang/elk/Makefile2
-rw-r--r--lang/emacs-lisp-intro/Makefile2
-rw-r--r--lang/forth/Makefile2
-rw-r--r--lang/gcl/Makefile2
-rw-r--r--lang/gnustep-base/Makefile2
-rw-r--r--lang/libutils/Makefile2
-rw-r--r--lang/ml-pnet/Makefile2
-rw-r--r--lang/mono/Makefile2
-rw-r--r--lang/njs/Makefile2
-rw-r--r--lang/oo2c/Makefile2
-rw-r--r--lang/pnet-base/Makefile2
-rw-r--r--lang/pnetc/Makefile2
-rw-r--r--lang/pnetlib/Makefile2
-rw-r--r--lang/tensile/Makefile2
18 files changed, 18 insertions, 18 deletions
diff --git a/lang/chicken/Makefile b/lang/chicken/Makefile
index 89648ad50753..40c69effcffa 100644
--- a/lang/chicken/Makefile
+++ b/lang/chicken/Makefile
@@ -16,7 +16,7 @@ COMMENT= A Scheme-to-C compiler
LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre
USE_REINPLACE= yes
-USE_LIBTOOL= yes
+USE_LIBTOOL_VER=13
USE_GNOME= lthack
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"
INSTALLS_SHLIB= yes
diff --git a/lang/cim/Makefile b/lang/cim/Makefile
index d91b647680ec..0ac42dce4858 100644
--- a/lang/cim/Makefile
+++ b/lang/cim/Makefile
@@ -13,7 +13,7 @@ MASTER_SITES= http://www.gtlib.cc.gatech.edu/pub/fink/
MAINTAINER= ports@FreeBSD.org
COMMENT= Compiler for the SIMULA programming language
-USE_LIBTOOL= yes
+USE_LIBTOOL_VER=13
INSTALLS_SHLIB= yes
MAN1= cim.1
diff --git a/lang/clips/Makefile b/lang/clips/Makefile
index a91d6e1e2605..40b6e62a30ae 100644
--- a/lang/clips/Makefile
+++ b/lang/clips/Makefile
@@ -16,7 +16,7 @@ EXTRACT_SUFX= .tgz
MAINTAINER= ports@dougdidit.com
COMMENT= CLIPS is a productive development and delivery expert system tool
-USE_AUTOCONF= yes
+USE_AUTOCONF_VER= 213
WRKSRC= ${WRKDIR}/${PORTNAME}${PORTVERSION}
USE_GMAKE= yes
INSTALLS_SHLIB= yes
diff --git a/lang/dylan/Makefile b/lang/dylan/Makefile
index 906445f6cc5a..e3338a71e0a0 100644
--- a/lang/dylan/Makefile
+++ b/lang/dylan/Makefile
@@ -51,7 +51,7 @@ ONLY_FOR_ARCHS= i386
INSTALLS_SHLIB= yes
LDCONFIG_DIRS= %%PREFIX%%/lib/dylan/%%DYLANVER%%/%%DYLANARCH%%
USE_GMAKE= yes
-USE_LIBTOOL= yes
+USE_LIBTOOL_VER=13
MAKEFILE= GNUmakefile
ALL_TARGET= default
WANT_GNOME= yes
diff --git a/lang/elk/Makefile b/lang/elk/Makefile
index c3be086138f9..c5d000cae84b 100644
--- a/lang/elk/Makefile
+++ b/lang/elk/Makefile
@@ -19,7 +19,7 @@ LIB_DEPENDS= gdbm.3:${PORTSDIR}/databases/gdbm \
USE_BZIP2= yes
USE_MOTIF= yes
-USE_LIBTOOL= yes
+USE_LIBTOOL_VER=13
LIBTOOLFLAGS= # none
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
diff --git a/lang/emacs-lisp-intro/Makefile b/lang/emacs-lisp-intro/Makefile
index c6eb1e3b0da2..92d0b56702ba 100644
--- a/lang/emacs-lisp-intro/Makefile
+++ b/lang/emacs-lisp-intro/Makefile
@@ -14,6 +14,6 @@ MASTER_SITE_SUBDIR= emacs
MAINTAINER= amakawa@jp.FreeBSD.org
COMMENT= An introduction to Emacs Lisp programming
-USE_AUTOCONF= yes
+USE_AUTOCONF_VER= 213
.include <bsd.port.mk>
diff --git a/lang/forth/Makefile b/lang/forth/Makefile
index 9f7200ef81d6..adc7336ff54c 100644
--- a/lang/forth/Makefile
+++ b/lang/forth/Makefile
@@ -19,7 +19,7 @@ WRKSRC= ${WRKDIR}/${DISTNAME}/src
USE_BZIP2= yes
USE_GMAKE= yes
-USE_LIBTOOL= yes
+USE_LIBTOOL_VER=13
CONFIGURE_ARGS= --disable-float
MAN1= pfe.1
diff --git a/lang/gcl/Makefile b/lang/gcl/Makefile
index b3fc7abd43f2..acf1dfab5d8e 100644
--- a/lang/gcl/Makefile
+++ b/lang/gcl/Makefile
@@ -20,7 +20,7 @@ LIB_DEPENDS= tk84.1:${PORTSDIR}/x11-toolkits/tk84
ONLY_FOR_ARCHS= i386 sparc64
GNU_CONFIGURE= yes
-USE_AUTOCONF= yes
+USE_AUTOCONF_VER= 213
USE_GMAKE= yes
USE_XLIB= yes
CONFIGURE_ARGS=--prefix=${PREFIX} \
diff --git a/lang/gnustep-base/Makefile b/lang/gnustep-base/Makefile
index 041d1bc5b36f..b71762f6c1a6 100644
--- a/lang/gnustep-base/Makefile
+++ b/lang/gnustep-base/Makefile
@@ -24,7 +24,7 @@ LIB_DEPENDS+= xml2.5:${PORTSDIR}/textproc/libxml2
PREFIX= ${LOCALBASE}/GNUstep
NO_MTREE= yes
ETCDIR= ${LOCALBASE}/etc
-USE_AUTOCONF= yes
+USE_AUTOCONF_VER= 213
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-procfs
CONFIGURE_TARGET=
diff --git a/lang/libutils/Makefile b/lang/libutils/Makefile
index 1c58a739df87..0c0fc31d339d 100644
--- a/lang/libutils/Makefile
+++ b/lang/libutils/Makefile
@@ -18,7 +18,7 @@ MAINTAINER= ports@FreeBSD.org
COMMENT= Support lib for Tensile/NSL
USE_GMAKE= yes
-USE_LIBTOOL= yes
+USE_LIBTOOL_VER=13
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
MAKE_ARGS= CFLAGS="${CFLAGS}"
INSTALLS_SHLIB= yes
diff --git a/lang/ml-pnet/Makefile b/lang/ml-pnet/Makefile
index 9241d16f0457..0f8e9c84effd 100644
--- a/lang/ml-pnet/Makefile
+++ b/lang/ml-pnet/Makefile
@@ -17,7 +17,7 @@ BUILD_DEPENDS= cscc:${PORTSDIR}/lang/pnet-base \
${LOCALBASE}/lib/cscc/lib/libXsharpSupport.so.0:${PORTSDIR}/lang/pnetlib
RUN_DEPENDS= ${LOCALBASE}/lib/cscc/lib/libXsharpSupport.so.0:${PORTSDIR}/lang/pnetlib
-USE_LIBTOOL= yes
+USE_LIBTOOL_VER=13
USE_GMAKE= yes
STRIP= # Nothing to be stripped.
diff --git a/lang/mono/Makefile b/lang/mono/Makefile
index 32050f74934c..7b4f857387a9 100644
--- a/lang/mono/Makefile
+++ b/lang/mono/Makefile
@@ -13,7 +13,7 @@ MASTER_SITES= http://www.go-mono.com/archive/
MAINTAINER= gnome@FreeBSD.org
COMMENT= An open source implementation of .NET Development Framework
-USE_LIBTOOL= yes
+USE_LIBTOOL_VER=13
USE_REINPLACE= yes
USE_BISON= yes
USE_GNOME= gnomehack glib20 pkgconfig
diff --git a/lang/njs/Makefile b/lang/njs/Makefile
index 8599573ae27e..9c37328d3aea 100644
--- a/lang/njs/Makefile
+++ b/lang/njs/Makefile
@@ -20,7 +20,7 @@ COMMENT= NJS (NGS) is a standalone JavaScript/ECMAScript interpreter
CONFLICTS= js-1.5.*
GNU_CONFIGURE= yes
-USE_LIBTOOL= yes
+USE_LIBTOOL_VER=13
.if defined(NOPORTDOCS)
USE_REINPLACE= yes
.endif
diff --git a/lang/oo2c/Makefile b/lang/oo2c/Makefile
index e4045f3a2ef2..161fdc49b678 100644
--- a/lang/oo2c/Makefile
+++ b/lang/oo2c/Makefile
@@ -16,7 +16,7 @@ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} gc4.14.tar.gz
MAINTAINER= ob@breuninger.org
COMMENT= Optimizing Oberon-2 compiler of University of Kaiserslautern, Germany
-USE_LIBTOOL= yes
+USE_LIBTOOL_VER=13
CONFIGURE_ENV+= INSTALL_SCRIPT="${INSTALL_SCRIPT}"
MAN1= oo2c.1 oob.1 ooef.1 oocn.1 oowhereis.1
diff --git a/lang/pnet-base/Makefile b/lang/pnet-base/Makefile
index ac270dfda4de..83f6f785d322 100644
--- a/lang/pnet-base/Makefile
+++ b/lang/pnet-base/Makefile
@@ -22,7 +22,7 @@ LIB_DEPENDS= ffi.2:${PORTSDIR}/devel/libffi
USE_XLIB= yes
.endif
-USE_LIBTOOL= yes
+USE_LIBTOOL_VER=13
USE_GMAKE= yes
USE_REINPLACE= yes
diff --git a/lang/pnetc/Makefile b/lang/pnetc/Makefile
index b8cf785f2532..689138fb7357 100644
--- a/lang/pnetc/Makefile
+++ b/lang/pnetc/Makefile
@@ -17,7 +17,7 @@ BUILD_DEPENDS= cscc:${PORTSDIR}/lang/pnet-base \
${LOCALBASE}/lib/cscc/lib/libXsharpSupport.so.0:${PORTSDIR}/lang/pnetlib
RUN_DEPENDS= ${LOCALBASE}/lib/cscc/lib/libXsharpSupport.so.0:${PORTSDIR}/lang/pnetlib
-USE_LIBTOOL= yes
+USE_LIBTOOL_VER=13
USE_GMAKE= yes
STRIP= # Nothing to be stripped.
diff --git a/lang/pnetlib/Makefile b/lang/pnetlib/Makefile
index 9392146d6753..805122fd8891 100644
--- a/lang/pnetlib/Makefile
+++ b/lang/pnetlib/Makefile
@@ -21,7 +21,7 @@ BUILD_DEPENDS= cscc:${PORTSDIR}/lang/pnet-base \
USE_XLIB= yes
.endif
-USE_LIBTOOL= yes
+USE_LIBTOOL_VER=13
USE_GMAKE= yes
STRIP= # Nothing to be stripped.
diff --git a/lang/tensile/Makefile b/lang/tensile/Makefile
index 4bc693a16ea4..f785fbbbb619 100644
--- a/lang/tensile/Makefile
+++ b/lang/tensile/Makefile
@@ -23,7 +23,7 @@ LIB_DEPENDS= utils.1:${PORTSDIR}/lang/libutils \
USE_REINPLACE= yes
USE_GMAKE= yes
-USE_LIBTOOL= yes
+USE_LIBTOOL_VER=13
LIBTOOLFLAGS= # none
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \