Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 16 Jul 2014 08:13:59 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r362049 - in head: irc/weechat-devel japanese/mozc-server lang/arena lang/clisp lang/ecl lang/gauche lang/neko mail/avenger mail/dspam mail/mboxgrep mail/mpop mail/nullmailer mail/opend...
Message-ID:  <201407160813.s6G8Dxmc034895@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Wed Jul 16 08:13:58 2014
New Revision: 362049
URL: http://svnweb.freebsd.org/changeset/ports/362049
QAT: https://qat.redports.org/buildarchive/r362049/

Log:
  Fix some non default LIB_DEPENDS
  
  With hat:	portmgr

Modified:
  head/irc/weechat-devel/Makefile
  head/japanese/mozc-server/Makefile
  head/lang/arena/Makefile
  head/lang/clisp/Makefile
  head/lang/ecl/Makefile
  head/lang/gauche/Makefile
  head/lang/neko/Makefile
  head/mail/avenger/Makefile
  head/mail/dspam/Makefile
  head/mail/mboxgrep/Makefile
  head/mail/mpop/Makefile
  head/mail/nullmailer/Makefile
  head/mail/opendkim/Makefile.features
  head/mail/opensmtpd-devel/Makefile
  head/mail/py-milter/Makefile
  head/mail/qsf/Makefile
  head/mail/sqwebmail/Makefile
  head/mail/tpop3d/Makefile
  head/mail/wmbiff/Makefile

Modified: head/irc/weechat-devel/Makefile
==============================================================================
--- head/irc/weechat-devel/Makefile	Wed Jul 16 08:05:11 2014	(r362048)
+++ head/irc/weechat-devel/Makefile	Wed Jul 16 08:13:58 2014	(r362049)
@@ -96,7 +96,7 @@ PLIST_SUB+=	RUBY="@comment "
 
 .if ${PORT_OPTIONS:MGNUTLS}
 USES+=		pkgconfig
-LIB_DEPENDS+=	gnutls:${PORTSDIR}/security/gnutls
+LIB_DEPENDS+=	libgnutls.so:${PORTSDIR}/security/gnutls
 .else
 CMAKE_ARGS+=	-DENABLE_GNUTLS=no
 .endif
@@ -159,7 +159,7 @@ PLIST_SUB+=	MANPAGES="@comment "
 .endif
 
 .if ${PORT_OPTIONS:MBACKTRACE}
-LIB_DEPENDS+=	execinfo:${PORTSDIR}/devel/libexecinfo
+LIB_DEPENDS+=	libexecinfo.so:${PORTSDIR}/devel/libexecinfo
 .endif
 
 .if ${PORT_OPTIONS:MICON}

Modified: head/japanese/mozc-server/Makefile
==============================================================================
--- head/japanese/mozc-server/Makefile	Wed Jul 16 08:05:11 2014	(r362048)
+++ head/japanese/mozc-server/Makefile	Wed Jul 16 08:13:58 2014	(r362049)
@@ -193,7 +193,7 @@ GYP_OPTIONS+=	--noqt
 GYP_DEFINES+=	use_libibus=1 \
 		enable_gtk_renderer=1
 
-LIB_DEPENDS+=	ibus-1.0:${PORTSDIR}/textproc/ibus
+LIB_DEPENDS+=	libibus-1.0.so:${PORTSDIR}/textproc/ibus
 RUN_DEPENDS+=	mozc_server:${PORTSDIR}/japanese/mozc-server \
 		mozc_tool:${PORTSDIR}/japanese/mozc-tool \
 		mozc_server_start:${PORTSDIR}/japanese/mozc-additions \

Modified: head/lang/arena/Makefile
==============================================================================
--- head/lang/arena/Makefile	Wed Jul 16 08:05:11 2014	(r362048)
+++ head/lang/arena/Makefile	Wed Jul 16 08:13:58 2014	(r362049)
@@ -13,7 +13,7 @@ COMMENT=	C-like scripting language with 
 GNU_CONFIGURE=	yes
 
 .if defined(WITH_PCRE)
