From owner-svn-ports-all@FreeBSD.ORG Wed Feb 12 18:44:52 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 406013D8; Wed, 12 Feb 2014 18:44:52 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2A4AB115F; Wed, 12 Feb 2014 18:44:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1CIiqtg028342; Wed, 12 Feb 2014 18:44:52 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1CIiosi028329; Wed, 12 Feb 2014 18:44:50 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201402121844.s1CIiosi028329@svn.freebsd.org> From: Steve Wills Date: Wed, 12 Feb 2014 18:44:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r343950 - in head/net-p2p: . namecoin 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.17 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: Wed, 12 Feb 2014 18:44:52 -0000 Author: swills Date: Wed Feb 12 18:44:49 2014 New Revision: 343950 URL: http://svnweb.freebsd.org/changeset/ports/343950 QAT: https://qat.redports.org/buildarchive/r343950/ Log: Namecoin is an open source decentralized key/value registration and transfer system based on Bitcoin technology (a decentralized cryptocurrency). It allows you to: * Securely register and transfer arbitrary names (keys), no possible censorship! * Attach values (data) to the names (currently up to 520 bytes, will be extended) * Trade and transact namecoins, the digital currency NMC To register a name, you must own some namecoins (NMC, the internal cryptocurrency used by the software). WWW: http://namecoin.info/ PR: ports/185459 Submitted by: Chad J. Milios Added: head/net-p2p/namecoin/ head/net-p2p/namecoin/Makefile (contents, props changed) head/net-p2p/namecoin/distinfo (contents, props changed) head/net-p2p/namecoin/files/ head/net-p2p/namecoin/files/makefile.unix (contents, props changed) head/net-p2p/namecoin/files/patch-src__main.h (contents, props changed) head/net-p2p/namecoin/files/patch-src__net.cpp (contents, props changed) head/net-p2p/namecoin/files/patch-src__qt__configurenamedialog.h (contents, props changed) head/net-p2p/namecoin/files/patch-src__qt__managenamespage.h (contents, props changed) head/net-p2p/namecoin/files/patch-src__serialize.h (contents, props changed) head/net-p2p/namecoin/pkg-descr (contents, props changed) Modified: head/net-p2p/Makefile Modified: head/net-p2p/Makefile ============================================================================== --- head/net-p2p/Makefile Wed Feb 12 18:41:27 2014 (r343949) +++ head/net-p2p/Makefile Wed Feb 12 18:44:49 2014 (r343950) @@ -64,6 +64,7 @@ SUBDIR += mldonkey-perlreactor SUBDIR += mldonkey-urlslave SUBDIR += museekplus + SUBDIR += namecoin SUBDIR += napshare SUBDIR += ncdc SUBDIR += opendchub Added: head/net-p2p/namecoin/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/namecoin/Makefile Wed Feb 12 18:44:49 2014 (r343950) @@ -0,0 +1,98 @@ +# Created by: Chad J. Milios +# $FreeBSD$ + +PORTNAME= namecoin +PORTVERSION= Q.3.72 +CATEGORIES= net-p2p dns +MASTER_SITES= GH + +MAINTAINER= milios@ccsys.com +COMMENT= Decentralized, open DNS system and general purpose key/value store + +LIB_DEPENDS= libboost_date_time.so:${PORTSDIR}/devel/boost-libs + +OPTIONS_DEFINE= X11 UPNP QRCODES DBUS +OPTIONS_DEFAULT= X11 QRCODES + +UPNP_DESC= Build with UPNP support +QRCODES_DESC= Build with QR code display + +USE_GITHUB= yes +GH_ACCOUNT= namecoinq +GH_PROJECT= namecoinq +GH_COMMIT= cdf052b +GH_TAGNAME= v${PORTVERSION} + +USES= gmake compiler:c++11-lib +USE_OPENSSL= yes +USE_BDB= yes +WANT_BDB_VER= 48 + +CXXFLAGS+= -I${LOCALBASE}/include -I${BDB_INCLUDE_DIR} +CXXFLAGS+= -L${LOCALBASE}/lib -L${BDB_LIB_DIR} +CXXFLAGS+= -DCRYPTOPP_DISABLE_ASM + +.include + +.if ${PORT_OPTIONS:MX11} +USE_QT4= corelib network gui qmake_build linguist_build uic_build moc_build rcc_build + +BINARY= namecoin-qt +LIB_DEPENDS+= libprotobuf.so:${PORTSDIR}/devel/protobuf +.else +BINARY= namecoind +MAKE_ARGS+= -C ${WRKSRC}/src +USE_GNOME= glib20 +.endif + +.if ${PORT_OPTIONS:MQRCODES} +LIB_DEPENDS+= libqrencode.so:${PORTSDIR}/graphics/libqrencode +QMAKE_USE_QRCODE=1 +.else +QMAKE_USE_QRCODE=0 +.endif + +.if ${PORT_OPTIONS:MDBUS} +USE_QT4+= dbus +QMAKE_USE_DBUS= 1 +.else +QMAKE_USE_DBUS= 0 +.endif + +PLIST_FILES+= bin/${BINARY} + +.if ${PORT_OPTIONS:MUPNP} +LIB_DEPENDS+= libminiupnpc.so:${PORTSDIR}/net/miniupnpc +QMAKE_USE_UPNP= 1 +.else +QMAKE_USE_UPNP= - +.endif + +.include + +post-patch: +.if !${PORT_OPTIONS:MX11} + @cd ${WRKSRC}/src && ${CP} ${FILESDIR}/makefile.unix Makefile + @${REINPLACE_CMD} \ + -e 's|^USE_UPNP.*$$|USE_UPNP=${QMAKE_USE_UPNP}|' \ + -e 's|-l pthread|${PTHREAD_LIBS}|g' \ + ${WRKSRC}/src/Makefile +.endif + +do-configure: +.if ${PORT_OPTIONS:MX11} + cd ${WRKSRC} && ${SETENV} ${QMAKE_ENV} \ + ${QMAKE} ${QMAKE_ARGS} USE_UPNP=${QMAKE_USE_UPNP} USE_QRCODE=${QMAKE_USE_QRCODE} \ + QMAKE_LRELEASE=${LRELEASE} INCLUDEPATH+=${BDB_INCLUDE_DIR} \ + QMAKE_LIBDIR+=${BDB_LIB_DIR} ${BINARY}.pro +.endif + +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/bin +.if ${PORT_OPTIONS:MX11} + ${INSTALL_PROGRAM} ${WRKSRC}/${BINARY} ${STAGEDIR}${PREFIX}/bin/ +.else + ${INSTALL_PROGRAM} ${WRKSRC}/src/${BINARY} ${STAGEDIR}${PREFIX}/bin/ +.endif + +.include Added: head/net-p2p/namecoin/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/namecoin/distinfo Wed Feb 12 18:44:49 2014 (r343950) @@ -0,0 +1,2 @@ +SHA256 (namecoin-Q.3.72.tar.gz) = 426b6c10b999ed11f436b2d8a56715a4355d30af41e13a1fd6e6ee5dd8348775 +SIZE (namecoin-Q.3.72.tar.gz) = 1453900 Added: head/net-p2p/namecoin/files/makefile.unix ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/namecoin/files/makefile.unix Wed Feb 12 18:44:49 2014 (r343950) @@ -0,0 +1,76 @@ +CXX?=g++ +DEFS=-DNOPCH -DFOURWAYSSE2 -DUSE_SSL + +LIBS= \ + -Wl,-Bstatic \ + -l boost_system \ + -l boost_filesystem \ + -l boost_program_options \ + -l boost_thread \ + -l boost_chrono \ + -l db_cxx \ + -l ssl \ + -l crypto + +USE_UPNP:=0 +ifneq (${USE_UPNP}, -) + LIBS += -l miniupnpc + DEFS += -DUSE_UPNP=$(USE_UPNP) +endif + +LIBS+= \ + -Wl,-Bdynamic \ + -l gthread-2.0 \ + -l z \ + -l pthread + +CXXFLAGS+=-O2 -Wno-invalid-offsetof -Wformat $(DEFS) +HEADERS=headers.h strlcpy.h serialize.h uint256.h util.h key.h bignum.h base58.h \ + script.h allocators.h db.h walletdb.h crypter.h net.h irc.h keystore.h main.h \ + wallet.h bitcoinrpc.h uibase.h ui.h noui.h init.h auxpow.h + +BASE_OBJS= \ + obj/auxpow.o \ + obj/util.o \ + obj/key.o \ + obj/script.o \ + obj/db.o \ + obj/walletdb.o \ + obj/crypter.o \ + obj/net.o \ + obj/irc.o \ + obj/keystore.o \ + obj/main.o \ + obj/wallet.o \ + obj/bitcoinrpc.o \ + obj/init.o \ + cryptopp/obj/sha.o \ + cryptopp/obj/cpu.o + +OBJS = \ + $(BASE_OBJS) \ + obj/hook.o + +all: namecoind + +cryptopp/obj/%.o: cryptopp/%.cpp + $(CXX) -c $(CXXFLAGS) -O3 -o $@ $< + +obj/nogui/%.o: %.cpp $(HEADERS) + $(CXX) -c $(CXXFLAGS) -o $@ $< + +obj/test/%.o: test/%.cpp $(HEADERS) + $(CXX) -c $(CFLAGS) -o $@ $< + +obj/nogui/namecoin.o: namecoin.h + +namecoind: $(BASE_OBJS:obj/%=obj/nogui/%) obj/nogui/namecoin.o + $(CXX) $(CXXFLAGS) -o $@ $^ $(LIBS) + +clean: + -rm -f namecoin namecoind + -rm -f obj/*.o + -rm -f obj/nogui/*.o + -rm -f obj/test/*.o + -rm -f cryptopp/obj/*.o + -rm -f headers.h.gch Added: head/net-p2p/namecoin/files/patch-src__main.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/namecoin/files/patch-src__main.h Wed Feb 12 18:44:49 2014 (r343950) @@ -0,0 +1,10 @@ +--- ./src/main.h.orig 2013-10-29 13:38:10.000000000 +0000 ++++ ./src/main.h 2014-01-18 23:12:20.871138275 +0000 +@@ -16,7 +16,6 @@ + #ifdef __WXMSW__ + #include /* for _commit */ + #elif !defined(MAC_OSX) +-#include + #endif + + class CBlock; Added: head/net-p2p/namecoin/files/patch-src__net.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/namecoin/files/patch-src__net.cpp Wed Feb 12 18:44:49 2014 (r343950) @@ -0,0 +1,25 @@ +--- ./src/net.cpp.orig 2013-10-29 13:38:10.000000000 +0000 ++++ ./src/net.cpp 2014-01-18 23:12:20.911138205 +0000 +@@ -51,7 +51,7 @@ + CAddress addrLocalHost("0.0.0.0", 0, false, nLocalServices); + CNode* pnodeLocalHost = NULL; + uint64 nLocalHostNonce = 0; +-array vnThreadsRunning; ++boost::array vnThreadsRunning; + SOCKET hListenSocket = INVALID_SOCKET; + + vector vNodes; +@@ -1094,13 +1094,8 @@ + char intClient[16]; + char intPort[6]; + +-#if !defined(__WXMSW__) && !defined(MAC_OSX) +- r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype, +- port, port, lanaddr, 0, "TCP", 0); +-#else + r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype, + port, port, lanaddr, 0, "TCP", 0, "0"); +-#endif + if(r!=UPNPCOMMAND_SUCCESS) + printf("AddPortMapping(%s, %s, %s) failed with code %d (%s)\n", + port, port, lanaddr, r, strupnperror(r)); Added: head/net-p2p/namecoin/files/patch-src__qt__configurenamedialog.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/namecoin/files/patch-src__qt__configurenamedialog.h Wed Feb 12 18:44:49 2014 (r343950) @@ -0,0 +1,12 @@ +--- ./src/qt/configurenamedialog.h.orig 2013-10-29 13:38:10.000000000 +0000 ++++ ./src/qt/configurenamedialog.h 2014-01-18 23:12:20.925138619 +0000 +@@ -1,6 +1,9 @@ + #ifndef CONFIGURENAMEDIALOG_H + #define CONFIGURENAMEDIALOG_H + ++#include ++#include ++ + #include + + namespace Ui { Added: head/net-p2p/namecoin/files/patch-src__qt__managenamespage.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/namecoin/files/patch-src__qt__managenamespage.h Wed Feb 12 18:44:49 2014 (r343950) @@ -0,0 +1,12 @@ +--- ./src/qt/managenamespage.h.orig 2013-10-29 13:38:10.000000000 +0000 ++++ ./src/qt/managenamespage.h 2014-01-18 23:12:20.965138391 +0000 +@@ -1,6 +1,9 @@ + #ifndef MANAGENAMESPAGE_H + #define MANAGENAMESPAGE_H + ++#include ++#include ++ + #include + #include + Added: head/net-p2p/namecoin/files/patch-src__serialize.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/namecoin/files/patch-src__serialize.h Wed Feb 12 18:44:49 2014 (r343950) @@ -0,0 +1,21 @@ +--- src/serialize.h.orig 2014-01-19 03:49:23.000000000 +0000 ++++ src/serialize.h 2014-01-19 03:52:10.000000000 +0000 +@@ -858,18 +858,6 @@ + iterator insert(iterator it, const char& x=char()) { return vch.insert(it, x); } + void insert(iterator it, size_type n, const char& x) { vch.insert(it, n, x); } + +- void insert(iterator it, const_iterator first, const_iterator last) +- { +- if (it == vch.begin() + nReadPos && last - first <= nReadPos) +- { +- // special case for inserting at the front when there's room +- nReadPos -= (last - first); +- memcpy(&vch[nReadPos], &first[0], last - first); +- } +- else +- vch.insert(it, first, last); +- } +- + void insert(iterator it, std::vector::const_iterator first, std::vector::const_iterator last) + { + if (it == vch.begin() + nReadPos && last - first <= nReadPos) Added: head/net-p2p/namecoin/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/namecoin/pkg-descr Wed Feb 12 18:44:49 2014 (r343950) @@ -0,0 +1,15 @@ +Namecoin is an open source decentralized key/value registration and transfer +system based on Bitcoin technology (a decentralized cryptocurrency). + +It allows you to: + + * Securely register and transfer arbitrary names (keys), no possible + censorship! + * Attach values (data) to the names (currently up to 520 bytes, will be + extended) + * Trade and transact namecoins, the digital currency NMC + +To register a name, you must own some namecoins (NMC, the internal +cryptocurrency used by the software). + +WWW: http://namecoin.info/