From owner-svn-ports-head@FreeBSD.ORG Wed Jul 16 08:26:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4FFE25B9; Wed, 16 Jul 2014 08:26:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 3AD342CA1; Wed, 16 Jul 2014 08:26:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6G8QWWb040400; Wed, 16 Jul 2014 08:26:32 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6G8QQEl040364; Wed, 16 Jul 2014 08:26:26 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201407160826.s6G8QQEl040364@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 16 Jul 2014 08:26:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r362050 - in head: math/atlas math/calctool math/petsc math/xspread misc/amanda-server misc/amanda26-server misc/amanda32-server multimedia/emotion multimedia/gmtk multimedia/mlt net-im... 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.18 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: Wed, 16 Jul 2014 08:26:32 -0000 Author: bapt Date: Wed Jul 16 08:26:25 2014 New Revision: 362050 URL: http://svnweb.freebsd.org/changeset/ports/362050 QAT: https://qat.redports.org/buildarchive/r362050/ Log: Fix some non default LIB_DEPENDS With hat: portmgr Modified: head/math/atlas/Makefile head/math/calctool/Makefile head/math/petsc/Makefile head/math/xspread/Makefile head/misc/amanda-server/Makefile head/misc/amanda26-server/Makefile head/misc/amanda32-server/Makefile head/multimedia/emotion/Makefile head/multimedia/gmtk/Makefile head/multimedia/mlt/Makefile head/net-im/centericq/Makefile head/net-mgmt/pmacct/Makefile head/net-mgmt/snmp4nagios/Makefile head/net-p2p/gnunet/Makefile head/net-p2p/transmission-remote-gui/Makefile head/net/click/Makefile head/net/httping/Makefile head/net/mediatomb/Makefile head/net/openldap24-server/Makefile head/net/openser/Makefile head/net/quagga-re/Makefile head/net/rabbitmq-c-devel/Makefile head/net/shmux/Makefile head/net/spserver/Makefile head/net/tcpdump/Makefile head/net/trafshow3/Makefile head/net/wire/Makefile head/news/inn/Makefile Modified: head/math/atlas/Makefile ============================================================================== --- head/math/atlas/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/math/atlas/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -55,7 +55,7 @@ POINTER?= 32 .endif .if defined(MAINTAINER_MODE) -LIB_DEPENDS+= blas:${PORTSDIR}/math/blas +LIB_DEPENDS+= libblas.so:${PORTSDIR}/math/blas .endif .for i in DATA DOCS Modified: head/math/calctool/Makefile ============================================================================== --- head/math/calctool/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/math/calctool/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -38,7 +38,7 @@ PLIST_SUB+= TTY="@comment " .if ${PORT_OPTIONS:MXVIEW} BINARIES+= xv_calctool -LIB_DEPENDS+= xview.3:${PORTSDIR}/x11-toolkits/xview +LIB_DEPENDS+= libxview.so:${PORTSDIR}/x11-toolkits/xview PLIST_SUB+= XVIEW="" .else PLIST_SUB+= XVIEW="@comment " Modified: head/math/petsc/Makefile ============================================================================== --- head/math/petsc/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/math/petsc/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -123,11 +123,11 @@ PLIST_SUB+= MPIUNI="" WITH_ATLAS= yes .endif .if defined(WITH_ATLAS) -LIB_DEPENDS+= atlas:${PORTSDIR}/math/atlas +LIB_DEPENDS+= libatlas.so:${PORTSDIR}/math/atlas LIBBLASLAPACK= -L${LOCALBASE}/lib -lalapack -lcblas -lf77blas CONFIGURE_ARGS+= --with-blas-lapack-lib="${LIBBLASLAPACK}" .else -LIB_DEPENDS+= lapack:${PORTSDIR}/math/lapack +LIB_DEPENDS+= liblapack.so:${PORTSDIR}/math/lapack LIBBLASLAPACK= -L${LOCALBASE}/lib -llapack -lblas CONFIGURE_ARGS+= --with-blas-lapack-lib="${LIBBLASLAPACK}" .endif @@ -161,7 +161,7 @@ CONFLICTS+= metis-4* WITH_BLACS= yes .endif .if defined(WITH_BLACS) && defined(WITH_MPI) -LIB_DEPENDS+= blacs:${PORTSDIR}/math/blacs +LIB_DEPENDS+= libblacs.so:${PORTSDIR}/math/blacs CONFIGURE_ARGS+= --with_blacs=1 \ --with-blacs-include=${LOCALBASE}/include \ --with-blacs-lib=[${LOCALBASE}/lib/libblacsc.a,${LOCALBASE}/lib/libblacsf77.a,${LOCALBASE}/lib/libblacs.a] @@ -169,7 +169,7 @@ CONFIGURE_ARGS+= --with_blacs=1 \ WITH_SCALAPACK= yes . endif . if defined(WITH_SCALAPACK) -LIB_DEPENDS+= scalapack:${PORTSDIR}/math/scalapack +LIB_DEPENDS+= libscalapack.so:${PORTSDIR}/math/scalapack CONFIGURE_ARGS+= --with-scalapack=1 \ --with-scalapack-dir=${LOCALBASE} . endif Modified: head/math/xspread/Makefile ============================================================================== --- head/math/xspread/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/math/xspread/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -31,7 +31,7 @@ PLIST_FILES= bin/pxspread bin/xspread ma .if ${PORT_OPTIONS:MX11} USE_XORG= x11 xau xcb xdmcp xt -LIB_DEPENDS+= pthread-stubs:${PORTSDIR}/devel/libpthread-stubs +LIB_DEPENDS+= libpthread-stubs.so:${PORTSDIR}/devel/libpthread-stubs CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib .else Modified: head/misc/amanda-server/Makefile ============================================================================== --- head/misc/amanda-server/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/misc/amanda-server/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -144,7 +144,7 @@ CONFIGURE_ARGS+= --with-smbclient=${LOCA # If configure founds libcurl, automatically enabled it (with plist change). .if ${PORT_OPTIONS:MS3} -LIB_DEPENDS+= curl:${PORTSDIR}/ftp/curl +LIB_DEPENDS+= libcurl.so:${PORTSDIR}/ftp/curl CONFIGURE_ARGS+= --enable-s3-device PLIST_SUB+= S3DEVICE='' .else Modified: head/misc/amanda26-server/Makefile ============================================================================== --- head/misc/amanda26-server/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/misc/amanda26-server/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -145,7 +145,7 @@ RUN_DEPENDS+= aespipe:${PORTSDIR}/securi # If configure founds libcurl, automatically enabled it (with plist change). .if ${PORT_OPTIONS:MS3} -LIB_DEPENDS+= curl:${PORTSDIR}/ftp/curl +LIB_DEPENDS+= libcurl.so:${PORTSDIR}/ftp/curl CONFIGURE_ARGS+= --enable-s3-device PLIST_SUB+= S3DEVICE='' .else Modified: head/misc/amanda32-server/Makefile ============================================================================== --- head/misc/amanda32-server/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/misc/amanda32-server/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -141,7 +141,7 @@ CONFIGURE_ARGS+= --with-smbclient=${LOCA # If configure founds libcurl, automatically enabled it (with plist change). .if ${PORT_OPTIONS:MS3} -LIB_DEPENDS+= curl:${PORTSDIR}/ftp/curl +LIB_DEPENDS+= libcurl.so:${PORTSDIR}/ftp/curl CONFIGURE_ARGS+= --enable-s3-device PLIST_SUB+= S3DEVICE='' .else Modified: head/multimedia/emotion/Makefile ============================================================================== --- head/multimedia/emotion/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/multimedia/emotion/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -47,7 +47,7 @@ PLIST_SUB+= GST="@comment " .endif .if ${PORT_OPTIONS:MLIBXINE} -LIB_DEPENDS+= xine:${PORTSDIR}/multimedia/libxine +LIB_DEPENDS+= libxine.so:${PORTSDIR}/multimedia/libxine CONFIGURE_ARGS+=--enable-xine PLIST_SUB+= XINE="" .else Modified: head/multimedia/gmtk/Makefile ============================================================================== --- head/multimedia/gmtk/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/multimedia/gmtk/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -27,7 +27,7 @@ GIO_DESC= Use GIO for file I/O .include .if ${PORT_OPTIONS:MALSA} -LIB_DEPENDS+= asound:${PORTSDIR}/audio/alsa-lib +LIB_DEPENDS+= libasound.so:${PORTSDIR}/audio/alsa-lib CONFIGURE_ARGS+= --with-alsa .else CONFIGURE_ARGS+= --without-alsa Modified: head/multimedia/mlt/Makefile ============================================================================== --- head/multimedia/mlt/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/multimedia/mlt/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -95,7 +95,7 @@ PLIST_SUB+= GTK2="@comment " .endif .if ${PORT_OPTIONS:MJACK} -LIB_DEPENDS+= jack:${PORTSDIR}/audio/jack +LIB_DEPENDS+= libjack.so:${PORTSDIR}/audio/jack BUILD_DEPENDS+= ${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa CONFIGURE_ARGS+=--enable-jackrack PLIST_SUB+= JACK="" @@ -105,7 +105,7 @@ PLIST_SUB+= JACK="@comment " .endif .if ${PORT_OPTIONS:MQT4} -LIB_DEPENDS+= exif:${PORTSDIR}/graphics/libexif +LIB_DEPENDS+= libexif.so:${PORTSDIR}/graphics/libexif USE_QT4+= corelib gui opengl svg xml CONFIGURE_ARGS+=--enable-qimage \ --qimage-includedir="${QT_INCDIR}" \ @@ -123,7 +123,7 @@ PLIST_SUB+= QT4="@comment " .endif .if ${PORT_OPTIONS:MQUICKTIME} -LIB_DEPENDS+= dv:${PORTSDIR}/multimedia/libdv \ +LIB_DEPENDS+= libdv.so:${PORTSDIR}/multimedia/libdv \ quicktime:${PORTSDIR}/multimedia/libquicktime CONFIGURE_ARGS+=--enable-kino PLIST_SUB+= QUICKTIME="" @@ -133,7 +133,7 @@ PLIST_SUB+= QUICKTIME="@comment " .endif .if ${PORT_OPTIONS:MSAMPLERATE} -LIB_DEPENDS+= samplerate:${PORTSDIR}/audio/libsamplerate +LIB_DEPENDS+= libsamplerate.so:${PORTSDIR}/audio/libsamplerate CONFIGURE_ARGS+=--enable-resample PLIST_SUB+= SAMPLERATE="" .else @@ -142,7 +142,7 @@ PLIST_SUB+= SAMPLERATE="@comment " .endif .if ${PORT_OPTIONS:MSOX} -LIB_DEPENDS+= sox:${PORTSDIR}/audio/sox +LIB_DEPENDS+= libsox.so:${PORTSDIR}/audio/sox CONFIGURE_ARGS+=--enable-sox PLIST_SUB+= SOX="" .else @@ -151,7 +151,7 @@ PLIST_SUB+= SOX="@comment " .endif .if ${PORT_OPTIONS:MSWFDEC} -LIB_DEPENDS+= swfdec-0.8:${PORTSDIR}/graphics/swfdec +LIB_DEPENDS+= libswfdec-0.8.so:${PORTSDIR}/graphics/swfdec CONFIGURE_ARGS+=--enable-swfdec PLIST_SUB+= SWFDEC="" .else @@ -167,7 +167,7 @@ CONFIGURE_ARGS+=--avformat-no-vdpau .endif .if ${PORT_OPTIONS:MVORBIS} -LIB_DEPENDS+= vorbis:${PORTSDIR}/audio/libvorbis +LIB_DEPENDS+= libvorbis.so:${PORTSDIR}/audio/libvorbis CONFIGURE_ARGS+=--enable-vorbis PLIST_SUB+= VORBIS="" .else Modified: head/net-im/centericq/Makefile ============================================================================== --- head/net-im/centericq/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/net-im/centericq/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -59,12 +59,12 @@ CONFIGURE_ARGS+= --enable-locales-fix .endif .if ${PORT_OPTIONS:MFRIBIDI} -LIB_DEPENDS+= fribidi.3:${PORTSDIR}/converters/fribidi +LIB_DEPENDS+= libfribidi.so:${PORTSDIR}/converters/fribidi CONFIGURE_ARGS+= --with-fribidi .endif .if ${PORT_OPTIONS:MMSN} -LIB_DEPENDS+= curl:${PORTSDIR}/ftp/curl +LIB_DEPENDS+= libcurl.so:${PORTSDIR}/ftp/curl .else CONFIGURE_ARGS+= --disable-msn .endif @@ -101,7 +101,7 @@ CONFIGURE_ARGS+= --disable-lj .endif .if ${PORT_OPTIONS:MGG} -LIB_DEPENDS+= gadu.3:${PORTSDIR}/polish/ekg +LIB_DEPENDS+= libgadu.so:${PORTSDIR}/polish/ekg LIBGADU= -lgadu .else CONFIGURE_ARGS+= --disable-gg Modified: head/net-mgmt/pmacct/Makefile ============================================================================== --- head/net-mgmt/pmacct/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/net-mgmt/pmacct/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -101,7 +101,7 @@ CONFIGURE_ARGS+=--enable-mongodb \ .endif .if ${PORT_OPTIONS:MGEOIP} -LIB_DEPENDS+= GeoIP:${PORTSDIR}/net/GeoIP +LIB_DEPENDS+= libGeoIP.so:${PORTSDIR}/net/GeoIP CONFIGURE_ARGS+=--enable-geoip \ --with-geoip-libs=${LOCALBASE}/lib \ --with-geoip-includes=${LOCALBASE}/include Modified: head/net-mgmt/snmp4nagios/Makefile ============================================================================== --- head/net-mgmt/snmp4nagios/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/net-mgmt/snmp4nagios/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -39,7 +39,7 @@ LIBS+= -L${LOCALBASE}/lib .include .if ${PORT_OPTIONS:MRRDTOOL} -LIB_DEPENDS+= rrd:${PORTSDIR}/databases/rrdtool +LIB_DEPENDS+= librrd.so:${PORTSDIR}/databases/rrdtool CONFIGURE_ARGS+=--with-rrd PLIST_SUB+= RRD="" .else Modified: head/net-p2p/gnunet/Makefile ============================================================================== --- head/net-p2p/gnunet/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/net-p2p/gnunet/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -74,7 +74,7 @@ report.sh .if ${PORT_OPTIONS:MHTTP} BROKEN = WITH_HTTP requires libmicrohttpd 0.9.18 or higher -LIB_DEPENDS+= microhttpd:${PORTSDIR}/www/libmicrohttpd +LIB_DEPENDS+= libmicrohttpd.so:${PORTSDIR}/www/libmicrohttpd CONFIGURE_ARGS+= --with-microhttpd=${LOCALBASE} PLIST_SUB+= HTTP="" .else Modified: head/net-p2p/transmission-remote-gui/Makefile ============================================================================== --- head/net-p2p/transmission-remote-gui/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/net-p2p/transmission-remote-gui/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -57,7 +57,7 @@ BUILD_DEPENDS+= ${LCL_UNITS_DIR}/${LCL_P .endif .if ${PORT_OPTIONS:MQT4} -LIB_DEPENDS+= Qt4Pas.5:${PORTSDIR}/x11-toolkits/qt4pas +LIB_DEPENDS+= libQt4Pas.so:${PORTSDIR}/x11-toolkits/qt4pas LCL_PLATFORM= qt BUILD_DEPENDS+= ${LCL_UNITS_DIR}/${LCL_PLATFORM}/interfaces.ppu:${PORTSDIR}/editors/lazarus-lcl-qt .endif Modified: head/net/click/Makefile ============================================================================== --- head/net/click/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/net/click/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -97,7 +97,7 @@ NO_STAGE= yes .if ${PORT_OPTIONS:MXML_EXPAT} CONFIGURE_ARGS+= --with-expat=${LOCALBASE} -LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2 +LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2 PLIST_SUB+= XMLCLICK="" .else PLIST_SUB+= XMLCLICK="@comment " Modified: head/net/httping/Makefile ============================================================================== --- head/net/httping/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/net/httping/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -33,7 +33,7 @@ MAKE_ENV+= NC=no .if ${PORT_OPTIONS:MFFTW} MAKE_ENV+= FW=yes -LIB_DEPENDS+= fftw3:${PORTSDIR}/math/fftw3 +LIB_DEPENDS+= libfftw3.so:${PORTSDIR}/math/fftw3 .else MAKE_ENV+= FW=no .endif Modified: head/net/mediatomb/Makefile ============================================================================== --- head/net/mediatomb/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/net/mediatomb/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -69,7 +69,7 @@ LIBEXTRACTOR_DESC= libextractor support CONFIGURE_ARGS+= --enable-sqlite3 \ --with-sqlite3-h="${LOCALBASE}/include" \ --with-sqlite3-libs="${LOCALBASE}/lib" -LIB_DEPENDS+= sqlite3:${PORTSDIR}/databases/sqlite3 +LIB_DEPENDS+= libsqlite3.so:${PORTSDIR}/databases/sqlite3 .else CONFIGURE_ARGS+= --disable-sqlite3 .endif @@ -86,7 +86,7 @@ CONFIGURE_ARGS+= --disable-mysql CONFIGURE_ARGS+= --enable-libjs \ --with-js-h="${LOCALBASE}/include" \ --with-js-libs="${LOCALBASE}/lib" -LIB_DEPENDS+= js:${PORTSDIR}/lang/spidermonkey17 +LIB_DEPENDS+= libjs.so:${PORTSDIR}/lang/spidermonkey17 .else CONFIGURE_ARGS+= --disable-libjs .endif @@ -95,7 +95,7 @@ CONFIGURE_ARGS+= --disable-libjs CONFIGURE_ARGS+= --enable-libexif \ --with-libexif-h="${LOCALBASE}/include" \ --with-libexif-libs="${LOCALBASE}/lib" -LIB_DEPENDS+= exif:${PORTSDIR}/graphics/libexif +LIB_DEPENDS+= libexif.so:${PORTSDIR}/graphics/libexif .else CONFIGURE_ARGS+= --disable-libexif .endif @@ -110,7 +110,7 @@ CONFIGURE_ARGS+= --disable-external-tran CONFIGURE_ARGS+= --enable-ffmpegthumbnailer \ --with-ffmpegthumbnailer-h="${LOCALBASE}/include" \ --with-ffmpegthumbnailer-libs="${LOCALBASE}/lib" -LIB_DEPENDS+= ffmpegthumbnailer:${PORTSDIR}/multimedia/ffmpegthumbnailer +LIB_DEPENDS+= libffmpegthumbnailer.so:${PORTSDIR}/multimedia/ffmpegthumbnailer .else CONFIGURE_ARGS+= --disable-ffmpegthumbnailer .endif @@ -119,14 +119,14 @@ CONFIGURE_ARGS+= --disable-ffmpegthumbna .if ${PORT_OPTIONS:MCURL} && ${PORT_OPTIONS:MEXTERNAL_TRANSCODING} CONFIGURE_ARGS+= --enable-curl \ --with-curl-cfg="${LOCALBASE}/bin/curl-config" -LIB_DEPENDS+= curl:${PORTSDIR}/ftp/curl +LIB_DEPENDS+= libcurl.so:${PORTSDIR}/ftp/curl .else CONFIGURE_ARGS+= --disable-curl .endif .if ${PORT_OPTIONS:MFFMPEG} CONFIGURE_ARGS+= --enable-ffmpeg -LIB_DEPENDS+= avformat:${PORTSDIR}/multimedia/ffmpeg +LIB_DEPENDS+= libavformat.so:${PORTSDIR}/multimedia/ffmpeg .else CONFIGURE_ARGS+= --disable-ffmpeg .endif @@ -135,7 +135,7 @@ CONFIGURE_ARGS+= --disable-ffmpeg CONFIGURE_ARGS+= --enable-libextractor \ --with-extractor-h="${LOCALBASE}/include" \ --with-extractor-libs="${LOCALBASE}/lib" -LIB_DEPENDS+= extractor:${PORTSDIR}/textproc/libextractor +LIB_DEPENDS+= libextractor.so:${PORTSDIR}/textproc/libextractor .else CONFIGURE_ARGS+= --disable-libextractor .endif @@ -144,7 +144,7 @@ CONFIGURE_ARGS+= --disable-libextractor CONFIGURE_ARGS+= --enable-id3lib \ --with-id3lib-h="${LOCALBASE}/include" \ --with-id3lib-libs="${LOCALBASE}/lib" -LIB_DEPENDS+= id3:${PORTSDIR}/audio/id3lib +LIB_DEPENDS+= libid3.so:${PORTSDIR}/audio/id3lib .else CONFIGURE_ARGS+= --disable-id3lib .endif @@ -152,7 +152,7 @@ CONFIGURE_ARGS+= --disable-id3lib .if ${PORT_OPTIONS:MTAGLIB} CONFIGURE_ARGS+= --enable-taglib \ --with-taglib-cfg="${LOCALBASE}/bin/taglib-config" -LIB_DEPENDS+= tag:${PORTSDIR}/audio/taglib +LIB_DEPENDS+= libtag.so:${PORTSDIR}/audio/taglib .else CONFIGURE_ARGS+= --disable-taglib .endif Modified: head/net/openldap24-server/Makefile ============================================================================== --- head/net/openldap24-server/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/net/openldap24-server/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -471,7 +471,7 @@ PLIST_SUB+= SLAPI="@comment " .if ${PORT_OPTIONS:MSLP} CONFIGURE_ARGS+= --enable-slp -LIB_DEPENDS+= slp.1:${PORTSDIR}/net/openslp +LIB_DEPENDS+= libslp.so:${PORTSDIR}/net/openslp .endif # Include tcp-wrapper support Modified: head/net/openser/Makefile ============================================================================== --- head/net/openser/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/net/openser/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -80,7 +80,7 @@ MAKE_ENV+= POSTGRESQL=postgres .endif .if ${PORT_OPTIONS:MUNIXODBC} -LIB_DEPENDS+= odbc.2:${PORTSDIR}/databases/unixODBC +LIB_DEPENDS+= libodbc.so:${PORTSDIR}/databases/unixODBC MODULES+= unixodbc .else MAKE_ENV+= UNIXODBC=unixodbc Modified: head/net/quagga-re/Makefile ============================================================================== --- head/net/quagga-re/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/net/quagga-re/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -114,7 +114,7 @@ CONFIGURE_ARGS+=--enable-rtadv .if ${PORT_OPTIONS:MSNMP} CONFIGURE_ARGS+=--enable-snmp -LIB_DEPENDS+=netsnmp:${PORTSDIR}/net-mgmt/net-snmp +LIB_DEPENDS+=libnetsnmp.so:${PORTSDIR}/net-mgmt/net-snmp .endif .if ${PORT_OPTIONS:MTCPSOCKETS} @@ -122,7 +122,7 @@ CONFIGURE_ARGS+=--enable-tcp-zebra .endif .if ${PORT_OPTIONS:MDLMALLOC} -LIB_DEPENDS+=dlmalloc:${PORTSDIR}/devel/libdlmalloc +LIB_DEPENDS+=libdlmalloc.so:${PORTSDIR}/devel/libdlmalloc LDFLAGS+=-ldlmalloc SUB_LIST= RCLDCONFIG=ldconfig .else Modified: head/net/rabbitmq-c-devel/Makefile ============================================================================== --- head/net/rabbitmq-c-devel/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/net/rabbitmq-c-devel/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -46,7 +46,7 @@ CONFIGURE_ARGS+= --enable-64-bit .endif .if ${PORT_OPTIONS:MPOPT} -LIB_DEPENDS+= popt.0:${PORTSDIR}/devel/popt +LIB_DEPENDS+= libpopt.so:${PORTSDIR}/devel/popt CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib Modified: head/net/shmux/Makefile ============================================================================== --- head/net/shmux/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/net/shmux/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -27,7 +27,7 @@ RUN_DEPENDS+= fping:${PORTSDIR}/net/fpin .endif .if ${PORT_OPTIONS:MPCRE} -LIB_DEPENDS+= pcre.3:${PORTSDIR}/devel/pcre +LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre CONFIGURE_ARGS+= --with-pcre=${LOCALBASE}/lib .else CONFIGURE_ARGS+= --with-pcre=no Modified: head/net/spserver/Makefile ============================================================================== --- head/net/spserver/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/net/spserver/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -33,7 +33,7 @@ PLIST_SUB+= WITH_MATRIXSSL="@comment " .endif .if ${PORT_OPTIONS:MGNUTLS} -LIB_DEPENDS+= gnutls.26:${PORTSDIR}/security/gnutls +LIB_DEPENDS+= libgnutls.so:${PORTSDIR}/security/gnutls ALL_TARGET+= build_gnutls PLIST_SUB+= WITH_GNUTLS="" .else Modified: head/net/tcpdump/Makefile ============================================================================== --- head/net/tcpdump/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/net/tcpdump/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -52,7 +52,7 @@ CONFIGURE_ARGS+= --disable-smb .endif .if ${PORT_OPTIONS:MSMI} -LIB_DEPENDS+= smi:${PORTSDIR}/net-mgmt/libsmi +LIB_DEPENDS+= libsmi.so:${PORTSDIR}/net-mgmt/libsmi .else CONFIGURE_ARGS+= --disable-smi .endif Modified: head/net/trafshow3/Makefile ============================================================================== --- head/net/trafshow3/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/net/trafshow3/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -18,7 +18,7 @@ CONFLICTS= trafshow-[45].* .if defined(WITH_TRAFSHOW_SLANG) || \ (exists(${LOCALBASE}/lib/libslang.a) && !defined(WITHOUT_TRAFSHOW_SLANG)) -LIB_DEPENDS= slang.2:${PORTSDIR}/devel/libslang2 +LIB_DEPENDS= libslang.so:${PORTSDIR}/devel/libslang2 .endif GNU_CONFIGURE= yes Modified: head/net/wire/Makefile ============================================================================== --- head/net/wire/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/net/wire/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -27,7 +27,7 @@ MAN1= wire.1 #.include .if exists(${LOCALBASE}/lib/libreadline.so.6) -LIB_DEPENDS+= readline.6:${PORTSDIR}/devel/readline +LIB_DEPENDS+= libreadline.so.6:${PORTSDIR}/devel/readline .endif #.include Modified: head/news/inn/Makefile ============================================================================== --- head/news/inn/Makefile Wed Jul 16 08:13:58 2014 (r362049) +++ head/news/inn/Makefile Wed Jul 16 08:26:25 2014 (r362050) @@ -72,7 +72,7 @@ CONFIGURE_ARGS+= --with-berkeleydb=${LOC .if ${PORT_OPTIONS:MKERBEROS} . if exists(${LOCALBASE}/bin/krb5-config) -LIB_DEPENDS+= gssapi_krb5:${PORTSDIR}/security/krb5 +LIB_DEPENDS+= libgssapi_krb5.so:${PORTSDIR}/security/krb5 CONFIGURE_ARGS+= --with-kerberos=${LOCALBASE} . else CONFIGURE_ARGS+= --with-kerberos=/usr @@ -104,7 +104,7 @@ CONFIGURE_ARGS+= --enable-keywords .if ${PORT_OPTIONS:MSASL} CONFIGURE_ARGS+= --with-sasl=${LOCALBASE} -LIB_DEPENDS+= sasl2:${PORTSDIR}/security/cyrus-sasl2 +LIB_DEPENDS+= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2 .endif .if ${PORT_OPTIONS:MTAGGED_HASH}