From owner-svn-ports-all@FreeBSD.ORG Sun Jul 13 23:02:39 2014 Return-Path: Delivered-To: svn-ports-all@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 0B216EA2; Sun, 13 Jul 2014 23:02:39 +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 EB5BC2146; Sun, 13 Jul 2014 23:02:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6DN2ciM055552; Sun, 13 Jul 2014 23:02:38 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6DN2aHE055527; Sun, 13 Jul 2014 23:02:36 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201407132302.s6DN2aHE055527@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 13 Jul 2014 23:02:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361721 - in head/devel: baz cutter e4graph eiffelstudio entity flowdesigner gconf2 gpsim ifd-test jzmq kdevelop-php libccid libkgapi 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.18 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: Sun, 13 Jul 2014 23:02:39 -0000 Author: bapt Date: Sun Jul 13 23:02:35 2014 New Revision: 361721 URL: http://svnweb.freebsd.org/changeset/ports/361721 QAT: https://qat.redports.org/buildarchive/r361721/ Log: Modernize LIB_DEPENDS With hat: portmgr Modified: head/devel/baz/Makefile head/devel/cutter/Makefile head/devel/e4graph/Makefile head/devel/eiffelstudio/Makefile head/devel/entity/Makefile head/devel/flowdesigner/Makefile head/devel/gconf2/Makefile head/devel/gpsim/Makefile head/devel/ifd-test/Makefile head/devel/jzmq/Makefile head/devel/kdevelop-php/Makefile head/devel/libccid/Makefile head/devel/libkgapi/Makefile Modified: head/devel/baz/Makefile ============================================================================== --- head/devel/baz/Makefile Sun Jul 13 22:50:51 2014 (r361720) +++ head/devel/baz/Makefile Sun Jul 13 23:02:35 2014 (r361721) @@ -15,7 +15,7 @@ BUILD_DEPENDS= gpatch:${PORTSDIR}/devel/ gdiff:${PORTSDIR}/textproc/diffutils \ gtar:${PORTSDIR}/archivers/gtar RUN_DEPENDS:= ${BUILD_DEPENDS} -LIB_DEPENDS= neon.27:${PORTSDIR}/www/neon29 \ +LIB_DEPENDS= libneon.so:${PORTSDIR}/www/neon29 \ libgpgme.so:${PORTSDIR}/security/gpgme CONFLICTS= gd-2.* Modified: head/devel/cutter/Makefile ============================================================================== --- head/devel/cutter/Makefile Sun Jul 13 22:50:51 2014 (r361720) +++ head/devel/cutter/Makefile Sun Jul 13 23:02:35 2014 (r361721) @@ -10,8 +10,8 @@ MASTER_SITES= SF MAINTAINER= romain@FreeBSD.org COMMENT= Unit Testing Framework for C and C++ -LIB_DEPENDS= cairo:${PORTSDIR}/graphics/cairo \ - pangocairo:${PORTSDIR}/x11-toolkits/pango +LIB_DEPENDS= libcairo.so:${PORTSDIR}/graphics/cairo \ + libpangocairo.so:${PORTSDIR}/x11-toolkits/pango CPPFLAGS+= "-I${LOCALBASE}/include" CONFIGURE_ARGS= --disable-gtk-doc-html --with-html-dir=${PREFIX}/share/doc @@ -37,7 +37,7 @@ post-install: .if ${PORT_OPTIONS:MGOFFICE} CONFIGURE_ARGS+=--enable-goffice # the 0.8 is part of the library name don't remove it. -LIB_DEPENDS+= goffice-0.8:${PORTSDIR}/devel/goffice +LIB_DEPENDS+= libgoffice-0.8.so:${PORTSDIR}/devel/goffice PLIST_SUB+= GOFFICE="" .else CONFIGURE_ARGS+=--disable-goffice @@ -59,7 +59,7 @@ RUN_DEPENDS+= lcov:${PORTSDIR}/devel/lco .if ${PORT_OPTIONS:MSOUP} CONFIGURE_ARGS+=--enable-libsoup -LIB_DEPENDS+= soup-2:${PORTSDIR}/devel/libsoup +LIB_DEPENDS+= libsoup-2.so:${PORTSDIR}/devel/libsoup PLIST_SUB+= SOUP="" .else CONFIGURE_ARGS+=--disable-libsoup Modified: head/devel/e4graph/Makefile ============================================================================== --- head/devel/e4graph/Makefile Sun Jul 13 22:50:51 2014 (r361720) +++ head/devel/e4graph/Makefile Sun Jul 13 23:02:35 2014 (r361721) @@ -11,9 +11,9 @@ EXTRACT_SUFX= .src.tar.gz MAINTAINER= ports@FreeBSD.org COMMENT= C++ library that persistently stores graph like data -LIB_DEPENDS= mk4.0:${PORTSDIR}/databases/metakit \ - tcl${TCLVND}:${PORTSDIR}/lang/tcl${TCLVND} \ - expat.6:${PORTSDIR}/textproc/expat2 +LIB_DEPENDS= libmk4.so:${PORTSDIR}/databases/metakit \ + libtcl${TCLVND}.so:${PORTSDIR}/lang/tcl${TCLVND} \ + libexpat.so:${PORTSDIR}/textproc/expat2 WRKSRC= ${WRKDIR}/${DISTNAME}/all Modified: head/devel/eiffelstudio/Makefile ============================================================================== --- head/devel/eiffelstudio/Makefile Sun Jul 13 22:50:51 2014 (r361720) +++ head/devel/eiffelstudio/Makefile Sun Jul 13 23:02:35 2014 (r361721) @@ -20,7 +20,7 @@ DISTNAME= Eiffel${PORTVERSION:S/.//}_gpl MAINTAINER= ports@FreeBSD.org COMMENT= Complete Integrated Development Environment for Eiffel -LIB_DEPENDS= c.6:${PORTSDIR}/misc/compat6x +LIB_DEPENDS= libc.so.6:${PORTSDIR}/misc/compat6x USE_GNOME= gtk20 NO_BUILD= yes Modified: head/devel/entity/Makefile ============================================================================== --- head/devel/entity/Makefile Sun Jul 13 22:50:51 2014 (r361720) +++ head/devel/entity/Makefile Sun Jul 13 23:02:35 2014 (r361721) @@ -10,7 +10,7 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME} MAINTAINER= ports@FreeBSD.org COMMENT= Really rapid XML-based application development system -LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre +LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre RUN_DEPENDS= python:${PORTSDIR}/lang/python GNU_CONFIGURE= yes Modified: head/devel/flowdesigner/Makefile ============================================================================== --- head/devel/flowdesigner/Makefile Sun Jul 13 22:50:51 2014 (r361720) +++ head/devel/flowdesigner/Makefile Sun Jul 13 23:02:35 2014 (r361721) @@ -11,8 +11,8 @@ DISTNAME= FlowDesigner-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Free (GPL) "data flow oriented" development environment -LIB_DEPENDS= speex.1:${PORTSDIR}/audio/speex \ - fftw.2:${PORTSDIR}/math/fftw +LIB_DEPENDS= libspeex.so:${PORTSDIR}/audio/speex \ + libfftw.so:${PORTSDIR}/math/fftw USES= pathfix gmake pkgconfig USE_GNOME= libgnomeui libxml2 Modified: head/devel/gconf2/Makefile ============================================================================== --- head/devel/gconf2/Makefile Sun Jul 13 22:50:51 2014 (r361720) +++ head/devel/gconf2/Makefile Sun Jul 13 23:02:35 2014 (r361721) @@ -21,8 +21,8 @@ LICENSE_FILE= ${WRKSRC}/COPYING .if !defined(REFERENCE_PORT) -LIB_DEPENDS= dbus-glib-1:${PORTSDIR}/devel/dbus-glib \ - polkit-gobject-1:${PORTSDIR}/sysutils/polkit +LIB_DEPENDS= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \ + libpolkit-gobject-1.so:${PORTSDIR}/sysutils/polkit USES= pathfix gettext gmake pkgconfig USE_GNOME= gnomehier orbit2 gtk20 libxml2 ltverhack \ Modified: head/devel/gpsim/Makefile ============================================================================== --- head/devel/gpsim/Makefile Sun Jul 13 22:50:51 2014 (r361720) +++ head/devel/gpsim/Makefile Sun Jul 13 23:02:35 2014 (r361721) @@ -10,8 +10,8 @@ MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= Software simulator for Microchip PIC microcontrollers -LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \ - gtkextra-x11-2.0.1:${PORTSDIR}/x11-toolkits/gtkextra2 +LIB_DEPENDS= libpopt.so:${PORTSDIR}/devel/popt \ + libgtkextra-x11-2.0.so:${PORTSDIR}/x11-toolkits/gtkextra2 RUN_DEPENDS= gpasm:${PORTSDIR}/devel/gputils USE_AUTOTOOLS= libtool Modified: head/devel/ifd-test/Makefile ============================================================================== --- head/devel/ifd-test/Makefile Sun Jul 13 22:50:51 2014 (r361720) +++ head/devel/ifd-test/Makefile Sun Jul 13 23:02:35 2014 (r361721) @@ -10,7 +10,7 @@ MASTER_SITES= http://www.linuxnet.com/dr MAINTAINER= arved@FreeBSD.org COMMENT= IFD Test Suite for PC/SC Lite -LIB_DEPENDS= pcsclite.1:${PORTSDIR}/devel/pcsc-lite +LIB_DEPENDS= libpcsclite.so:${PORTSDIR}/devel/pcsc-lite USES= gmake NOMAN= Modified: head/devel/jzmq/Makefile ============================================================================== --- head/devel/jzmq/Makefile Sun Jul 13 22:50:51 2014 (r361720) +++ head/devel/jzmq/Makefile Sun Jul 13 23:02:35 2014 (r361721) @@ -10,7 +10,7 @@ DISTNAME= zeromq-${PORTNAME}-${PORTVERSI MAINTAINER= ports@FreeBSD.org COMMENT= Java bindings for ZeroMQ -LIB_DEPENDS= zmq.1:${PORTSDIR}/net/libzmq2 +LIB_DEPENDS= libzmq.so:${PORTSDIR}/net/libzmq2 USES= pkgconfig gmake USE_AUTOTOOLS= autoconf:env libtool automake:env Modified: head/devel/kdevelop-php/Makefile ============================================================================== --- head/devel/kdevelop-php/Makefile Sun Jul 13 22:50:51 2014 (r361720) +++ head/devel/kdevelop-php/Makefile Sun Jul 13 23:02:35 2014 (r361721) @@ -11,7 +11,7 @@ DIST_SUBDIR= KDE/kdevelop/${KDEVELOP_VER MAINTAINER= kde@FreeBSD.org COMMENT= PHP support for KDevelop -LIB_DEPENDS= kdevplatforminterfaces:${PORTSDIR}/devel/kdevplatform +LIB_DEPENDS= libkdevplatforminterfaces.so:${PORTSDIR}/devel/kdevplatform BUILD_DEPENDS= ${KDE4_PREFIX}/bin/kdev-pg-qt:${PORTSDIR}/devel/kdevelop-pg-qt USE_KDE4= kdehier kdelibs kdeprefix automoc4 Modified: head/devel/libccid/Makefile ============================================================================== --- head/devel/libccid/Makefile Sun Jul 13 22:50:51 2014 (r361720) +++ head/devel/libccid/Makefile Sun Jul 13 23:02:35 2014 (r361721) @@ -12,10 +12,9 @@ COMMENT= Generic USB CCID (Chip/Smart Ca LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING -LIB_DEPENDS= pcsclite.1:${PORTSDIR}/devel/pcsc-lite +LIB_DEPENDS= libpcsclite.so:${PORTSDIR}/devel/pcsc-lite -USE_BZIP2= yes -USES= pkgconfig perl5 +USES= pkgconfig perl5 tar:bzip2 GNU_CONFIGURE= yes USE_PERL5= build CONFIGURE_ARGS= --enable-usbdropdir=${PREFIX}/lib/pcsc/drivers \ Modified: head/devel/libkgapi/Makefile ============================================================================== --- head/devel/libkgapi/Makefile Sun Jul 13 22:50:51 2014 (r361720) +++ head/devel/libkgapi/Makefile Sun Jul 13 23:02:35 2014 (r361721) @@ -12,10 +12,9 @@ COMMENT= KDE-based library for accessing LICENSE= GPLv2 -LIB_DEPENDS= qjson.0:${PORTSDIR}/devel/qjson +LIB_DEPENDS= libqjson.so:${PORTSDIR}/devel/qjson -USE_BZIP2= yes -USES= cmake:outsource +USES= cmake:outsource tar:bzip2 USE_KDE4= automoc4 kdelibs kdeprefix kdehier pimlibs USE_LDCONFIG= yes USE_QT4= corelib network webkit xml \