svn commit: r344193 - head/ftp/wget

Vasil Dimov vd at FreeBSD.org
Fri Feb 14 11:25:46 UTC 2014


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 at 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


More information about the svn-ports-all mailing list