diff options
author | ade <ade@FreeBSD.org> | 2004-03-14 06:17:56 +0000 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2004-03-14 06:17:56 +0000 |
commit | 9291e9a32f6612ca0d4f25bdcb5c417e0451d313 (patch) | |
tree | 545e55afde412d844a25f5c03d6d51b17ceeebb9 /converters | |
parent | a8a89c37fe338cbff0192ceeef27ccf7a13714a5 (diff) | |
download | FreeBSD-ports-9291e9a32f6612ca0d4f25bdcb5c417e0451d313.zip FreeBSD-ports-9291e9a32f6612ca0d4f25bdcb5c417e0451d313.tar.gz |
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.
Diffstat (limited to 'converters')
-rw-r--r-- | converters/enca/Makefile | 2 | ||||
-rw-r--r-- | converters/fribidi/Makefile | 2 | ||||
-rw-r--r-- | converters/libiconv/Makefile | 2 | ||||
-rw-r--r-- | converters/mimelib/Makefile | 2 | ||||
-rw-r--r-- | converters/recode/Makefile | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/converters/enca/Makefile b/converters/enca/Makefile index adc83fd..c3edb59 100644 --- a/converters/enca/Makefile +++ b/converters/enca/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= iconv.3:${PORTSDIR}/converters/libiconv USE_GNOME= pkgconfig USE_BZIP2= yes USE_GMAKE= yes -USE_LIBTOOL= yes +USE_LIBTOOL_VER= 13 USE_REINPLACE= yes INSTALLS_SHLIB= yes CONFIGURE_ARGS= --with-html-dir=${PREFIX}/share/doc/enca \ diff --git a/converters/fribidi/Makefile b/converters/fribidi/Makefile index 506963f..28d1506 100644 --- a/converters/fribidi/Makefile +++ b/converters/fribidi/Makefile @@ -16,7 +16,7 @@ MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= gnome@FreeBSD.org COMMENT= A Free Implementation of the Unicode Bidirectional Algorithm -USE_LIBTOOL= yes +USE_LIBTOOL_VER= 13 USE_GNOME= gnomehack pkgconfig INSTALLS_SHLIB= yes diff --git a/converters/libiconv/Makefile b/converters/libiconv/Makefile index 13c6fbc..dd34b00 100644 --- a/converters/libiconv/Makefile +++ b/converters/libiconv/Makefile @@ -16,7 +16,7 @@ MAINTAINER= gnome@FreeBSD.org COMMENT= A character set conversion library USE_REINPLACE= yes -USE_LIBTOOL= yes +USE_LIBTOOL_VER= 13 USE_GNOME= gnometarget LIBTOOLFILES= configure libcharset/configure CONFIGURE_ARGS= --enable-static \ diff --git a/converters/mimelib/Makefile b/converters/mimelib/Makefile index d62a573..cfb65ae 100644 --- a/converters/mimelib/Makefile +++ b/converters/mimelib/Makefile @@ -16,7 +16,7 @@ COMMENT= C++ class library for manipulating messages in MIME format CONFLICTS= kdenetwork-3.1.* -USE_LIBTOOL= yes +USE_LIBTOOL_VER= 13 INSTALLS_SHLIB= yes .include <bsd.port.mk> diff --git a/converters/recode/Makefile b/converters/recode/Makefile index dc9b70b..a09397a 100644 --- a/converters/recode/Makefile +++ b/converters/recode/Makefile @@ -16,7 +16,7 @@ MAINTAINER= demon@FreeBSD.org COMMENT= Converts files between character sets and usages USE_GETTEXT= yes -USE_LIBTOOL= yes +USE_LIBTOOL_VER= 13 USE_PERL5= yes INSTALLS_SHLIB= yes CONFIGURE_ARGS= --without-included-gettext |