Date: Fri, 14 Feb 2014 11:25:46 +0000 (UTC) From: Vasil Dimov <vd@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r344193 - head/ftp/wget Message-ID: <201402141125.s1EBPkxq099063@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: vd Date: Fri Feb 14 11:25:46 2014 New Revision: 344193 URL: http://svnweb.freebsd.org/changeset/ports/344193 QAT: https://qat.redports.org/buildarchive/r344193/ Log: ftp/wget: Use LIB_DEPENDS in the form of lib<name>.so https://wiki.freebsd.org/ports/fix_lib_depends PR: ports/186718 Submitted by: Eero Hänninen <fax@nohik.ee> Modified: head/ftp/wget/Makefile Modified: head/ftp/wget/Makefile ============================================================================== --- head/ftp/wget/Makefile Fri Feb 14 11:25:38 2014 (r344192) +++ head/ftp/wget/Makefile Fri Feb 14 11:25:46 2014 (r344193) @@ -32,7 +32,7 @@ CONFIGURE_ARGS+=--with-ssl=openssl CPPFLAGS+= -I${OPENSSLINC} LDFLAGS+= -L${OPENSSLLIB} .elif ${PORT_OPTIONS:MGNUTLS} -LIB_DEPENDS+= gnutls:${PORTSDIR}/security/gnutls +LIB_DEPENDS+= libgnutls.so:${PORTSDIR}/security/gnutls CONFIGURE_ARGS+=--with-ssl=gnutls CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib @@ -58,7 +58,7 @@ PLIST_SUB= NLS="@comment " .endif .if ${PORT_OPTIONS:MIDN} -LIB_DEPENDS+= idn:${PORTSDIR}/dns/libidn +LIB_DEPENDS+= libidn.so:${PORTSDIR}/dns/libidn CONFIGURE_ARGS+=--enable-iri --with-libidn=${LOCALBASE} USES+= iconv .else @@ -67,7 +67,7 @@ CONFIGURE_ARGS+=--disable-iri .if ${PORT_OPTIONS:MPCRE} # Wget will pick pcre automatically and link with it if it is present. -LIB_DEPENDS+= pcre:${PORTSDIR}/devel/pcre +LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib .else
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402141125.s1EBPkxq099063>