Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 14 Jan 2014 18:32:32 +0000 (UTC)
From:      Rusmir Dusko <nemysis@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r339706 - head/net-p2p/libtorrent-rasterbar
Message-ID:  <201401141832.s0EIWWhq091684@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: nemysis
Date: Tue Jan 14 18:32:32 2014
New Revision: 339706
URL: http://svnweb.freebsd.org/changeset/ports/339706
QAT: https://qat.redports.org/buildarchive/r339706/

Log:
  - Fix build at 11.x [1]
  - Use LIB_DEPENDS? instead of LIB_DEPENDS, because
    Master port have had overwritten the LIB_DEPENDS [1]
  - Use USES=compiler:c++11-lib instead of compiler:c++11-lang [1]
  - Use CONFIGURE_ARGS instead of CONFIGURE_ARGS+ [2]
  - Break lines around 80 characters [2]
  
  Reported by:	swills [1], danfe [2]

Modified:
  head/net-p2p/libtorrent-rasterbar/Makefile

Modified: head/net-p2p/libtorrent-rasterbar/Makefile
==============================================================================
--- head/net-p2p/libtorrent-rasterbar/Makefile	Tue Jan 14 18:03:13 2014	(r339705)
+++ head/net-p2p/libtorrent-rasterbar/Makefile	Tue Jan 14 18:32:32 2014	(r339706)
@@ -13,15 +13,15 @@ COMMENT?=	C++ library implementing a Bit
 
 LICENSE=	BSD
 
-LIB_DEPENDS=	libboost_date_time.so:${PORTSDIR}/devel/boost-libs \
+LIB_DEPENDS?=	libboost_date_time.so:${PORTSDIR}/devel/boost-libs \
 		libGeoIP.so:${PORTSDIR}/net/GeoIP
 
-USES=		compiler:c++11-lang pathfix pkgconfig iconv
+USES=		compiler:c++11-lib pathfix pkgconfig iconv
 USE_OPENSSL=	yes
 GNU_CONFIGURE=	yes
 USE_LDCONFIG=	yes
 
-CONFIGURE_ARGS+=	--disable-debug \
+CONFIGURE_ARGS=	--disable-debug \
 		--disable-static \
 		--enable-dht \
 		--enable-encryption \
@@ -69,6 +69,7 @@ post-install:
 	${INSTALL_DATA} ${DOC_FILES2:S|^|${DOCSRCDIR2}/|} ${STAGEDIR}${DOCSDIR2}
 
 	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
-	${INSTALL_DATA} ${PORTEXAMPLES:S|^|${WRKSRC}/examples/|} ${STAGEDIR}${EXAMPLESDIR}
+	${INSTALL_DATA} ${PORTEXAMPLES:S|^|${WRKSRC}/examples/|} \
+		${STAGEDIR}${EXAMPLESDIR}
 
 .include <bsd.port.mk>



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