-LIB_DEPENDS+=	pcre.3:${PORTSDIR}/devel/pcre
+LIB_DEPENDS+=	libpcre.so:${PORTSDIR}/devel/pcre
 CONFIGURE_ARGS+=	--enable-pcre
 .endif
 

Modified: head/lang/clisp/Makefile
==============================================================================
--- head/lang/clisp/Makefile	Wed Jul 16 08:05:11 2014	(r362048)
+++ head/lang/clisp/Makefile	Wed Jul 16 08:13:58 2014	(r362049)
@@ -106,17 +106,17 @@ CONFIGURE_ARGS+=--with-module=clx/new-cl
 .endif
 
 .if ${PORT_OPTIONS:MDBUS}
-LIB_DEPENDS+=	dbus-1.3:${PORTSDIR}/devel/dbus
+LIB_DEPENDS+=	libdbus-1.so:${PORTSDIR}/devel/dbus
 CONFIGURE_ARGS+=--with-module=dbus
 .endif
 
 .if ${PORT_OPTIONS:MFASTCGI}
-LIB_DEPENDS+=	fcgi.0:${PORTSDIR}/www/fcgi
+LIB_DEPENDS+=	libfcgi.so:${PORTSDIR}/www/fcgi
 CONFIGURE_ARGS+=--with-module=fastcgi
 .endif
 
 .if ${PORT_OPTIONS:MGDBM}
-LIB_DEPENDS+=	gdbm.4:${PORTSDIR}/databases/gdbm
+LIB_DEPENDS+=	libgdbm.so:${PORTSDIR}/databases/gdbm
 CONFIGURE_ARGS+=--with-module=gdbm
 .endif
 
@@ -126,12 +126,12 @@ CONFIGURE_ARGS+=--with-module=gtk2
 .endif
 
 .if ${PORT_OPTIONS:MPARI}
-LIB_DEPENDS+=	pari-gmp.2:${PORTSDIR}/math/pari
+LIB_DEPENDS+=	libpari-gmp.so:${PORTSDIR}/math/pari
 CONFIGURE_ARGS+=--with-module=pari
 .endif
 
 .if ${PORT_OPTIONS:MPCRE}
-LIB_DEPENDS+=	pcre.3:${PORTSDIR}/devel/pcre
+LIB_DEPENDS+=	libpcre.so:${PORTSDIR}/devel/pcre
 CONFIGURE_ARGS+=--with-module=pcre
 .endif
 

Modified: head/lang/ecl/Makefile
==============================================================================
--- head/lang/ecl/Makefile	Wed Jul 16 08:05:11 2014	(r362048)
+++ head/lang/ecl/Makefile	Wed Jul 16 08:13:58 2014	(r362049)
@@ -72,11 +72,11 @@ CONFIGURE_ARGS+=--with-dffi=no
 .if ${PORT_OPTIONS:MTHREADS}
 CONFIGURE_ARGS+=--enable-threads=yes
 LDFLAGS+=	${PTHREAD_LIBS}
-LIB_DEPENDS+=	gc-threaded:${PORTSDIR}/devel/boehm-gc-threaded
+LIB_DEPENDS+=	libgc-threaded.so:${PORTSDIR}/devel/boehm-gc-threaded
 PLIST_SUB+=	THREADS=""
 .else
 CONFIGURE_ARGS+=--enable-threads=no
-LIB_DEPENDS+=	gc:${PORTSDIR}/devel/boehm-gc
+LIB_DEPENDS+=	libgc.so:${PORTSDIR}/devel/boehm-gc
 PLIST_SUB+=	THREADS="@comment "
 .endif
 

Modified: head/lang/gauche/Makefile
==============================================================================
--- head/lang/gauche/Makefile	Wed Jul 16 08:05:11 2014	(r362048)
+++ head/lang/gauche/Makefile	Wed Jul 16 08:13:58 2014	(r362049)
@@ -60,7 +60,7 @@ MANPREFIX=	${WRKDIR}
 
 .if ${PORT_OPTIONS:MGDBM}
 CONFIGURE_ARGS+=--with-local=${LOCALBASE}
