svn commit: r408474 - in head/net-p2p/namecoin: . files

Dmitry Marakasov amdmi3 at FreeBSD.org
Mon Feb 8 11:18:03 UTC 2016


Author: amdmi3
Date: Mon Feb  8 11:18:01 2016
New Revision: 408474
URL: https://svnweb.freebsd.org/changeset/ports/408474

Log:
  - Fix build with boost 1.60
  - Add LICENSE_FILE
  
  PR:		199601
  Approved by:	portmgr blanket

Added:
  head/net-p2p/namecoin/files/patch-src_allocators.h   (contents, props changed)
  head/net-p2p/namecoin/files/patch-src_qt_guiutil.h   (contents, props changed)
  head/net-p2p/namecoin/files/patch-src_util.h   (contents, props changed)
Modified:
  head/net-p2p/namecoin/Makefile

Modified: head/net-p2p/namecoin/Makefile
==============================================================================
--- head/net-p2p/namecoin/Makefile	Mon Feb  8 11:16:36 2016	(r408473)
+++ head/net-p2p/namecoin/Makefile	Mon Feb  8 11:18:01 2016	(r408474)
@@ -12,6 +12,7 @@ MAINTAINER=	milios at ccsys.com
 COMMENT=	Decentralized, open DNS system and general purpose key/value store
 
 LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/COPYING
 
 LIB_DEPENDS=	libboost_date_time.so:${PORTSDIR}/devel/boost-libs
 

Added: head/net-p2p/namecoin/files/patch-src_allocators.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-p2p/namecoin/files/patch-src_allocators.h	Mon Feb  8 11:18:01 2016	(r408474)
@@ -0,0 +1,12 @@
+--- src/allocators.h.orig	2014-12-18 14:47:02 UTC
++++ src/allocators.h
+@@ -7,7 +7,9 @@
+ 
+ #include <string.h>
+ #include <string>
++#ifndef Q_MOC_RUN
+ #include <boost/thread/mutex.hpp>
++#endif
+ #include <map>
+ #include <openssl/crypto.h> // for OPENSSL_cleanse()
+ 

Added: head/net-p2p/namecoin/files/patch-src_qt_guiutil.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-p2p/namecoin/files/patch-src_qt_guiutil.h	Mon Feb  8 11:18:01 2016	(r408474)
@@ -0,0 +1,12 @@
+--- src/qt/guiutil.h.orig	2014-12-18 14:47:02 UTC
++++ src/qt/guiutil.h
+@@ -5,7 +5,9 @@
+ #include <QObject>
+ #include <QMessageBox>
+ 
++#ifndef Q_MOC_RUN
+ #include <boost/filesystem.hpp>
++#endif
+ 
+ class SendCoinsRecipient;
+ 

Added: head/net-p2p/namecoin/files/patch-src_util.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-p2p/namecoin/files/patch-src_util.h	Mon Feb  8 11:18:01 2016	(r408474)
@@ -0,0 +1,16 @@
+--- src/util.h.orig	2014-12-18 14:47:02 UTC
++++ src/util.h
+@@ -15,11 +15,13 @@
+ #include <vector>
+ #include <string>
+ 
++#ifndef Q_MOC_RUN
+ #include <boost/version.hpp>
+ #include <boost/thread.hpp>
+ #include <boost/interprocess/sync/interprocess_recursive_mutex.hpp>
+ #include <boost/date_time/gregorian/gregorian_types.hpp>
+ #include <boost/date_time/posix_time/posix_time_types.hpp>
++#endif
+ 
+ #include <openssl/sha.h>
+ #include <openssl/ripemd.h>


More information about the svn-ports-all mailing list