From owner-svn-ports-head@FreeBSD.ORG Mon May 13 13:52:37 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id C03A36F1; Mon, 13 May 2013 13:52:37 +0000 (UTC) (envelope-from vd@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id B359165D; Mon, 13 May 2013 13:52:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4DDqb96034573; Mon, 13 May 2013 13:52:37 GMT (envelope-from vd@svn.freebsd.org) Received: (from vd@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4DDqbnk034571; Mon, 13 May 2013 13:52:37 GMT (envelope-from vd@svn.freebsd.org) Message-Id: <201305131352.r4DDqbnk034571@svn.freebsd.org> From: Vasil Dimov Date: Mon, 13 May 2013 13:52:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r318083 - 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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 May 2013 13:52:37 -0000 Author: vd Date: Mon May 13 13:52:37 2013 New Revision: 318083 URL: http://svnweb.freebsd.org/changeset/ports/318083 Log: ftp/wget: hook a dependency to devel/pcre PR: ports/178285 Submitted by: pawel@ Modified: head/ftp/wget/Makefile Modified: head/ftp/wget/Makefile ============================================================================== --- head/ftp/wget/Makefile Mon May 13 13:51:49 2013 (r318082) +++ head/ftp/wget/Makefile Mon May 13 13:52:37 2013 (r318083) @@ -3,6 +3,7 @@ PORTNAME= wget DISTVERSION= 1.14 +PORTREVISION= 1 CATEGORIES= ftp www ipv6 MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= wget @@ -17,6 +18,16 @@ USE_PERL5_BUILD=yes GNU_CONFIGURE= yes MAKE_JOBS_SAFE= yes +# Wget can handle the absence of pcre, but we hook an unconditional dependency +# to pcre because if it is present in the system during compile time, then +# wget will pick it and link with it. Thus the wget executable will later +# depend on the presence of the pcre library. Wget does not support to +# explicitly ignore the pcre library if it is present in the system and there +# is no elegant way to do that. +LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre +CPPFLAGS= -I${LOCALBASE}/include +LDFLAGS= -L${LOCALBASE}/lib + OPTIONS_RADIO= SSL OPTIONS_RADIO_SSL=GNUTLS OPENSSL OPTIONS_DEFINE= IPV6 NLS IDN