diff options
author | Ade Lovett <ade@FreeBSD.org> | 2004-03-14 06:17:56 +0000 |
---|---|---|
committer | Ade Lovett <ade@FreeBSD.org> | 2004-03-14 06:17:56 +0000 |
commit | 3f651573ad3b90cf8e6539c52b4b34a1df543fa6 (patch) | |
tree | 14261786c359f03d9574a1c204f76ddc8ec4db8a /converters | |
parent | 003520276a84300843c37e85ff39f416dec0bd8e (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 '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 adc83fd75826..c3edb599595b 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 506963f4f4fd..28d1506c2107 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 13c6fbc9847e..dd34b0097d2e 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 d62a5738fde4..cfb65aee2959 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 dc9b70b73910..a09397ab7447 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 |