diff options
author | marcus <marcus@FreeBSD.org> | 2004-07-10 01:43:11 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-07-10 01:43:11 +0800 |
commit | 5cc9328814fb9b8e64ff3588af7e6031c1d3514b (patch) | |
tree | df0b6bb8e4e84920da9881d421090dc67f70c629 /misc | |
parent | e058c31decaf84a24b7ab7306f65221b33ada080 (diff) | |
download | freebsd-ports-gnome-5cc9328814fb9b8e64ff3588af7e6031c1d3514b.tar.gz freebsd-ports-gnome-5cc9328814fb9b8e64ff3588af7e6031c1d3514b.tar.zst freebsd-ports-gnome-5cc9328814fb9b8e64ff3588af7e6031c1d3514b.zip |
Apply a big libtool patch to allow porters to use the libtool installed by
the libtoolX ports instead of the one included with each port. Ports that
set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of
the included version. To restore previous behavior, use the new macro,
USE_INC_LIBTOOL_VER. Both macros accept the same argument: a libtool version.
For example, to use the ports version of libtool-1.5, add the following to
your Makefile:
USE_LIBTOOL_VER= 15
To use the included version of libtool with extra hacks provided by
libtool-1.5, add the following to your Makefile:
USE_INC_LIBTOOL_VER= 15
With this change, ports that had to add additional libtool hacks to prevent
.la files from being installed or to fix certain threading issues can now
delete those hacks (after appropriate testing, of course).
PR: 63944
Based on work by:eik and marcus
Approved by: ade (autotools maintainer)
Tested by: kris on pointyhat
Bound to be hidden problems: You bet
Diffstat (limited to 'misc')
-rw-r--r-- | misc/gaim-guifications/Makefile | 2 | ||||
-rw-r--r-- | misc/pybliographer/Makefile | 2 | ||||
-rw-r--r-- | misc/skyutils/Makefile | 2 | ||||
-rw-r--r-- | misc/talkfilters/Makefile | 2 | ||||
-rw-r--r-- | misc/xfce4-iconbox/Makefile | 2 | ||||
-rw-r--r-- | misc/xfce4-weather-plugin/Makefile | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/misc/gaim-guifications/Makefile b/misc/gaim-guifications/Makefile index 9663d752d6e0..d693b8465151 100644 --- a/misc/gaim-guifications/Makefile +++ b/misc/gaim-guifications/Makefile @@ -21,6 +21,6 @@ RUN_DEPENDS= gaim:${PORTSDIR}/net/gaim USE_X_PREFIX= yes USE_GMAKE= yes USE_GNOME= gnomeprefix gnomehack lthack gtk20 -USE_LIBTOOL_VER=13 +USE_INC_LIBTOOL_VER=13 .include <bsd.port.mk> diff --git a/misc/pybliographer/Makefile b/misc/pybliographer/Makefile index d87b6a23468c..8ed3d9f26251 100644 --- a/misc/pybliographer/Makefile +++ b/misc/pybliographer/Makefile @@ -23,7 +23,7 @@ RUN_DEPENDS= ${PYTHON_SITELIBDIR}/gtk-1.2/_gnomemodule.so:${PORTSDIR}/x11-toolki USE_GNOME= glib12 gnomehack gnomeprefix USE_PYTHON= yes USE_X_PREFIX= yes -USE_LIBTOOL_VER=13 +USE_INC_LIBTOOL_VER=13 USE_REINPLACE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" \ diff --git a/misc/skyutils/Makefile b/misc/skyutils/Makefile index d671a8dbf224..daf6a1a82b65 100644 --- a/misc/skyutils/Makefile +++ b/misc/skyutils/Makefile @@ -14,7 +14,7 @@ MAINTAINER= machiel_mastenbroek@hotmail.com COMMENT= A library required by smssend (same author) USE_AUTOCONF_VER?=259 -USE_LIBTOOL_VER=13 +USE_INC_LIBTOOL_VER=13 INSTALLS_SHLIB= yes .include <bsd.port.mk> diff --git a/misc/talkfilters/Makefile b/misc/talkfilters/Makefile index 9e46daf5b220..edb8fb607b90 100644 --- a/misc/talkfilters/Makefile +++ b/misc/talkfilters/Makefile @@ -15,7 +15,7 @@ COMMENT= Set of filters to convert English text to various stereotyped dialects CONFLICTS= jive* chef* -USE_LIBTOOL_VER=13 +USE_INC_LIBTOOL_VER=13 CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} INSTALLS_SHLIB= yes diff --git a/misc/xfce4-iconbox/Makefile b/misc/xfce4-iconbox/Makefile index a977e7e95876..cb5b440118d5 100644 --- a/misc/xfce4-iconbox/Makefile +++ b/misc/xfce4-iconbox/Makefile @@ -23,7 +23,7 @@ LIB_DEPENDS= xfce4util.1:${PORTSDIR}/x11/libxfce4util \ USE_GETTEXT= yes USE_GNOME= gtk20 USE_X_PREFIX= yes -USE_LIBTOOL_VER=15 +USE_INC_LIBTOOL_VER=15 INSTALLS_SHLIB= yes CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} CONFIGURE_ENV= CFLAGS=-I${LOCALBASE}/include \ diff --git a/misc/xfce4-weather-plugin/Makefile b/misc/xfce4-weather-plugin/Makefile index d58026bc641e..fd207a12952d 100644 --- a/misc/xfce4-weather-plugin/Makefile +++ b/misc/xfce4-weather-plugin/Makefile @@ -23,7 +23,7 @@ RUN_DEPENDS= xfce4-panel:${PORTSDIR}/x11-wm/xfce4-panel USE_BZIP2= yes USE_GNOME= gtk20 USE_X_PREFIX= yes -USE_LIBTOOL_VER=13 +USE_INC_LIBTOOL_VER=13 INSTALLS_SHLIB= yes CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} |