From owner-svn-ports-all@freebsd.org Mon Nov 21 17:36:36 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8B31BC4DBEF; Mon, 21 Nov 2016 17:36:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 51EE91EBE; Mon, 21 Nov 2016 17:36:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uALHaZhA070585; Mon, 21 Nov 2016 17:36:35 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uALHaZeN070584; Mon, 21 Nov 2016 17:36:35 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201611211736.uALHaZeN070584@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 21 Nov 2016 17:36:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426749 - head/ftp/wget X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Nov 2016 17:36:36 -0000 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 .if ${PORT_OPTIONS:MOPENSSL}