Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 Jan 2014 16:32:00 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r338379 - in head/net-p2p/dogecoin: . files
Message-ID:  <201401011632.s01GW0wt029854@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: swills
Date: Wed Jan  1 16:32:00 2014
New Revision: 338379
URL: http://svnweb.freebsd.org/changeset/ports/338379

Log:
  - Update to 1.3 [1]
  - Fix build on 8.x
  - Switch to C++11 compiler
  
  PR:		ports/185247 [1]
  Submitted by:	David Bern <odiegit@gmail.com> [1]

Added:
  head/net-p2p/dogecoin/files/patch-src-util.h   (contents, props changed)
Modified:
  head/net-p2p/dogecoin/Makefile
  head/net-p2p/dogecoin/distinfo

Modified: head/net-p2p/dogecoin/Makefile
==============================================================================
--- head/net-p2p/dogecoin/Makefile	Wed Jan  1 16:01:56 2014	(r338378)
+++ head/net-p2p/dogecoin/Makefile	Wed Jan  1 16:32:00 2014	(r338379)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	dogecoin
-PORTVERSION=	0.6.4.0
+PORTVERSION=	1.3
 CATEGORIES=	net-p2p finance
 MASTER_SITES=	${MASTER_SITE_LOCAL} \
 		http://people.freebsd.org/~swills/ \
@@ -11,6 +11,8 @@ MASTER_SITES=	${MASTER_SITE_LOCAL} \
 MAINTAINER=	swills@FreeBSD.org
 COMMENT=	Virtual Peer-to-Peer Currency Client
 
+LICENSE=	MIT
+
 LIB_DEPENDS=	libboost_date_time.so:${PORTSDIR}/devel/boost-libs
 
 OPTIONS_DEFINE=	GUI UPNP QRCODES
@@ -23,10 +25,10 @@ QRCODES_DESC=	Build with QR code display
 USE_GITHUB=	yes
 GH_ACCOUNT=	dogecoin
 GH_PROJECT=	dogecoin
-GH_COMMIT=	8e53cb8
+GH_COMMIT=	2ee5cb3
 GH_TAGNAME=	${GH_COMMIT}
 
-USES=		gmake
+USES=		gmake compiler:c++11-lib
 USE_OPENSSL=	yes
 USE_BDB=	yes
 WANT_BDB_VER=	48

Modified: head/net-p2p/dogecoin/distinfo
==============================================================================
--- head/net-p2p/dogecoin/distinfo	Wed Jan  1 16:01:56 2014	(r338378)
+++ head/net-p2p/dogecoin/distinfo	Wed Jan  1 16:32:00 2014	(r338379)
@@ -1,2 +1,2 @@
-SHA256 (dogecoin-0.6.4.0.tar.gz) = 9ac497b36ddd7112536e7be59506f73762e4d3fa6753547880b1d59380ffa53c
-SIZE (dogecoin-0.6.4.0.tar.gz) = 13206973
+SHA256 (dogecoin-1.3.tar.gz) = e61294a3cd94540da6ea64e40028b4f5f0c157de7b253517195f6e18811a44d7
+SIZE (dogecoin-1.3.tar.gz) = 13188503

Added: head/net-p2p/dogecoin/files/patch-src-util.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-p2p/dogecoin/files/patch-src-util.h	Wed Jan  1 16:32:00 2014	(r338379)
@@ -0,0 +1,10 @@
+--- src/util.h.orig	2013-12-31 20:53:22.000000000 +0000
++++ src/util.h	2013-12-31 20:53:40.000000000 +0000
+@@ -18,6 +18,7 @@
+ #include <map>
+ #include <vector>
+ #include <string>
++#include <cstdarg>
+ 
+ #include <boost/thread.hpp>
+ #include <boost/filesystem.hpp>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401011632.s01GW0wt029854>