From owner-svn-ports-all@FreeBSD.ORG Sun Jul 13 16:59:44 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 32C53DF3; Sun, 13 Jul 2014 16:59:44 +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 1EE27268A; Sun, 13 Jul 2014 16:59:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6DGxhgw073423; Sun, 13 Jul 2014 16:59:43 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6DGxhKn073418; Sun, 13 Jul 2014 16:59:43 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201407131659.s6DGxhKn073418@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 13 Jul 2014 16:59:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361696 - in head/x11: bbdock gnome-shell keynav py-qt4-opengl xscreensaver-gnome 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 16:59:44 -0000 Author: bapt Date: Sun Jul 13 16:59:42 2014 New Revision: 361696 URL: http://svnweb.freebsd.org/changeset/ports/361696 QAT: https://qat.redports.org/buildarchive/r361696/ Log: Convert to new LIB_DEPENDS With hat: portmgr Modified: head/x11/bbdock/Makefile head/x11/gnome-shell/Makefile head/x11/keynav/Makefile head/x11/py-qt4-opengl/Makefile head/x11/xscreensaver-gnome/Makefile Modified: head/x11/bbdock/Makefile ============================================================================== --- head/x11/bbdock/Makefile Sun Jul 13 16:48:21 2014 (r361695) +++ head/x11/bbdock/Makefile Sun Jul 13 16:59:42 2014 (r361696) @@ -12,7 +12,7 @@ COMMENT= Application launcher for Blackb LICENSE= BSD -LIB_DEPENDS= png15:${PORTSDIR}/graphics/png +LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png GNU_CONFIGURE= yes USE_XORG= x11 @@ -23,12 +23,8 @@ PLIST_FILES= bin/bbdock OPTIONS_DEFINE= DOCS -.include - post-install: -.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR} -.endif .include Modified: head/x11/gnome-shell/Makefile ============================================================================== --- head/x11/gnome-shell/Makefile Sun Jul 13 16:48:21 2014 (r361695) +++ head/x11/gnome-shell/Makefile Sun Jul 13 16:59:42 2014 (r361696) @@ -12,10 +12,10 @@ DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org COMMENT= Next generation GNOME desktop shell -LIB_DEPENDS= startup-notification-1.0:${PORTSDIR}/x11/startup-notification \ - mutter-private.0:${PORTSDIR}/x11-wm/mutter \ - clutter-glx-1.0:${PORTSDIR}/graphics/clutter \ - gjs-gi:${PORTSDIR}/lang/gjs +LIB_DEPENDS= libstartup-notification-1.so:${PORTSDIR}/x11/startup-notification \ + libmutter-private.so:${PORTSDIR}/x11-wm/mutter \ + libclutter-glx-1.so:${PORTSDIR}/graphics/clutter \ + libgjs-gi.so:${PORTSDIR}/lang/gjs RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/dbus-python.pc:${PORTSDIR}/devel/py-dbus \ glxinfo:${PORTSDIR}/graphics/mesa-demos Modified: head/x11/keynav/Makefile ============================================================================== --- head/x11/keynav/Makefile Sun Jul 13 16:48:21 2014 (r361695) +++ head/x11/keynav/Makefile Sun Jul 13 16:59:42 2014 (r361696) @@ -10,8 +10,8 @@ MASTER_SITES= http://semicomplete.google MAINTAINER= wxs@FreeBSD.org COMMENT= Quickly select a portion of the screen using minimal keystrokes -LIB_DEPENDS= xdo.2:${PORTSDIR}/x11/xdotool \ - cairo.2:${PORTSDIR}/graphics/cairo +LIB_DEPENDS= libxdo.so:${PORTSDIR}/x11/xdotool \ + libcairo.so:${PORTSDIR}/graphics/cairo USES= gmake pkgconfig USE_GNOME= glib20 Modified: head/x11/py-qt4-opengl/Makefile ============================================================================== --- head/x11/py-qt4-opengl/Makefile Sun Jul 13 16:48:21 2014 (r361695) +++ head/x11/py-qt4-opengl/Makefile Sun Jul 13 16:59:42 2014 (r361696) @@ -45,7 +45,7 @@ ARGS= -b ${PREFIX}/bin \ ARGS+= --no-qsci-api PLIST_SUB+= API="@comment " .else -LIB_DEPENDS+= qscintilla2:${PORTSDIR}/devel/qscintilla2 +LIB_DEPENDS+= libqscintilla2.so:${PORTSDIR}/devel/qscintilla2 ARGS+= --qsci-api --qsci-api-destdir=${QSCIDIR} PLIST_SUB+= API="" .endif Modified: head/x11/xscreensaver-gnome/Makefile ============================================================================== --- head/x11/xscreensaver-gnome/Makefile Sun Jul 13 16:48:21 2014 (r361695) +++ head/x11/xscreensaver-gnome/Makefile Sun Jul 13 16:59:42 2014 (r361696) @@ -12,8 +12,8 @@ DISTNAME= xscreensaver-${PORTVERSION} MAINTAINER= gnome@FreeBSD.org COMMENT= Save your screen while you entertain your cat (for GNOME users) -LIB_DEPENDS= gle.4:${PORTSDIR}/graphics/gle \ - jpeg.11:${PORTSDIR}/graphics/jpeg +LIB_DEPENDS= libgle.so:${PORTSDIR}/graphics/gle \ + libjpeg.so:${PORTSDIR}/graphics/jpeg #CONFLICTS?= xscreensaver-[0-9]* xscreensaver-gnome-hacks-[0-9]*