From owner-svn-ports-all@FreeBSD.ORG Tue Jul 1 14:24:48 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 E3FC8D19; Tue, 1 Jul 2014 14:24:48 +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 B743F269F; Tue, 1 Jul 2014 14:24:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s61EOmXl005886; Tue, 1 Jul 2014 14:24:48 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s61EOm0b005881; Tue, 1 Jul 2014 14:24:48 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201407011424.s61EOm0b005881@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 1 Jul 2014 14:24:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r360017 - in head/editors: emacs23 setedit winefish 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: Tue, 01 Jul 2014 14:24:49 -0000 Author: bapt Date: Tue Jul 1 14:24:47 2014 New Revision: 360017 URL: http://svnweb.freebsd.org/changeset/ports/360017 QAT: https://qat.redports.org/buildarchive/r360017/ Log: Use modern LIB_DEPENDS With hat: portmgr Modified: head/editors/emacs23/Makefile head/editors/setedit/Makefile head/editors/winefish/Makefile Modified: head/editors/emacs23/Makefile ============================================================================== --- head/editors/emacs23/Makefile Tue Jul 1 14:21:47 2014 (r360016) +++ head/editors/emacs23/Makefile Tue Jul 1 14:24:47 2014 (r360017) @@ -75,7 +75,7 @@ OPTIONS_DEFAULT=DBUS GCONF GIF GTK2 JPEG OPTIONS_SUB= SOURCES -DBUS_LIB_DEPENDS= dbus-1:${PORTSDIR}/devel/dbus +DBUS_LIB_DEPENDS= libdbus-1.so:${PORTSDIR}/devel/dbus DBUS_CONFIGURE_WITH= dbus SOUND_CONFIGURE_WITH= sound Modified: head/editors/setedit/Makefile ============================================================================== --- head/editors/setedit/Makefile Tue Jul 1 14:21:47 2014 (r360016) +++ head/editors/setedit/Makefile Tue Jul 1 14:24:47 2014 (r360017) @@ -11,7 +11,7 @@ DISTNAME= ${PORTNAME}-${PORTVERSION}-4 MAINTAINER= exile@chamber.ee COMMENT= Programmer's editor with a nice Text User Interface (TUI) -LIB_DEPENDS= rhtv.2:${PORTSDIR}/devel/rhtvision +LIB_DEPENDS= librhtv.so:${PORTSDIR}/devel/rhtvision BROKEN= Does not build MAKE_JOBS_UNSAFE= yes @@ -62,14 +62,14 @@ PLIST_FILES= share/locale/es/LC_MESSAGES .endif .if ${PORT_OPTIONS:MAALIB} -LIB_DEPENDS+= aa.1:${PORTSDIR}/graphics/aalib +LIB_DEPENDS+= libaa.so:${PORTSDIR}/graphics/aalib CONFIGURE_ARGS+= --with-aa .else CONFIGURE_ARGS+= --without-aa .endif .if ${PORT_OPTIONS:MELECTRIC} -LIB_DEPENDS+= efence.0:${PORTSDIR}/devel/ElectricFence +LIB_DEPENDS+= libefence.so:${PORTSDIR}/devel/ElectricFence CONFIGURE_ARGS+= --with-efence .endif Modified: head/editors/winefish/Makefile ============================================================================== --- head/editors/winefish/Makefile Tue Jul 1 14:21:47 2014 (r360016) +++ head/editors/winefish/Makefile Tue Jul 1 14:24:47 2014 (r360017) @@ -12,8 +12,8 @@ EXTRACT_SUFX= .tgz MAINTAINER= nivit@FreeBSD.org COMMENT= LaTeX editor based on BlueFish -LIB_DEPENDS= aspell.16:${PORTSDIR}/textproc/aspell \ - pcre.3:${PORTSDIR}/devel/pcre +LIB_DEPENDS= libaspell.so:${PORTSDIR}/textproc/aspell \ + libpcre.so:${PORTSDIR}/devel/pcre RUN_DEPENDS= dos2unix:${PORTSDIR}/converters/unix2dos \ gv:${PORTSDIR}/print/gv \ tidy:${PORTSDIR}/www/tidy-lib \