From owner-svn-ports-head@FreeBSD.ORG Sun Jul 13 17:04:28 2014 Return-Path: Delivered-To: svn-ports-head@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 7534BCD; Sun, 13 Jul 2014 17:04:28 +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 62A7F271C; Sun, 13 Jul 2014 17:04:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6DH4SPO077514; Sun, 13 Jul 2014 17:04:28 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6DH4Sx9077512; Sun, 13 Jul 2014 17:04:28 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201407131704.s6DH4Sx9077512@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 13 Jul 2014 17:04:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361697 - in head/x11-wm: awesome2 spectrwm 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: Sun, 13 Jul 2014 17:04:28 -0000 Author: bapt Date: Sun Jul 13 17:04:27 2014 New Revision: 361697 URL: http://svnweb.freebsd.org/changeset/ports/361697 QAT: https://qat.redports.org/buildarchive/r361697/ Log: Convert to new LIB_DEPENDS With hat: portmgr Modified: head/x11-wm/awesome2/Makefile head/x11-wm/spectrwm/Makefile Modified: head/x11-wm/awesome2/Makefile ============================================================================== --- head/x11-wm/awesome2/Makefile Sun Jul 13 16:59:42 2014 (r361696) +++ head/x11-wm/awesome2/Makefile Sun Jul 13 17:04:27 2014 (r361697) @@ -13,8 +13,8 @@ COMMENT= A tiling window manager initial BUILD_DEPENDS= asciidoc:${PORTSDIR}/textproc/asciidoc \ xmlto:${PORTSDIR}/textproc/xmlto -LIB_DEPENDS= confuse.0:${PORTSDIR}/devel/libconfuse \ - cairo.2:${PORTSDIR}/graphics/cairo \ +LIB_DEPENDS= libconfuse.so:${PORTSDIR}/devel/libconfuse \ + libcairo.so:${PORTSDIR}/graphics/cairo \ libfreetype.so:${PORTSDIR}/print/freetype2 USES= iconv pkgconfig Modified: head/x11-wm/spectrwm/Makefile ============================================================================== --- head/x11-wm/spectrwm/Makefile Sun Jul 13 16:59:42 2014 (r361696) +++ head/x11-wm/spectrwm/Makefile Sun Jul 13 17:04:27 2014 (r361697) @@ -12,9 +12,9 @@ COMMENT= A small, dynamic tiling window LICENSE= ISCL -LIB_DEPENDS+= xcb-util:${PORTSDIR}/x11/xcb-util \ - xcb-icccm:${PORTSDIR}/x11/xcb-util-wm \ - xcb-keysyms:${PORTSDIR}/x11/xcb-util-keysyms +LIB_DEPENDS+= libxcb-util.so:${PORTSDIR}/x11/xcb-util \ + libxcb-icccm.so:${PORTSDIR}/x11/xcb-util-wm \ + libxcb-keysyms.so:${PORTSDIR}/x11/xcb-util-keysyms RUN_DEPENDS+= dmenu:${PORTSDIR}/x11/dmenu USE_XORG= x11 xcb xcursor xft xrandr xt