svn commit: r426749 - head/ftp/wget

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Mon Nov 21 17:36:36 UTC 2016


Author: sunpoet
Date: Mon Nov 21 17:36:35 2016
New Revision: 426749
URL: https://svnweb.freebsd.org/changeset/ports/426749

Log:
  - Add METALINK and PSL options
  
  ====> Running Q/A tests (stage-qa)
  Error: /usr/local/bin/wget is linked to /usr/local/lib/libmetalink.so.3 from misc/libmetalink but it is not declared as a dependency
  Warning: you need LIB_DEPENDS+=libmetalink.so:misc/libmetalink
  Error: /usr/local/bin/wget is linked to /usr/local/lib/libpsl.so.5 from dns/libpsl but it is not declared as a dependency
  Warning: you need LIB_DEPENDS+=libpsl.so:dns/libpsl
  
  PR:		214269
  Differential Revision:	https://reviews.freebsd.org/D8456
  Submitted by:	sunpoet (myself)
  Approved by:	maintainer (timeout, 15 days)

Modified:
  head/ftp/wget/Makefile

Modified: head/ftp/wget/Makefile
==============================================================================
--- head/ftp/wget/Makefile	Mon Nov 21 17:36:31 2016	(r426748)
+++ head/ftp/wget/Makefile	Mon Nov 21 17:36:35 2016	(r426749)
@@ -20,7 +20,7 @@ OPTIONS_SUB=	yes
 
 OPTIONS_RADIO=	SSL
 OPTIONS_RADIO_SSL=GNUTLS OPENSSL
-OPTIONS_DEFINE=	IPV6 NLS IDN PCRE
+OPTIONS_DEFINE=	IPV6 NLS IDN METALINK PCRE PSL
 OPTIONS_DEFAULT=OPENSSL IDN
 
 PCRE_DESC=	Support Perl regular expressions in addition to POSIX
@@ -37,11 +37,17 @@ IDN_LIB_DEPENDS=	libidn.so:dns/libidn
 IDN_CONFIGURE_ENABLE=	iri
 IDN_CONFIGURE_ON=	--with-libidn=${LOCALBASE}
 
+METALINK_CONFIGURE_WITH=metalink
+METALINK_LIB_DEPENDS=	libmetalink.so:misc/libmetalink
+
 PCRE_LIB_DEPENDS=	libpcre.so:devel/pcre
 PCRE_CPPFLAGS=		-I${LOCALBASE}/include
 PCRE_LDFLAGS=		-L${LOCALBASE}/lib
 PCRE_CONFIGURE_ENV_OFF=	ac_cv_header_pcre_h=no
 
+PSL_CONFIGURE_WITH=	libpsl
+PSL_LIB_DEPENDS=	libpsl.so:dns/libpsl
+
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MOPENSSL}


More information about the svn-ports-all mailing list