svn commit: r374081 - in head/editors/abiword: . files

Koop Mast kwm at FreeBSD.org
Fri Dec 5 21:14:03 UTC 2014


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<Session>
++class Session : public Synchronizer, public asio::noncopyable, public boost::enable_shared_from_this<Session>
+ {
+ public:
+ 	Session(asio::io_service& io_service, boost::function<void (boost::shared_ptr<Session>)> 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 <typename T>
+-class SynchronizedQueue : public Synchronizer, public boost::noncopyable
++class SynchronizedQueue : public Synchronizer, public asio::noncopyable
+ {
+ public:
+ 	SynchronizedQueue(boost::function<void (SynchronizedQueue&)> sig)


More information about the svn-ports-head mailing list