Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 10 Aug 2014 19:26:38 +0000 (UTC)
From:      Tijl Coosemans <tijl@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r364561 - in head: graphics/gexiv2 math/libtommath multimedia/handbrake multimedia/xbmc security/libtomcrypt sysutils/heartbeat textproc/exmpp x11-toolkits/xmhtml
Message-ID:  <53e7c76f.2827.4580a701@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tijl
Date: Sun Aug 10 19:26:38 2014
New Revision: 364561
URL: http://svnweb.freebsd.org/changeset/ports/364561
QAT: https://qat.redports.org/buildarchive/r364561/

Log:
  Replace some dependencies on libtool with USES=libtool:build or a
  dependency on libtoolize

Modified:
  head/graphics/gexiv2/Makefile
  head/math/libtommath/Makefile
  head/multimedia/handbrake/Makefile
  head/multimedia/xbmc/Makefile
  head/security/libtomcrypt/Makefile
  head/sysutils/heartbeat/Makefile
  head/textproc/exmpp/Makefile
  head/x11-toolkits/xmhtml/Makefile

Modified: head/graphics/gexiv2/Makefile
==============================================================================
--- head/graphics/gexiv2/Makefile	Sun Aug 10 19:18:14 2014	(r364560)
+++ head/graphics/gexiv2/Makefile	Sun Aug 10 19:26:38 2014	(r364561)
@@ -14,11 +14,10 @@ COMMENT=	GObject-based wrapper around Ex
 
 LICENSE=	GPLv2
 
-BUILD_DEPENDS=	libtool:${PORTSDIR}/devel/libtool \
-		gm4:${PORTSDIR}/devel/m4
+BUILD_DEPENDS=	gm4:${PORTSDIR}/devel/m4
 LIB_DEPENDS=	libexiv2.so:${PORTSDIR}/graphics/exiv2
 
-USES=		gmake pkgconfig tar:xz
+USES=		gmake libtool:build pkgconfig tar:xz
 USE_GNOME=	glib20
 USE_LDCONFIG=	yes
 MAKE_ARGS=	REQUIRED_CFLAGS=""

Modified: head/math/libtommath/Makefile
==============================================================================
--- head/math/libtommath/Makefile	Sun Aug 10 19:18:14 2014	(r364560)
+++ head/math/libtommath/Makefile	Sun Aug 10 19:26:38 2014	(r364561)
@@ -2,6 +2,7 @@
 
 PORTNAME=	libtommath
 PORTVERSION=	0.42.0
+PORTREVISION=	1
 CATEGORIES=	math
 MASTER_SITES=	http://libtom.org/files/
 DISTNAME=	ltm-${PORTVERSION}
@@ -28,10 +29,9 @@ post-patch:
 	${REINPLACE_CMD} -e 's|DESTDIR=|DESTDIR?=|' ${WRKSRC}/${MAKEFILE}
 
 .if ${PORT_OPTIONS:MSHARED}
-BUILD_DEPENDS=	libtool:${PORTSDIR}/devel/libtool
-USES+=		libtool:keepla
+USES+=		libtool:build
 USE_LDCONFIG=	yes
-PLIST_FILES+=	lib/libtommath.la lib/libtommath.so.0 lib/libtommath.so
+PLIST_FILES+=	lib/libtommath.so.0 lib/libtommath.so
 MAKEFILE=	makefile.shared
 .else
 MAKEFILE=	makefile

Modified: head/multimedia/handbrake/Makefile
==============================================================================
--- head/multimedia/handbrake/Makefile	Sun Aug 10 19:18:14 2014	(r364560)
+++ head/multimedia/handbrake/Makefile	Sun Aug 10 19:26:38 2014	(r364561)
@@ -28,8 +28,7 @@ COMMENT=	Versatile DVD ripper and video 
 
 LICENSE=	GPLv2
 
-BUILD_DEPENDS=	libtool:${PORTSDIR}/devel/libtool \
-		yasm:${PORTSDIR}/devel/yasm
+BUILD_DEPENDS=	yasm:${PORTSDIR}/devel/yasm
 LIB_DEPENDS=	libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig \
 		libfreetype.so:${PORTSDIR}/print/freetype2 \
 		libfribidi.so:${PORTSDIR}/converters/fribidi \
@@ -47,7 +46,7 @@ LIB_DEPENDS+=	libdvdcss.so.2:${PORTSDIR}
 .endif
 
 GNU_CONFIGURE=	yes
-USES=		gmake iconv libtool pkgconfig
+USES=		gmake iconv libtool:build pkgconfig
 USE_AUTOTOOLS=	autoconf:env automake:env
 USE_PYTHON_BUILD=	yes
 

Modified: head/multimedia/xbmc/Makefile
==============================================================================
--- head/multimedia/xbmc/Makefile	Sun Aug 10 19:18:14 2014	(r364560)
+++ head/multimedia/xbmc/Makefile	Sun Aug 10 19:26:38 2014	(r364561)
@@ -19,7 +19,6 @@ BUILD_DEPENDS=	enca:${PORTSDIR}/converte
 		unzip:${PORTSDIR}/archivers/unzip \
 		nasm:${PORTSDIR}/devel/nasm \
 		gtk-update-icon-cache:${PORTSDIR}/x11-toolkits/gtk20 \
-		libtool:${PORTSDIR}/devel/libtool \
 		swig2.0:${PORTSDIR}/devel/swig20
 LIB_DEPENDS=	libass.so:${PORTSDIR}/multimedia/libass \
 		libboost_thread.so:${PORTSDIR}/devel/boost-libs \