-LIB_DEPENDS+=	gdbm:${PORTSDIR}/databases/gdbm
+LIB_DEPENDS+=	libgdbm.so:${PORTSDIR}/databases/gdbm
 PLIST_SUB+=	GDBM=""
 .else
 PLIST_SUB+=	GDBM="@comment "

Modified: head/lang/neko/Makefile
==============================================================================
--- head/lang/neko/Makefile	Wed Jul 16 08:05:11 2014	(r362048)
+++ head/lang/neko/Makefile	Wed Jul 16 08:13:58 2014	(r362049)
@@ -71,7 +71,7 @@ PLIST_SUB+=	SQLITE3="@comment "
 .endif
 
 .if ${PORT_OPTIONS:MPCRE}
-LIB_DEPENDS+=	pcre:${PORTSDIR}/devel/pcre
+LIB_DEPENDS+=	libpcre.so:${PORTSDIR}/devel/pcre
 PLIST_SUB+=	PCRE=""
 .else
 LIBKEYNAME+=	regexp

Modified: head/mail/avenger/Makefile
==============================================================================
--- head/mail/avenger/Makefile	Wed Jul 16 08:05:11 2014	(r362048)
+++ head/mail/avenger/Makefile	Wed Jul 16 08:13:58 2014	(r362049)
@@ -27,7 +27,7 @@ CONFIGURE_ARGS=	--enable-ssl=${OPENSSLBA
 OPTIONS_DEFINE=	SASL DOCS
 
 SASL_CONFIGURE_ON=	--enable-sasl
-SASL_LIB_DEPENDS=	sasl2:${PORTSDIR}/security/cyrus-sasl2
+SASL_LIB_DEPENDS=	libsasl2.so:${PORTSDIR}/security/cyrus-sasl2
 
 post-patch:
 	@${REINPLACE_CMD} -e \

Modified: head/mail/dspam/Makefile
==============================================================================
--- head/mail/dspam/Makefile	Wed Jul 16 08:05:11 2014	(r362048)
+++ head/mail/dspam/Makefile	Wed Jul 16 08:13:58 2014	(r362049)
@@ -369,7 +369,7 @@ RUN_DEPENDS+=	${LOCALBASE}/sbin/lighttpd
 .	else
 USE_APACHE_RUN=	22+
 .	endif
-LIB_DEPENDS+=	gd:${PORTSDIR}/graphics/gd
+LIB_DEPENDS+=	libgd.so:${PORTSDIR}/graphics/gd
 RUN_DEPENDS+=	p5-GD>=0:${PORTSDIR}/graphics/p5-GD
 RUN_DEPENDS+=	p5-GD-Graph>=0:${PORTSDIR}/graphics/p5-GD-Graph
 RUN_DEPENDS+=	p5-GD-Graph3d>=0:${PORTSDIR}/graphics/p5-GD-Graph3d

Modified: head/mail/mboxgrep/Makefile
==============================================================================
--- head/mail/mboxgrep/Makefile	Wed Jul 16 08:05:11 2014	(r362048)
+++ head/mail/mboxgrep/Makefile	Wed Jul 16 08:13:58 2014	(r362049)
@@ -10,7 +10,7 @@ MASTER_SITES=	SF
 MAINTAINER=	anders@FreeBSD.org
 COMMENT=	Utility to scan mailboxes for messages matching a regular expression
 
-PCRE_LIB_DEPENDS=	pcre.3:${PORTSDIR}/devel/pcre
+PCRE_LIB_DEPENDS=	libpcre.so:${PORTSDIR}/devel/pcre
 
 OPTIONS_DEFINE=	DOCS PCRE
 

Modified: head/mail/mpop/Makefile
==============================================================================
--- head/mail/mpop/Makefile	Wed Jul 16 08:05:11 2014	(r362048)
+++ head/mail/mpop/Makefile	Wed Jul 16 08:13:58 2014	(r362049)
@@ -23,7 +23,7 @@ OPTIONS_RADIO_SSL=	GNUTLS OPENSSL
 OPTIONS_DEFAULT=	IDN OPENSSL
 OPTIONS_SUB=		yes
 
-GNOMEKEYRING_LIB_DEPENDS=	libgnome-keyring:${PORTSDIR}/security/libgnome-keyring
+GNOMEKEYRING_LIB_DEPENDS=	libgnome-keyring.so:${PORTSDIR}/security/libgnome-keyring
 GNOMEKEYRING_CONFIGURE_WITH=	gnome-keyring
 GNUTLS_LIB_DEPENDS=	libgnutls.so:${PORTSDIR}/security/gnutls
 GNUTLS_CONFIGURE_ON=	--with-ssl=gnutls

Modified: head/mail/nullmailer/Makefile
==============================================================================
--- head/mail/nullmailer/Makefile	Wed Jul 16 08:05:11 2014	(r362048)
+++ head/mail/nullmailer/Makefile	Wed Jul 16 08:13:58 2014	(r362049)
@@ -49,7 +49,7 @@ NO_STAGE=	yes
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MGNUTLS}
-LIB_DEPENDS+=	gnutls:${PORTSDIR}/security/gnutls
+LIB_DEPENDS+=	libgnutls.so:${PORTSDIR}/security/gnutls
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib -lgnutls
 CONFIGURE_ENV+=	CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"

