Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 5 Oct 2014 10:09:22 +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: r370050 - head/dns/ldns
Message-ID:  <201410051009.s95A9M5h095853@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tijl
Date: Sun Oct  5 10:09:21 2014
New Revision: 370050
URL: https://svnweb.freebsd.org/changeset/ports/370050
QAT: https://qat.redports.org/buildarchive/r370050/

Log:
  Avoid dependency on devel/libtool

Modified:
  head/dns/ldns/Makefile

Modified: head/dns/ldns/Makefile
==============================================================================
--- head/dns/ldns/Makefile	Sun Oct  5 10:06:35 2014	(r370049)
+++ head/dns/ldns/Makefile	Sun Oct  5 10:09:21 2014	(r370050)
@@ -14,8 +14,8 @@ COMMENT=	Library for programs conforming
 LICENSE=	BSD3CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
+GNU_CONFIGURE=	yes
 USES=		gmake libtool
-USE_AUTOTOOLS=	libtoolize
 USE_OPENSSL=	yes
 USE_LDCONFIG=	yes
 
@@ -108,15 +108,18 @@ CONFIGURE_ARGS+=	--enable-rrtype-ta
 .if ! (defined(BUILD_PYLDNS) || defined(BUILD_P5PERL))
 
 post-configure:
+# ac_cv_prog_libtool=../libtool => Always use bundled libtool
 .if ${PORT_OPTIONS:MEXAMPLES}
 	@(cd ${WRKSRC}/examples; ./configure --prefix=${PREFIX} \
 		--infodir=${PREFIX}/${INFO_PATH} --mandir=${MANPREFIX}/man \
-		--build=${CONFIGURE_TARGET} ${NO_GOST} ${NO_SHA2})
+		--build=${CONFIGURE_TARGET} ${NO_GOST} ${NO_SHA2} \
+		ac_cv_prog_libtool=../libtool)
 .endif
 .if ${PORT_OPTIONS:MDRILL}
 	@(cd ${WRKSRC}/drill; ./configure --prefix=${PREFIX} \
 		--mandir=${MANPREFIX}/man \
-		--build=${CONFIGURE_TARGET})
+		--build=${CONFIGURE_TARGET} \
+		ac_cv_prog_libtool=../libtool)
 .endif
 
 post-build:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410051009.s95A9M5h095853>