From owner-svn-ports-head@FreeBSD.ORG Fri Dec 5 21:14:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 512ECD7A; Fri, 5 Dec 2014 21:14:03 +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 323798DD; Fri, 5 Dec 2014 21:14:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sB5LE3o0044343; Fri, 5 Dec 2014 21:14:03 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sB5LE28r044338; Fri, 5 Dec 2014 21:14:02 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201412052114.sB5LE28r044338@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Fri, 5 Dec 2014 21:14:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r374081 - in head/editors/abiword: . files 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-1 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: Fri, 05 Dec 2014 21:14:03 -0000 Author: kwm Date: Fri Dec 5 21:14:01 2014 New Revision: 374081 URL: https://svnweb.freebsd.org/changeset/ports/374081 QAT: https://qat.redports.org/buildarchive/r374081/ Log: Fix the build after asio was updated to 1.10.4. While here strip library. Pointyhat to: mi@ Added: head/editors/abiword/files/patch-plugins_collab_backends_tcp_xp_Session.h (contents, props changed) head/editors/abiword/files/patch-plugins_collab_core_sync_xp_SynchronizedQueue.h (contents, props changed) Modified: head/editors/abiword/Makefile Modified: head/editors/abiword/Makefile ============================================================================== --- head/editors/abiword/Makefile Fri Dec 5 20:46:03 2014 (r374080) +++ head/editors/abiword/Makefile Fri Dec 5 21:14:01 2014 (r374081) @@ -4,7 +4,7 @@ PORTNAME= abiword PORTVERSION= 2.8.6 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= editors MASTER_SITES= http://www.abisource.com/downloads/%SUBDIR%/${PORTVERSION}/source/ MASTER_SITE_SUBDIR= abiword @@ -37,6 +37,7 @@ CONFIGURE_ARGS= --without-gnomevfs --ena --enable-collab-backend-sugar USE_LDCONFIG= yes INSTALLS_ICONS= yes +INSTALL_TARGET= install-strip ABIVERSION= 2.8 PLIST_SUB+= ABIVERSION=${ABIVERSION} Added: head/editors/abiword/files/patch-plugins_collab_backends_tcp_xp_Session.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/abiword/files/patch-plugins_collab_backends_tcp_xp_Session.h Fri Dec 5 21:14:01 2014 (r374081) @@ -0,0 +1,11 @@ +--- ./plugins/collab/backends/tcp/xp/Session.h.orig 2014-12-05 21:51:55.334456277 +0100 ++++ ./plugins/collab/backends/tcp/xp/Session.h 2014-12-05 21:51:31.075459132 +0100 +@@ -31,7 +31,7 @@ + + class TCPAccountHandler; + +-class Session : public Synchronizer, public boost::noncopyable, public boost::enable_shared_from_this ++class Session : public Synchronizer, public asio::noncopyable, public boost::enable_shared_from_this + { + public: + Session(asio::io_service& io_service, boost::function)> ef) Added: head/editors/abiword/files/patch-plugins_collab_core_sync_xp_SynchronizedQueue.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/abiword/files/patch-plugins_collab_core_sync_xp_SynchronizedQueue.h Fri Dec 5 21:14:01 2014 (r374081) @@ -0,0 +1,11 @@ +--- ./plugins/collab/core/sync/xp/SynchronizedQueue.h.orig 2014-12-05 21:45:41.710482488 +0100 ++++ ./plugins/collab/core/sync/xp/SynchronizedQueue.h 2014-12-05 21:46:02.610480585 +0100 +@@ -28,7 +28,7 @@ + class EmptyQueueException {}; + + template +-class SynchronizedQueue : public Synchronizer, public boost::noncopyable ++class SynchronizedQueue : public Synchronizer, public asio::noncopyable + { + public: + SynchronizedQueue(boost::function sig)