Modified: head/mail/opendkim/Makefile.features
==============================================================================
--- head/mail/opendkim/Makefile.features	Wed Jul 16 08:05:11 2014	(r362048)
+++ head/mail/opendkim/Makefile.features	Wed Jul 16 08:13:58 2014	(r362049)
@@ -36,7 +36,7 @@ CONFIGURE_ARGS+=	--enable-default_sender
 
 .if ${PORT_OPTIONS:MDIFFHEADERS}
 CONFIGURE_ARGS+=	--enable-diffheaders
-LIB_DEPENDS+=		tre:${PORTSDIR}/textproc/libtre
+LIB_DEPENDS+=		libtre.so:${PORTSDIR}/textproc/libtre
 .else
 CONFIGURE_ARGS+=	--without-tre
 .endif
@@ -112,14 +112,14 @@ PLIST_SUB+=		REPRRD="@comment "
 .if ${PORT_OPTIONS:MREPUTATION}
 CONFIGURE_ARGS+=	--enable-reputation \
 			--with-libcurl
-LIB_DEPENDS+=		curl:${PORTSDIR}/ftp/curl
+LIB_DEPENDS+=		libcurl.so:${PORTSDIR}/ftp/curl
 . if ${PORT_OPTIONS:MXML}
 CONFIGURE_ARGS+=	--without-libjansson --with-libxml2
-LIB_DEPENDS+=		xml2:${PORTSDIR}/textproc/libxml2
+LIB_DEPENDS+=		libxml2.so:${PORTSDIR}/textproc/libxml2
 PLIST_SUB+=		JANSSON="@comment "
 . else
 CONFIGURE_ARGS+=	--with-libjansson
-LIB_DEPENDS+=		jansson:${PORTSDIR}/devel/jansson
+LIB_DEPENDS+=		libjansson.so:${PORTSDIR}/devel/jansson
 MAN8+=			autobuild.8
 PLIST_SUB+=		JANSSON=""
 . endif

Modified: head/mail/opensmtpd-devel/Makefile
==============================================================================
--- head/mail/opensmtpd-devel/Makefile	Wed Jul 16 08:05:11 2014	(r362048)
+++ head/mail/opensmtpd-devel/Makefile	Wed Jul 16 08:13:58 2014	(r362049)
@@ -59,7 +59,7 @@ LDAP_CONFIGURE_ON=	--with-experimental-l
 
 PAM_CONFIGURE_ON=	--with-pam --with-pam-service=smtpd
 
-REDIS_LIB_DEPENDS=	hiredis:${PORTSDIR}/databases/hiredis
+REDIS_LIB_DEPENDS=	libhiredis.so:${PORTSDIR}/databases/hiredis
 REDIS_CONFIGURE_ON=	--with-experimental-redis
 
 USE_OPENSSL=		yes

