From owner-svn-ports-all@FreeBSD.ORG Thu Dec 12 10:53:43 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 46EC0704; Thu, 12 Dec 2013 10:53:43 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 30150133C; Thu, 12 Dec 2013 10:53:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCArh9w060146; Thu, 12 Dec 2013 10:53:43 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBCArc6g060121; Thu, 12 Dec 2013 10:53:38 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201312121053.rBCArc6g060121@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 12 Dec 2013 10:53:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r336253 - in head: devel/avro-cpp devel/cocaine-core devel/codeblocks devel/eblob devel/kdesdk4 devel/kdevplatform devel/libiqxmlrpc devel/libslave devel/luabind devel/mongo-cxx-driver ... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 10:53:43 -0000 Author: bapt Date: Thu Dec 12 10:53:38 2013 New Revision: 336253 URL: http://svnweb.freebsd.org/changeset/ports/336253 Log: Convert LIB_DEPENDS for ports depending on boost Modified: head/devel/avro-cpp/Makefile head/devel/cocaine-core/Makefile head/devel/codeblocks/Makefile head/devel/eblob/Makefile head/devel/kdesdk4/Makefile head/devel/kdevplatform/Makefile head/devel/libiqxmlrpc/Makefile head/devel/libslave/Makefile head/devel/luabind/Makefile head/devel/mongo-cxx-driver/Makefile head/devel/nemiver/Makefile head/devel/ros/Makefile head/devel/sdts++/Makefile head/devel/smack/Makefile head/devel/subcommander2/Makefile head/devel/uatraits/Makefile head/devel/xsd/Makefile head/editors/calligra/Makefile head/editors/madedit/Makefile head/emulators/mupen64plus-core/Makefile.common head/finance/quantlib/Makefile Modified: head/devel/avro-cpp/Makefile ============================================================================== --- head/devel/avro-cpp/Makefile Thu Dec 12 09:37:51 2013 (r336252) +++ head/devel/avro-cpp/Makefile Thu Dec 12 10:53:38 2013 (r336253) @@ -13,7 +13,7 @@ DISTNAME= ${PORTNAME}-src-${PORTVERSION} MAINTAINER= vg@FreeBSD.org COMMENT= Data serialization system for C++ -LIB_DEPENDS= boost_regex:${PORTSDIR}/devel/boost-libs +LIB_DEPENDS= libboost_regex.so:${PORTSDIR}/devel/boost-libs USES= cmake USE_LDCONFIG= yes Modified: head/devel/cocaine-core/Makefile ============================================================================== --- head/devel/cocaine-core/Makefile Thu Dec 12 09:37:51 2013 (r336252) +++ head/devel/cocaine-core/Makefile Thu Dec 12 10:53:38 2013 (r336253) @@ -12,12 +12,12 @@ COMMENT= Cocaine Application Engine LICENSE= GPLv3 -LIB_DEPENDS= boost_iostreams:${PORTSDIR}/devel/boost-libs \ - ev:${PORTSDIR}/devel/libev \ - ltdl:${PORTSDIR}/devel/libltdl \ - msgpack:${PORTSDIR}/devel/msgpack \ - uuid:${PORTSDIR}/misc/e2fsprogs-libuuid \ - zmq:${PORTSDIR}/net/libzmq2 +LIB_DEPENDS= libboost_iostreams.so:${PORTSDIR}/devel/boost-libs \ + libev.so:${PORTSDIR}/devel/libev \ + libltdl.so:${PORTSDIR}/devel/libltdl \ + libmsgpack.so:${PORTSDIR}/devel/msgpack \ + libuuid.so:${PORTSDIR}/misc/e2fsprogs-libuuid \ + libzmq.so:${PORTSDIR}/net/libzmq2 USES= cmake USE_GCC= yes Modified: head/devel/codeblocks/Makefile ============================================================================== --- head/devel/codeblocks/Makefile Thu Dec 12 09:37:51 2013 (r336252) +++ head/devel/codeblocks/Makefile Thu Dec 12 10:53:38 2013 (r336253) @@ -14,9 +14,9 @@ LICENSE= GPLv3 LGPL3 LICENSE_COMB= multi BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip -LIB_DEPENDS= boost_system:${PORTSDIR}/devel/boost-libs \ - hunspell:${PORTSDIR}/textproc/hunspell \ - rsync:${PORTSDIR}/net/librsync +LIB_DEPENDS= libboost_system.so:${PORTSDIR}/devel/boost-libs \ + libhunspell.so:${PORTSDIR}/textproc/hunspell \ + librsync.so:${PORTSDIR}/net/librsync RUN_DEPENDS= update-mime-database:${PORTSDIR}/misc/shared-mime-info USES= pkgconfig Modified: head/devel/eblob/Makefile ============================================================================== --- head/devel/eblob/Makefile Thu Dec 12 09:37:51 2013 (r336252) +++ head/devel/eblob/Makefile Thu Dec 12 10:53:38 2013 (r336253) @@ -10,7 +10,7 @@ COMMENT= Append-only low-level I/O libra LICENSE= GPLv2 -LIB_DEPENDS= boost_iostreams:${PORTSDIR}/devel/boost-libs +LIB_DEPENDS= libboost_iostreams.so:${PORTSDIR}/devel/boost-libs USE_GITHUB= yes GH_ACCOUNT= zloidemon @@ -34,7 +34,7 @@ CMAKE_ARGS+= -DWITH_ASSERTS=OFF .endif .if ${PORT_OPTIONS:MPYTHON} -LIB_DEPENDS+= boost_python:${PORTSDIR}/devel/boost-python-libs +LIB_DEPENDS+= libboost_python.so:${PORTSDIR}/devel/boost-python-libs USE_PYTHON= yes CMAKE_ARGS+= -DWITH_PYTHON=ON INSTALLS_EGGINFO= yes @@ -46,7 +46,7 @@ PLIST_SUB+= PYTHON="@comment " .endif .if ${PORT_OPTIONS:MSNAPPY} -LIB_DEPENDS+= snappy:${PORTSDIR}/archivers/snappy +LIB_DEPENDS+= libsnappy.so:${PORTSDIR}/archivers/snappy CMAKE_ARGS+= -DWITH_SNAPPY=ON .else CMAKE_ARGS+= -DWITH_SNAPPY=OFF Modified: head/devel/kdesdk4/Makefile ============================================================================== --- head/devel/kdesdk4/Makefile Thu Dec 12 09:37:51 2013 (r336252) +++ head/devel/kdesdk4/Makefile Thu Dec 12 10:53:38 2013 (r336253) @@ -12,10 +12,10 @@ DIST_SUBDIR= KDE/${PORTVERSION} MAINTAINER= kde@FreeBSD.org COMMENT= KDE Software Development Kit -LIB_DEPENDS= svn_client-1.0:${PORTSDIR}/devel/subversion \ - boost_thread:${PORTSDIR}/devel/boost-libs \ - hunspell-1.3.0:${PORTSDIR}/textproc/hunspell \ - qca.2:${PORTSDIR}/devel/qca +LIB_DEPENDS= libsvn_client-1.so:${PORTSDIR}/devel/subversion \ + libboost_thread.so:${PORTSDIR}/devel/boost-libs \ + libhunspell-1.3.so:${PORTSDIR}/textproc/hunspell \ + libqca.so:${PORTSDIR}/devel/qca BUILD_DEPENDS= ${LOCALBASE}/include/ltdl.h:${PORTSDIR}/devel/libltdl RUN_DEPENDS= bash:${PORTSDIR}/shells/bash Modified: head/devel/kdevplatform/Makefile ============================================================================== --- head/devel/kdevplatform/Makefile Thu Dec 12 09:37:51 2013 (r336252) +++ head/devel/kdevplatform/Makefile Thu Dec 12 10:53:38 2013 (r336253) @@ -11,10 +11,10 @@ DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= Set of libraries for KDE IDE-like programs -LIB_DEPENDS= svn_client-1:${PORTSDIR}/devel/subversion \ - boost_thread:${PORTSDIR}/devel/boost-libs \ - qjson:${PORTSDIR}/devel/qjson \ - grantlee_gui:${PORTSDIR}/devel/grantlee +LIB_DEPENDS= libsvn_client-1.so:${PORTSDIR}/devel/subversion \ + libboost_thread.so:${PORTSDIR}/devel/boost-libs \ + libqjson.so:${PORTSDIR}/devel/qjson \ + libgrantlee_gui.so:${PORTSDIR}/devel/grantlee USE_KDE4= kate_run kdehier kdelibs kdeprefix automoc4 USE_QT4= qmake_build moc_build uic_build rcc_build \ Modified: head/devel/libiqxmlrpc/Makefile ============================================================================== --- head/devel/libiqxmlrpc/Makefile Thu Dec 12 09:37:51 2013 (r336252) +++ head/devel/libiqxmlrpc/Makefile Thu Dec 12 10:53:38 2013 (r336253) @@ -13,7 +13,7 @@ COMMENT= Free, object-oriented XML-RPC i .if !defined(NOPORTDOCS) BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen .endif -LIB_DEPENDS= boost_thread:${PORTSDIR}/devel/boost-libs +LIB_DEPENDS= libboost_thread.so:${PORTSDIR}/devel/boost-libs LICENSE= BSD Modified: head/devel/libslave/Makefile ============================================================================== --- head/devel/libslave/Makefile Thu Dec 12 09:37:51 2013 (r336252) +++ head/devel/libslave/Makefile Thu Dec 12 10:53:38 2013 (r336253) @@ -12,7 +12,7 @@ COMMENT= Mysql replication client librar LICENSE= GPLv3 -LIB_DEPENDS= boost_thread:${PORTSDIR}/devel/boost-libs +LIB_DEPENDS= libboost_thread.so:${PORTSDIR}/devel/boost-libs DATE= 20121210 USES= cmake Modified: head/devel/luabind/Makefile ============================================================================== --- head/devel/luabind/Makefile Thu Dec 12 09:37:51 2013 (r336252) +++ head/devel/luabind/Makefile Thu Dec 12 10:53:38 2013 (r336253) @@ -10,7 +10,7 @@ MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= Library that helps you create bindings between C++ and Lua -LIB_DEPENDS= boost_python:${PORTSDIR}/devel/boost-python-libs +LIB_DEPENDS= libboost_python.so:${PORTSDIR}/devel/boost-python-libs USE_LUA= 5.1+ USE_LDCONFIG= yes Modified: head/devel/mongo-cxx-driver/Makefile ============================================================================== --- head/devel/mongo-cxx-driver/Makefile Thu Dec 12 09:37:51 2013 (r336252) +++ head/devel/mongo-cxx-driver/Makefile Thu Dec 12 10:53:38 2013 (r336253) @@ -12,8 +12,8 @@ COMMENT= C++ 2.4 Driver for MongoDB LICENSE= AL2 LICENSE_FILE= ${WRKSRC}/LICENSE.txt -LIB_DEPENDS= boost_system:${PORTSDIR}/devel/boost-libs \ - sasl2:${PORTSDIR}/security/cyrus-sasl2 +LIB_DEPENDS= libboost_system.so:${PORTSDIR}/devel/boost-libs \ + libsasl2.so:${PORTSDIR}/security/cyrus-sasl2 USE_GITHUB= yes GH_ACCOUNT= waitman Modified: head/devel/nemiver/Makefile ============================================================================== --- head/devel/nemiver/Makefile Thu Dec 12 09:37:51 2013 (r336252) +++ head/devel/nemiver/Makefile Thu Dec 12 10:53:38 2013 (r336253) @@ -12,11 +12,11 @@ DIST_SUBDIR= gnome2 MAINTAINER= romain@FreeBSD.org COMMENT= A C/C++ Debugger for GNOME -LIB_DEPENDS= boost_unit_test_framework:${PORTSDIR}/devel/boost-libs \ - gtop-2.0:${PORTSDIR}/devel/libgtop \ - sqlite3:${PORTSDIR}/databases/sqlite3 \ - glademm-2.4:${PORTSDIR}/devel/libglademm24 \ - gtksourceviewmm-2:${PORTSDIR}/x11-toolkits/libgtksourceviewmm +LIB_DEPENDS= libboost_unit_test_framework.so:${PORTSDIR}/devel/boost-libs \ + libgtop-2.0.so:${PORTSDIR}/devel/libgtop \ + libsqlite3.so:${PORTSDIR}/databases/sqlite3 \ + libglademm-2.4.so:${PORTSDIR}/devel/libglademm24 \ + libgtksourceviewmm-2.so:${PORTSDIR}/x11-toolkits/libgtksourceviewmm BUILD_DEPENDS= ${LOCALBASE}/bin/gdb:${PORTSDIR}/devel/gdb RUN_DEPENDS= ${LOCALBASE}/bin/gdb:${PORTSDIR}/devel/gdb Modified: head/devel/ros/Makefile ============================================================================== --- head/devel/ros/Makefile Thu Dec 12 09:37:51 2013 (r336252) +++ head/devel/ros/Makefile Thu Dec 12 10:53:38 2013 (r336253) @@ -16,8 +16,8 @@ LICENSE= BSD STACKNAME= ${PORTNAME:S/ros-//} CFLAGS+= -I${LOCALBASE}/include -LIB_DEPENDS= boost_python:${PORTSDIR}/devel/boost-python-libs \ - gtest:${PORTSDIR}/devel/googletest +LIB_DEPENDS= libboost_python.so:${PORTSDIR}/devel/boost-python-libs \ + libgtest.so:${PORTSDIR}/devel/googletest # we need cmake and gmake for the build, but the build is triggered by make BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/yaml/__init__.py:${PORTSDIR}/devel/py-yaml \ bash:${PORTSDIR}/shells/bash \ Modified: head/devel/sdts++/Makefile ============================================================================== --- head/devel/sdts++/Makefile Thu Dec 12 09:37:51 2013 (r336252) +++ head/devel/sdts++/Makefile Thu Dec 12 10:53:38 2013 (r336253) @@ -11,7 +11,7 @@ MASTER_SITES= http://thor-f5.er.usgs.gov MAINTAINER= ports@FreeBSD.org COMMENT= C++ library for SDTS related development -LIB_DEPENDS= boost_thread:${PORTSDIR}/devel/boost-libs +LIB_DEPENDS= libboost_thread.so:${PORTSDIR}/devel/boost-libs DOS2UNIX_FILES= sdts++/io/sio_Utils.cpp USES= bison dos2unix gmake Modified: head/devel/smack/Makefile ============================================================================== --- head/devel/smack/Makefile Thu Dec 12 09:37:51 2013 (r336252) +++ head/devel/smack/Makefile Thu Dec 12 10:53:38 2013 (r336253) @@ -11,8 +11,8 @@ COMMENT= Low-level I/O storage library w LICENSE= GPLv2 -LIB_DEPENDS= boost_iostreams:${PORTSDIR}/devel/boost-libs \ - snappy:${PORTSDIR}/archivers/snappy +LIB_DEPENDS= libboost_iostreams.so:${PORTSDIR}/devel/boost-libs \ + libsnappy.so:${PORTSDIR}/archivers/snappy USE_GITHUB= yes GH_ACCOUNT= zloidemon Modified: head/devel/subcommander2/Makefile ============================================================================== --- head/devel/subcommander2/Makefile Thu Dec 12 09:37:51 2013 (r336252) +++ head/devel/subcommander2/Makefile Thu Dec 12 10:53:38 2013 (r336253) @@ -13,8 +13,8 @@ COMMENT= Qt4 based multiplatform subvers LICENSE= GPLv2 -LIB_DEPENDS= boost_thread:${PORTSDIR}/devel/boost-libs \ - svn_client-1:${PORTSDIR}/devel/subversion +LIB_DEPENDS= libboost_thread.so:${PORTSDIR}/devel/boost-libs \ + libsvn_client-1.so:${PORTSDIR}/devel/subversion LATEST_LINK= subcommander2 CONFLICTS= subcommander-1.* Modified: head/devel/uatraits/Makefile ============================================================================== --- head/devel/uatraits/Makefile Thu Dec 12 09:37:51 2013 (r336252) +++ head/devel/uatraits/Makefile Thu Dec 12 10:53:38 2013 (r336253) @@ -12,9 +12,9 @@ COMMENT= User-Agent detection library BUILD_DEPENDS= autoconf:${PORTSDIR}/devel/autoconf \ automake:${PORTSDIR}/devel/automake \ libtool:${PORTSDIR}/devel/libtool -LIB_DEPENDS= boost_python:${PORTSDIR}/devel/boost-python-libs \ - pcre:${PORTSDIR}/devel/pcre \ - xml2:${PORTSDIR}/textproc/libxml2 +LIB_DEPENDS= libboost_python.so:${PORTSDIR}/devel/boost-python-libs \ + libpcre.so:${PORTSDIR}/devel/pcre \ + libxml2.so:${PORTSDIR}/textproc/libxml2 USES= pkgconfig GNU_CONFIGURE= yes Modified: head/devel/xsd/Makefile ============================================================================== --- head/devel/xsd/Makefile Thu Dec 12 09:37:51 2013 (r336252) +++ head/devel/xsd/Makefile Thu Dec 12 10:53:38 2013 (r336253) @@ -17,8 +17,8 @@ LICENSE_FILE= ${WRKSRC}/xsd/LICENSE # check if things still work to get rid of the shells/bash dependency. BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash \ gm4:${PORTSDIR}/devel/m4 -LIB_DEPENDS= boost_filesystem:${PORTSDIR}/devel/boost-libs \ - xerces-c.3:${PORTSDIR}/textproc/xerces-c3 +LIB_DEPENDS= libboost_filesystem.so:${PORTSDIR}/devel/boost-libs \ + libxerces-c.so.3:${PORTSDIR}/textproc/xerces-c3 ALL_TARGET= # no default target should be passed to gmake. CXXFLAGS+= -I${LOCALBASE}/include Modified: head/editors/calligra/Makefile ============================================================================== --- head/editors/calligra/Makefile Thu Dec 12 09:37:51 2013 (r336252) +++ head/editors/calligra/Makefile Thu Dec 12 10:53:38 2013 (r336253) @@ -11,26 +11,26 @@ DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= KDE graphic art and office suite -LIB_DEPENDS= png15:${PORTSDIR}/graphics/png \ - IlmImf:${PORTSDIR}/graphics/OpenEXR \ - boost_thread:${PORTSDIR}/devel/boost-libs \ - qca:${PORTSDIR}/devel/qca \ - exiv2:${PORTSDIR}/graphics/exiv2 \ - lcms2:${PORTSDIR}/graphics/lcms2 \ - fontconfig:${PORTSDIR}/x11-fonts/fontconfig \ - freetype:${PORTSDIR}/print/freetype2 \ - wpd-0.9:${PORTSDIR}/textproc/libwpd \ - wpg-0.2:${PORTSDIR}/graphics/libwpg \ - poppler-qt4:${PORTSDIR}/graphics/poppler-qt4 \ - openjpeg:${PORTSDIR}/graphics/openjpeg \ - jpeg:${PORTSDIR}/graphics/jpeg \ - dcmdata:${PORTSDIR}/devel/dcmtk \ - fftw3:${PORTSDIR}/math/fftw3 \ - tiff:${PORTSDIR}/graphics/tiff \ - gsl:${PORTSDIR}/math/gsl \ - wps-0.2:${PORTSDIR}/textproc/libwps \ - visio-0.0:${PORTSDIR}/textproc/libvisio \ - OpenColorIO:${PORTSDIR}/graphics/opencolorio +LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png \ + libIlmImf.so:${PORTSDIR}/graphics/OpenEXR \ + libboost_thread.so:${PORTSDIR}/devel/boost-libs \ + libqca.so:${PORTSDIR}/devel/qca \ + libexiv2.so:${PORTSDIR}/graphics/exiv2 \ + liblcms2.so:${PORTSDIR}/graphics/lcms2 \ + libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig \ + libfreetype.so:${PORTSDIR}/print/freetype2 \ + libwpd-0.9.so:${PORTSDIR}/textproc/libwpd \ + libwpg-0.2.so:${PORTSDIR}/graphics/libwpg \ + libpoppler-qt4.so:${PORTSDIR}/graphics/poppler-qt4 \ + libopenjpeg.so:${PORTSDIR}/graphics/openjpeg \ + libjpeg.so:${PORTSDIR}/graphics/jpeg \ + libdcmdata.so:${PORTSDIR}/devel/dcmtk \ + libfftw3.so:${PORTSDIR}/math/fftw3 \ + libtiff.so:${PORTSDIR}/graphics/tiff \ + libgsl.so:${PORTSDIR}/math/gsl \ + libwps-0.2.so:${PORTSDIR}/textproc/libwps \ + libvisio-0.0.so:${PORTSDIR}/textproc/libvisio \ + libOpenColorIO.so:${PORTSDIR}/graphics/opencolorio BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/eigen2.pc:${PORTSDIR}/math/eigen2 CONFLICTS= koffice-kde4-2.* Modified: head/editors/madedit/Makefile ============================================================================== --- head/editors/madedit/Makefile Thu Dec 12 09:37:51 2013 (r336252) +++ head/editors/madedit/Makefile Thu Dec 12 10:53:38 2013 (r336253) @@ -16,7 +16,7 @@ USES= gettext pkgconfig dos2unix USE_WX= 2.6+ WANT_UNICODE= yes -LIB_DEPENDS+= boost_regex:${PORTSDIR}/devel/boost-libs +LIB_DEPENDS+= libboost_regex.so:${PORTSDIR}/devel/boost-libs GNU_CONFIGURE= yes CONFIGURE_ARGS+=--with-wx-config=${WX_CONFIG} Modified: head/emulators/mupen64plus-core/Makefile.common ============================================================================== --- head/emulators/mupen64plus-core/Makefile.common Thu Dec 12 09:37:51 2013 (r336252) +++ head/emulators/mupen64plus-core/Makefile.common Thu Dec 12 10:53:38 2013 (r336253) @@ -9,8 +9,8 @@ EXTRACT_AFTER_ARGS?= "${DISTNAME}/source "${DISTNAME}/source/${PORTNAME}${PKGNAMESUFFIX}/*" .if ${PKGNAMESUFFIX} == "-core" -LIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2 \ - png15:${PORTSDIR}/graphics/png +LIB_DEPENDS+= libfreetype.so:${PORTSDIR}/print/freetype2 \ + libpng15.so:${PORTSDIR}/graphics/png .else PLIST= ${WRKDIR}/pkg-plist .endif @@ -20,11 +20,11 @@ MAN6= mupen64plus.6 .endif .if ${PKGNAMESUFFIX} == "-video-rice" -LIB_DEPENDS+= png15:${PORTSDIR}/graphics/png +LIB_DEPENDS+= libpng15.so:${PORTSDIR}/graphics/png .endif .if ${PKGNAMESUFFIX} == "-video-glide64mk" -LIB_DEPENDS+= boost_thread:${PORTSDIR}/devel/boost-libs +LIB_DEPENDS+= libboost_thread.so:${PORTSDIR}/devel/boost-libs .endif .if ${PKGNAMESUFFIX} != "-core" Modified: head/finance/quantlib/Makefile ============================================================================== --- head/finance/quantlib/Makefile Thu Dec 12 09:37:51 2013 (r336252) +++ head/finance/quantlib/Makefile Thu Dec 12 10:53:38 2013 (r336253) @@ -11,7 +11,7 @@ DISTNAME= QuantLib-${PORTVERSION} MAINTAINER= dikshie@sfc.wide.ad.jp COMMENT= A comprehensive software framework for quantitative finance -LIB_DEPENDS= boost_thread:${PORTSDIR}/devel/boost-libs +LIB_DEPENDS= libboost_thread.so:${PORTSDIR}/devel/boost-libs WRKSRC= ${WRKDIR}/QuantLib-${PORTVERSION}