From owner-svn-ports-all@freebsd.org Mon Feb 8 11:18:03 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1B28DA9F748; Mon, 8 Feb 2016 11:18:03 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 D0A3D1F38; Mon, 8 Feb 2016 11:18:02 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u18BI1Z5059874; Mon, 8 Feb 2016 11:18:01 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u18BI1kg059870; Mon, 8 Feb 2016 11:18:01 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201602081118.u18BI1kg059870@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 8 Feb 2016 11:18:01 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Feb 2016 11:18:03 -0000 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 + #include ++#ifndef Q_MOC_RUN + #include ++#endif + #include + #include // 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 + #include + ++#ifndef Q_MOC_RUN + #include ++#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 + #include + ++#ifndef Q_MOC_RUN + #include + #include + #include + #include + #include ++#endif + + #include + #include