diff options
author | swills <swills@FreeBSD.org> | 2014-01-02 00:32:00 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2014-01-02 00:32:00 +0800 |
commit | 3454ef0da468fccefe1031760e8c97567c3ba4db (patch) | |
tree | c6e1184dc6006515a76711bc002e8d4252b6600e /net-p2p | |
parent | 69109a6ed2f1e1c0039cccd98474b9ee24113a37 (diff) | |
download | freebsd-ports-gnome-3454ef0da468fccefe1031760e8c97567c3ba4db.tar.gz freebsd-ports-gnome-3454ef0da468fccefe1031760e8c97567c3ba4db.tar.zst freebsd-ports-gnome-3454ef0da468fccefe1031760e8c97567c3ba4db.zip |
- 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]
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/dogecoin/Makefile | 8 | ||||
-rw-r--r-- | net-p2p/dogecoin/distinfo | 4 | ||||
-rw-r--r-- | net-p2p/dogecoin/files/patch-src-util.h | 10 |
3 files changed, 17 insertions, 5 deletions
diff --git a/net-p2p/dogecoin/Makefile b/net-p2p/dogecoin/Makefile index 036cfd17147e..a514a5e55a50 100644 --- a/net-p2p/dogecoin/Makefile +++ b/net-p2p/dogecoin/Makefile @@ -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 diff --git a/net-p2p/dogecoin/distinfo b/net-p2p/dogecoin/distinfo index 3eef9069f803..eb1fd69b436b 100644 --- a/net-p2p/dogecoin/distinfo +++ b/net-p2p/dogecoin/distinfo @@ -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 diff --git a/net-p2p/dogecoin/files/patch-src-util.h b/net-p2p/dogecoin/files/patch-src-util.h new file mode 100644 index 000000000000..0a51f8c3f409 --- /dev/null +++ b/net-p2p/dogecoin/files/patch-src-util.h @@ -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> |