Modified: head/mail/py-milter/Makefile
==============================================================================
--- head/mail/py-milter/Makefile	Wed Jul 16 08:05:11 2014	(r362048)
+++ head/mail/py-milter/Makefile	Wed Jul 16 08:13:58 2014	(r362049)
@@ -16,7 +16,7 @@ COMMENT=	Python interface to Sendmail mi
 LICENSE=	GPLv2
 
 .if !exists(/usr/lib/libmilter.so)
-LIB_DEPENDS=	milter:${PORTSDIR}/mail/sendmail
+LIB_DEPENDS=	libmilter.so:${PORTSDIR}/mail/sendmail
 .endif
 
 PYPORTNAME=	${PKGNAMEPREFIX:C/[0-9]+-//}${PORTNAME}

Modified: head/mail/qsf/Makefile
==============================================================================
--- head/mail/qsf/Makefile	Wed Jul 16 08:05:11 2014	(r362048)
+++ head/mail/qsf/Makefile	Wed Jul 16 08:13:58 2014	(r362049)
@@ -25,7 +25,7 @@ LDFLAGS+=	-L${LOCALBASE}/lib
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MGDBM}
-LIB_DEPENDS+=	gdbm:${PORTSDIR}/databases/gdbm
+LIB_DEPENDS+=	libgdbm.so:${PORTSDIR}/databases/gdbm
 .else
 CONFIGURE_ARGS+=	--without-gdbm
 .endif

Modified: head/mail/sqwebmail/Makefile
==============================================================================
--- head/mail/sqwebmail/Makefile	Wed Jul 16 08:05:11 2014	(r362048)
+++ head/mail/sqwebmail/Makefile	Wed Jul 16 08:13:58 2014	(r362049)
@@ -160,7 +160,7 @@ CONFIGURE_ARGS+=	--enable-maxpurge=${WIT
 
 .if ${PORT_OPTIONS:MGDBM}
 CONFIGURE_ARGS+=--with-db=gdbm
-LIB_DEPENDS+=	gdbm.4:${PORTSDIR}/databases/gdbm
+LIB_DEPENDS+=	libgdbm.so:${PORTSDIR}/databases/gdbm
 .else
 CONFIGURE_ARGS+=--with-db=db
 .endif

Modified: head/mail/tpop3d/Makefile
==============================================================================
--- head/mail/tpop3d/Makefile	Wed Jul 16 08:05:11 2014	(r362048)
+++ head/mail/tpop3d/Makefile	Wed Jul 16 08:13:58 2014	(r362049)
@@ -41,7 +41,7 @@ PASSWDAUTH_CONFIGURE_ENABLE=	auth-passwd
 MBOXINDICES_CONFIGURE_ENABLE=	mbox-bsd-save-indices
 
 DRAC_BUILD_DEPENDS=		${LOCALBASE}/lib/libdrac.a:${PORTSDIR}/mail/drac
-GDBMAUTH_LIB_DEPENDS=		gdbm:${PORTSDIR}/databases/gdbm
+GDBMAUTH_LIB_DEPENDS=		libgdbm.so:${PORTSDIR}/databases/gdbm
 
 .include <bsd.port.options.mk>
 

Modified: head/mail/wmbiff/Makefile
==============================================================================
--- head/mail/wmbiff/Makefile	Wed Jul 16 08:05:11 2014	(r362048)
+++ head/mail/wmbiff/Makefile	Wed Jul 16 08:13:58 2014	(r362049)
@@ -31,8 +31,8 @@ PLIST_DIRS=	%%DATADIR%%/skins \
 .include <bsd.port.pre.mk>
 
 .if ${PORT_OPTIONS:MGNUTLS}
-LIB_DEPENDS+=	gcrypt:${PORTSDIR}/security/libgcrypt \
-		gnutls:${PORTSDIR}/security/gnutls
+LIB_DEPENDS+=	libgcrypt.so:${PORTSDIR}/security/libgcrypt \
+		libgnutls.so:${PORTSDIR}/security/gnutls
 CONFIGURE_ARGS+=	--with-libgnutls-prefix=${LOCALBASE} \
 			--with-libgcrypt-prefix=${LOCALBASE}
 .else



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407160813.s6G8Dxmc034895>