@@ -53,8 +52,8 @@ RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}sqli
 		${PYTHON_PKGNAMEPREFIX}imaging>0:${PORTSDIR}/graphics/py-imaging \
 		xdpyinfo:${PORTSDIR}/x11/xdpyinfo
 
-USES=		gmake iconv:wchar_t libtool pkgconfig
-USE_AUTOTOOLS=	autoconf automake libltdl
+USES=		gmake iconv:wchar_t libtool:build pkgconfig
+USE_AUTOTOOLS=	autoconf:env automake:env libltdl
 GNU_CONFIGURE=	yes
 USE_XORG=	xt xmu xtst
 USE_GL=		glu

Modified: head/security/libtomcrypt/Makefile
==============================================================================
--- head/security/libtomcrypt/Makefile	Sun Aug 10 19:18:14 2014	(r364560)
+++ head/security/libtomcrypt/Makefile	Sun Aug 10 19:26:38 2014	(r364561)
@@ -11,8 +11,6 @@ DISTNAME=	crypt-${PORTVERSION}
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Comprehensive, modular, and portable cryptographic toolkit
 
-BUILD_DEPENDS=	libtool:${PORTSDIR}/devel/libtool
-
 CFLAGS+=	-I${LOCALBASE}/include
 EXTRALIBS=	-L${LOCALBASE}/lib
 MAKEFILE=	makefile.shared
@@ -20,7 +18,7 @@ ALL_TARGET=	library
 MAKE_ARGS=	IGNORE_SPEED=yes INCPATH="${PREFIX}/include" \
 		LIBPATH="${PREFIX}/lib" EXTRALIBS="${EXTRALIBS}"
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
-USES=		gmake libtool tar:bzip2
+USES=		gmake libtool:build tar:bzip2
 
 OPTIONS_DEFINE=		DOCS
 OPTIONS_DEFAULT=	LIBTOMMATH

Modified: head/sysutils/heartbeat/Makefile
==============================================================================
--- head/sysutils/heartbeat/Makefile	Sun Aug 10 19:18:14 2014	(r364560)
+++ head/sysutils/heartbeat/Makefile	Sun Aug 10 19:26:38 2014	(r364561)
@@ -22,7 +22,7 @@ LIB_DEPENDS=	libgnutls.so:${PORTSDIR}/se
 		libuuid.so:${PORTSDIR}/misc/e2fsprogs-libuuid \
 		libxml2.so:${PORTSDIR}/textproc/libxml2
 BUILD_DEPENDS=	bison:${PORTSDIR}/devel/bison
-PATCH_DEPENDS=	libtool:${PORTSDIR}/devel/libtool
+PATCH_DEPENDS=	libtoolize:${PORTSDIR}/devel/libtool
 
 USE_AUTOTOOLS=	autoconf autoheader automake aclocal libltdl libtoolize
 AUTOMAKE_ARGS+=	--add-missing --include-deps --copy

Modified: head/textproc/exmpp/Makefile
==============================================================================
--- head/textproc/exmpp/Makefile	Sun Aug 10 19:18:14 2014	(r364560)
+++ head/textproc/exmpp/Makefile	Sun Aug 10 19:26:38 2014	(r364561)
@@ -10,8 +10,7 @@ COMMENT=	Fast and scalable library for X
 
 LICENSE=	EPL
 
-BUILD_DEPENDS=	erlc:${PORTSDIR}/lang/erlang \
-		libtool:${PORTSDIR}/devel/libtool
+BUILD_DEPENDS=	erlc:${PORTSDIR}/lang/erlang
 RUN_DEPENDS=	erl:${PORTSDIR}/lang/erlang
 LIB_DEPENDS=	libexpat.so:${PORTSDIR}/textproc/expat2 \
 		libxml2.so:${PORTSDIR}/textproc/libxml2
@@ -34,7 +33,7 @@ CONFIGURE_ARGS+=--enable-static=yes \
 		--enable-escaping-using-cdata
 GNU_CONFIGURE_PREFIX=	"${PREFIX}/lib/erlang/lib"
 PLIST_SUB=	VERSION=${PORTVERSION}
-USE_AUTOTOOLS=	autoconf:env automake:env aclocal:env autoheader:env
+USE_AUTOTOOLS=	autoconf:env automake:env libtoolize:env
 USES=		libtool pkgconfig
 
 .include <bsd.port.options.mk>

Modified: head/x11-toolkits/xmhtml/Makefile
==============================================================================
--- head/x11-toolkits/xmhtml/Makefile	Sun Aug 10 19:18:14 2014	(r364560)
+++ head/x11-toolkits/xmhtml/Makefile	Sun Aug 10 19:26:38 2014	(r364561)
@@ -11,11 +11,10 @@ COMMENT=	Motif widget set for displaying
 
 LICENSE=	LGPL20 # (or later)
 
-BUILD_DEPENDS=	libtool:${PORTSDIR}/devel/libtool
 LIB_DEPENDS=	libjpeg.so:${PORTSDIR}/graphics/jpeg \
 		libpng15.so:${PORTSDIR}/graphics/png
 
-USES=		gmake libtool motif pkgconfig tar:tgz
+USES=		gmake libtool:build motif pkgconfig tar:tgz
 USE_XORG=	xft xmu xpm xt
 USE_LDCONFIG=	yes
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?53e7c76f.2827.4580a701>