Date: Mon, 8 Feb 2016 11:18:01 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r408474 - in head/net-p2p/namecoin: . files Message-ID: <201602081118.u18BI1kg059870@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602081118.u18BI1kg059870>