Lines 2-8
Link Here
|
2 |
# $FreeBSD$ |
2 |
# $FreeBSD$ |
3 |
|
3 |
|
4 |
PORTNAME= bitcoin |
4 |
PORTNAME= bitcoin |
5 |
PORTVERSION= 0.11.2 |
5 |
PORTVERSION= 0.12.1 |
6 |
DISTVERSIONPREFIX= v |
6 |
DISTVERSIONPREFIX= v |
7 |
CATEGORIES= net-p2p finance |
7 |
CATEGORIES= net-p2p finance |
8 |
|
8 |
|
Lines 11-17
COMMENT?= Virtual Peer-to-Peer Currency
Link Here
|
11 |
|
11 |
|
12 |
LICENSE= MIT |
12 |
LICENSE= MIT |
13 |
|
13 |
|
14 |
LIB_DEPENDS= libboost_date_time.so:devel/boost-libs |
14 |
LIB_DEPENDS= libboost_date_time.so:devel/boost-libs \ |
|
|
15 |
libevent.so:devel/libevent2 |
15 |
|
16 |
|
16 |
USES= autoreconf compiler:c++0x gmake libtool pkgconfig shebangfix |
17 |
USES= autoreconf compiler:c++0x gmake libtool pkgconfig shebangfix |
17 |
SHEBANG_FILES= src/test/*.py |
18 |
SHEBANG_FILES= src/test/*.py |
Lines 34-47
TESTS_PLIST_FILES= %%QT_BINDIR%%/test_bi
Link Here
|
34 |
bin/test_bitcoin |
35 |
bin/test_bitcoin |
35 |
.endif |
36 |
.endif |
36 |
|
37 |
|
37 |
OPTIONS_DEFINE?= DBUS DEBUG HARDENING QRCODES TESTS UPNP WALLET |
38 |
OPTIONS_DEFINE?= DBUS DEBUG HARDENING QRCODES TESTS UPNP WALLET ZMQ |
38 |
OPTIONS_DEFAULT?= HARDENING QRCODES WALLET |
39 |
OPTIONS_DEFAULT?= DBUS HARDENING QRCODES UPNP WALLET |
39 |
OPTIONS_SUB= yes |
40 |
OPTIONS_SUB= yes |
40 |
|
41 |
|
41 |
HARDENING_DESC= Attempt to harden binaries (PIE for ASLR, NX Stack) |
42 |
HARDENING_DESC= Attempt to harden binaries (PIE for ASLR, NX Stack) |
42 |
QRCODES_DESC= Display QR Codes |
43 |
QRCODES_DESC= Display QR Codes |
43 |
TESTS_DESC= Build test binary and unit tests |
44 |
TESTS_DESC= Build test binary and unit tests |
44 |
WALLET_DESC= Wallet Management Support |
45 |
WALLET_DESC= Wallet Management Support |
|
|
46 |
ZMQ_DESC= Block and transaction broadcasting with ZeroMQ |
45 |
|
47 |
|
46 |
DBUS_CONFIGURE_WITH= qtdbus |
48 |
DBUS_CONFIGURE_WITH= qtdbus |
47 |
DBUS_USE= QT4=dbus |
49 |
DBUS_USE= QT4=dbus |
Lines 69-79
WALLET_CXXFLAGS= -I${BDB_INCLUDE_DIR}
Link Here
|
69 |
WALLET_LIBS= -L${BDB_LIB_DIR} |
71 |
WALLET_LIBS= -L${BDB_LIB_DIR} |
70 |
WALLET_USE= BDB=48 |
72 |
WALLET_USE= BDB=48 |
71 |
|
73 |
|
|
|
74 |
ZMQ_CONFIGURE_ENABLE= zmq |
75 |
ZMQ_BUILD_DEPENDS= libzmq4>0:net/libzmq4 |
76 |
ZMQ_RUN_DEPENDS= libzmq4>0:net/libzmq4 |
77 |
|
72 |
GH_ACCOUNT= bitcoin |
78 |
GH_ACCOUNT= bitcoin |
73 |
|
79 |
|
74 |
CONFIGURE_ARGS?= --without-libs \ |
80 |
CONFIGURE_ARGS?= --without-libs \ |
75 |
--disable-reduce-exports \ |
81 |
--disable-bench \ |
76 |
--with-gui \ |
82 |
--with-gui=qt4 \ |
77 |
--without-daemon \ |
83 |
--without-daemon \ |
78 |
--without-utils |
84 |
--without-utils |
79 |
|
85 |
|