From owner-svn-ports-head@FreeBSD.ORG Mon Jun 23 13:05:19 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 4CC025AD; Mon, 23 Jun 2014 13:05:19 +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 38E972572; Mon, 23 Jun 2014 13:05:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5ND5Jha022091; Mon, 23 Jun 2014 13:05:19 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5ND5IWd022082; Mon, 23 Jun 2014 13:05:18 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201406231305.s5ND5IWd022082@svn.freebsd.org> From: Dmitry Marakasov Date: Mon, 23 Jun 2014 13:05:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r358932 - in head: editors/abiword sysutils/tracker-client textproc/wv 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: Mon, 23 Jun 2014 13:05:19 -0000 Author: amdmi3 Date: Mon Jun 23 13:05:18 2014 New Revision: 358932 URL: http://svnweb.freebsd.org/changeset/ports/358932 QAT: https://qat.redports.org/buildarchive/r358932/ Log: - Switch textproc/wv to USES=libtool, drop .la files - Fix LIB_DEPENDS entries on dependent ports and bump PORTREVISIONS as library naming schema has changed Approved by: portmgr blanket Modified: head/editors/abiword/Makefile head/sysutils/tracker-client/Makefile head/textproc/wv/Makefile head/textproc/wv/pkg-plist Modified: head/editors/abiword/Makefile ============================================================================== --- head/editors/abiword/Makefile Mon Jun 23 13:01:28 2014 (r358931) +++ head/editors/abiword/Makefile Mon Jun 23 13:05:18 2014 (r358932) @@ -4,7 +4,7 @@ PORTNAME= abiword PORTVERSION= 2.8.6 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= editors MASTER_SITES= http://www.abisource.com/downloads/%SUBDIR%/${PORTVERSION}/source/ MASTER_SITE_SUBDIR= abiword @@ -16,7 +16,7 @@ COMMENT= Open-source, cross-platform WYS LIB_DEPENDS= libpopt.so:${PORTSDIR}/devel/popt \ libpng15.so:${PORTSDIR}/graphics/png \ libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \ - libwv-1.2.so:${PORTSDIR}/textproc/wv \ + libwv.so:${PORTSDIR}/textproc/wv \ libjpeg.so:${PORTSDIR}/graphics/jpeg \ libfribidi.so:${PORTSDIR}/converters/fribidi \ libpsiconv.so:${PORTSDIR}/converters/psiconv \ Modified: head/sysutils/tracker-client/Makefile ============================================================================== --- head/sysutils/tracker-client/Makefile Mon Jun 23 13:01:28 2014 (r358931) +++ head/sysutils/tracker-client/Makefile Mon Jun 23 13:05:18 2014 (r358932) @@ -4,7 +4,7 @@ PORTNAME= tracker PORTVERSION= 0.6.95 -PORTREVISION= 18 +PORTREVISION= 19 CATEGORIES= sysutils gnome MASTER_SITES= GNOME PKGNAMESUFFIX?= -client @@ -16,7 +16,7 @@ LIB_DEPENDS= libsqlite3.so:${PORTSDIR}/d libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \ libpoppler-glib.so:${PORTSDIR}/graphics/poppler-glib \ libexif.so:${PORTSDIR}/graphics/libexif \ - libwv-1.2.so:${PORTSDIR}/textproc/wv \ + libwv.so:${PORTSDIR}/textproc/wv \ libgmime-2.0.so:${PORTSDIR}/mail/gmime2 \ libqdbm.so:${PORTSDIR}/databases/qdbm \ libexempi.so:${PORTSDIR}/textproc/exempi \ Modified: head/textproc/wv/Makefile ============================================================================== --- head/textproc/wv/Makefile Mon Jun 23 13:01:28 2014 (r358931) +++ head/textproc/wv/Makefile Mon Jun 23 13:05:18 2014 (r358932) @@ -3,7 +3,7 @@ PORTNAME= wv PORTVERSION= 1.2.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc MASTER_SITES= http://www.abisource.com/downloads/wv/${PORTVERSION}/ @@ -13,8 +13,8 @@ COMMENT= A library and executables to ac LIB_DEPENDS= libwmf.so:${PORTSDIR}/graphics/libwmf USE_GNOME= libgsf -USES= gmake pkgconfig -USE_AUTOTOOLS= libtool +GNU_CONFIGURE= yes +USES= gmake pkgconfig libtool CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ENV= MKDIR_P="${MKDIR}" Modified: head/textproc/wv/pkg-plist ============================================================================== --- head/textproc/wv/pkg-plist Mon Jun 23 13:01:28 2014 (r358931) +++ head/textproc/wv/pkg-plist Mon Jun 23 13:05:18 2014 (r358932) @@ -15,10 +15,9 @@ bin/wvVersion bin/wvWare bin/wvWml include/wv/wv.h -lib/libwv-1.2.so lib/libwv-1.2.so.4 +lib/libwv-1.2.so.4.0.5 lib/libwv.a -lib/libwv.la lib/libwv.so libdata/pkgconfig/wv-1.0.pc man/man1/wvAbw.1.gz