svn commit: r478097 - head/net-p2p/eiskaltdcpp-lib

Dima Panov fluffy at FreeBSD.org
Sun Aug 26 04:33:33 UTC 2018


Author: fluffy
Date: Sun Aug 26 04:33:32 2018
New Revision: 478097
URL: https://svnweb.freebsd.org/changeset/ports/478097

Log:
  - eiscaltdcpp-lib: switch to bundled miniupnpc over ports version
  
  Latest supported version of miniupnpc in eiscaltdcpp repo is 1.9, ports already have 2.x
  No PORTREVISION bump 'cause UPNP option is not default and was already unbuildable
  after ports goes forward with 1.9+ releases of miniupnpc
  
  PR:		229688
  Submitted by:	fluffy
  Approved by:	maintainer timeout (fjoe, 41 day)

Modified:
  head/net-p2p/eiskaltdcpp-lib/Makefile

Modified: head/net-p2p/eiskaltdcpp-lib/Makefile
==============================================================================
--- head/net-p2p/eiskaltdcpp-lib/Makefile	Sun Aug 26 04:27:23 2018	(r478096)
+++ head/net-p2p/eiskaltdcpp-lib/Makefile	Sun Aug 26 04:33:32 2018	(r478097)
@@ -49,8 +49,8 @@ IDN_CMAKE_OFF=	-DUSE_IDNA:BOOL=OFF
 DHT_CMAKE_ON=	-DWITH_DHT:BOOL=ON
 DHT_CMAKE_OFF=	-DWITH_DHT:BOOL=OFF
 
-MINIUPNP_LIB_DEPENDS=	libminiupnpc.so:net/miniupnpc
-MINIUPNP_CMAKE_ON=	-DUSE_MINIUPNP:BOOL=ON -DLOCAL_MINIUPNP:BOOL=OFF
+#MINIUPNP_LIB_DEPENDS=	libminiupnpc.so:net/miniupnpc
+MINIUPNP_CMAKE_ON=	-DUSE_MINIUPNP:BOOL=ON -DLOCAL_MINIUPNP:BOOL=ON
 MINIUPNP_CMAKE_OFF=	-DUSE_MINIUPNP:BOOL=OFF
 .endif
 
@@ -66,6 +66,7 @@ CMAKE_ARGS+=	-DUSE_IDNA:BOOL=`${PKG_QUERY} '%Ok %Ov' $
 CMAKE_ARGS+=	-DWITH_DHT:BOOL=`${PKG_QUERY} '%Ok %Ov' ${PORTNAME}-lib | ${GREP} '^DHT ' | ${CUT} -f 2 -d ' '`
 CMAKE_ARGS+=	-DLUA_SCRIPT:BOOL=`${PKG_QUERY} '%Ok %Ov' ${PORTNAME}-lib | ${GREP} '^LUA ' | ${CUT} -f 2 -d ' '`
 CMAKE_ARGS+=	-DUSE_MINIUPNP:BOOL=`${PKG_QUERY} '%Ok %Ov' ${PORTNAME}-lib | ${GREP} '^MINIUPNP ' | ${CUT} -f 2 -d ' '`
+CMAKE_ARGS+=	-DLOCAL_MINIUPNP:BOOL=`${PKG_QUERY} '%Ok %Ov' ${PORTNAME}-lib | ${GREP} '^MINIUPNP ' | ${CUT} -f 2 -d ' '`
 .endif
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list