View | Details | Raw Unified | Return to bug 218961 | Differences between
and this patch

Collapse All | Expand All

(-)net-p2p/namecoin/Makefile (-66 / +85 lines)
Lines 2-96 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	namecoin
4
PORTNAME=	namecoin
5
PORTVERSION=	0.3.80
5
PORTVERSION=	0.13.2
6
DISTVERSIONPREFIX=	nc
7
PORTREVISION=	8
8
PORTEPOCH=	1
6
PORTEPOCH=	1
9
CATEGORIES=	net-p2p dns
7
CATEGORIES=	net-p2p dns
10
8
11
MAINTAINER=	milios@ccsys.com
9
MAINTAINER=	milios@ccsys.com
12
COMMENT=	Decentralized, open DNS and general purpose key/value store
10
COMMENT?=	Decentralized, open DNS and general purpose key/value store
13
11
14
LICENSE=	MIT
12
LICENSE=	MIT
15
LICENSE_FILE=	${WRKSRC}/COPYING
16
13
17
LIB_DEPENDS=	libboost_date_time.so:devel/boost-libs
14
LIB_DEPENDS=	libboost_date_time.so:devel/boost-libs \
15
		libevent.so:devel/libevent
18
16
19
OPTIONS_DEFINE=	X11 UPNP QRCODES DBUS
20
OPTIONS_DEFAULT=	X11 QRCODES
21
22
QRCODES_DESC=	QR code display support
23
24
USE_GITHUB=	yes
17
USE_GITHUB=	yes
18
GH_ACCOUNT=	indolering:graphics
19
GH_PROJECT=	namecoin-core namecoin-graphics:graphics
20
GH_TAGNAME=	ab08f76 a13a73b:graphics
25
21
26
USES=		bdb:48 gmake compiler:c++11-lib ssl
22
USES=		autoreconf compiler:c++11-lib gmake libtool pkgconfig shebangfix ssl
27
MAKE_JOBS_UNSAFE=yes
23
SHEBANG_FILES=	src/test/*.py
24
GNU_CONFIGURE=	yes
28
25
29
CXXFLAGS+=	-I${LOCALBASE}/include -I${BDB_INCLUDE_DIR}
26
SLAVE_PORT?=	no
30
CXXFLAGS+=	-L${LOCALBASE}/lib -L${BDB_LIB_DIR}
31
CXXFLAGS+=	-DCRYPTOPP_DISABLE_ASM
32
27
33
.include <bsd.port.options.mk>
28
.if defined(SLAVE_PORT) && ${SLAVE_PORT} == "no"
29
USES+=		desktop-file-utils
30
USE_QT4=	corelib gui moc_build linguisttools_build network qmake_build \
31
		rcc_build uic_build
34
32
35
.if ${PORT_OPTIONS:MX11}
33
BUILD_DEPENDS+=	protoc:devel/protobuf \
36
USE_QT4=	corelib network gui qmake_build linguist_build uic_build moc_build rcc_build
34
		svg2png:graphics/svg2png
37
38
BINARY=		namecoin-qt
39
LIB_DEPENDS+=	libprotobuf.so:devel/protobuf
35
LIB_DEPENDS+=	libprotobuf.so:devel/protobuf
40
.else
41
BINARY=		namecoind
42
MAKE_ARGS+=	-C ${WRKSRC}/src
43
USE_GNOME=	glib20
44
.endif
45
36
46
.if ${PORT_OPTIONS:MQRCODES}
37
TESTS_USE=		QT4=testlib
47
LIB_DEPENDS+=	libqrencode.so:graphics/libqrencode
38
TESTS_PLIST_FILES=	bin/test_namecoin-qt \
48
QMAKE_USE_QRCODE=1
39
			bin/test_namecoin
49
.else
50
QMAKE_USE_QRCODE=0
51
.endif
40
.endif
52
41
53
.if ${PORT_OPTIONS:MDBUS}
42
OPTIONS_DEFINE?=	DBUS DEBUG HARDENING QRCODES TESTS UPNP WALLET ZMQ
54
USE_QT4+=	dbus
43
OPTIONS_DEFAULT?=	DBUS HARDENING QRCODES UPNP WALLET
55
QMAKE_USE_DBUS=	1
44
OPTIONS_SUB=		yes
56
.else
57
QMAKE_USE_DBUS=	0
58
.endif
59
45
60
PLIST_FILES+=	bin/${BINARY}
46
HARDENING_DESC=	Attempt to harden binaries (PIE for ASLR, NX Stack)
47
QRCODES_DESC=	Display QR Codes
48
TESTS_DESC=	Build test binary and unit tests
49
WALLET_DESC=	Wallet Management Support
50
ZMQ_DESC=	Block and transaction broadcasting with ZeroMQ
61
51
62
.if ${PORT_OPTIONS:MUPNP}
52
DBUS_CONFIGURE_WITH=	qtdbus
63
LIB_DEPENDS+=	libminiupnpc.so:net/miniupnpc
53
DBUS_USE=		QT4=dbus
64
CXXFLAGS+=	-I${LOCALBASE}/include/miniupnpc
65
QMAKE_USE_UPNP=	1
66
.else
67
QMAKE_USE_UPNP=	-
68
.endif
69
54
70
.include <bsd.port.pre.mk>
55
DEBUG_CONFIGURE_ENABLE=		debug
56
DEBUG_INSTALL_TARGET_OFF=	install-strip
71
57
72
post-patch:
58
HARDENING_CONFIGURE_ENABLE=	hardening
73
.if !${PORT_OPTIONS:MX11}
74
	@cd ${WRKSRC}/src && ${CP} ${FILESDIR}/makefile.unix Makefile
75
	@${REINPLACE_CMD} \
76
		-e 's|^USE_UPNP.*$$|USE_UPNP=${QMAKE_USE_UPNP}|' \
77
		${WRKSRC}/src/Makefile
78
.endif
79
59
80
do-configure:
60
TESTS_CONFIGURE_ENABLE=	tests bench
81
.if ${PORT_OPTIONS:MX11}
61
.if defined(SLAVE_PORT) && ${SLAVE_PORT} == "yes"
82
	cd ${WRKSRC} && ${SETENV} ${QMAKE_ENV} \
62
TESTS_PLIST_FILES=	bin/test_namecoin
83
		${QMAKE} ${QMAKE_ARGS} USE_UPNP=${QMAKE_USE_UPNP} USE_QRCODE=${QMAKE_USE_QRCODE} \
84
		QMAKE_LRELEASE=${LRELEASE} INCLUDEPATH+=${BDB_INCLUDE_DIR} \
85
		QMAKE_LIBDIR+=${BDB_LIB_DIR} ${BINARY}.pro
86
.endif
63
.endif
64
TESTS_PLIST_FILES+=	bin/bench_namecoin
87
65
88
do-install:
66
UPNP_CONFIGURE_WITH=	miniupnpc
89
	@${MKDIR} ${STAGEDIR}${PREFIX}/bin
67
UPNP_LIB_DEPENDS=	libminiupnpc.so:net/miniupnpc
90
.if ${PORT_OPTIONS:MX11}
68
UPNP_CPPFLAGS=		-I${LOCALBASE}/include
91
	${INSTALL_PROGRAM} ${WRKSRC}/${BINARY} ${STAGEDIR}${PREFIX}/bin/
69
UPNP_LIBS=		-L${LOCALBASE}/lib
92
.else
70
93
	${INSTALL_PROGRAM} ${WRKSRC}/src/${BINARY} ${STAGEDIR}${PREFIX}/bin/
71
QRCODES_CONFIGURE_WITH=	qrencode
72
QRCODES_LIB_DEPENDS=	libqrencode.so:graphics/libqrencode
73
74
WALLET_CONFIGURE_ENABLE=	wallet
75
WALLET_CXXFLAGS=		-I${BDB_INCLUDE_DIR}
76
WALLET_LIBS=			-L${BDB_LIB_DIR}
77
WALLET_USES=			bdb:48
78
79
ZMQ_CONFIGURE_ENABLE=	zmq
80
ZMQ_BUILD_DEPENDS=	libzmq4>0:net/libzmq4
81
ZMQ_RUN_DEPENDS=	libzmq4>0:net/libzmq4
82
83
CONFIGURE_ARGS?=	--without-libs \
84
			--with-gui=qt4 \
85
			--without-daemon \
86
			--without-utils
87
88
CONFIGURE_ENV=	CRYPTO_CFLAGS="-I${OPENSSLINC}" CRYPTO_LIBS="-L${OPENSSLLIB} -lcrypto" \
89
		SSL_CFLAGS="-I${OPENSSLINC}" SSL_LIBS="-L${OPENSSLLIB} -lssl" \
90
		OBJCXX="${CXX}" OBJCXXFLAGS="${CXXFLAGS}"
91
MAKE_ENV+=	V=1
92
93
PLIST_FILES?=	bin/namecoin-qt share/applications/namecoin-qt.desktop \
94
		share/pixmaps/namecoin128.png
95
96
.if defined(SLAVE_PORT) && ${SLAVE_PORT} == "no"
97
98
post-install:
99
	${REINPLACE_CMD} -e 's/bitcoin/namecoin/g;s/Bitcoin/Namecoin/g' \
100
		${WRKSRC}/contrib/debian/bitcoin-qt.desktop
101
	${INSTALL} ${WRKSRC}/contrib/debian/bitcoin-qt.desktop \
102
		${STAGEDIR}${PREFIX}/share/applications/namecoin-qt.desktop
103
	${LOCALBASE}/bin/svg2png -w128 -h128 ${WRKSRC_graphics}/svg/namecoin-logo.svg \
104
		${STAGEDIR}${PREFIX}/share/pixmaps/namecoin128.png
105
94
.endif
106
.endif
95
107
96
.include <bsd.port.post.mk>
108
regression-test: build
109
	# To use this sucessfully, remove --without-daemon and --without-utils
110
	# from CONFIGURE_ARGS above.
111
112
	@cd ${WRKSRC} && ${GMAKE} check
113
114
.include <bsd.port.mk>
115
(-)net-p2p/namecoin/distinfo (-2 / +5 lines)
Lines 1-2 Link Here
1
SHA256 (namecoin-namecoin-nc0.3.80_GH0.tar.gz) = 3f5e5af95cea46111d3cf1663f0e84d5fda653917745e0607a3ca4773baea59c
1
TIMESTAMP = 1493063251
2
SIZE (namecoin-namecoin-nc0.3.80_GH0.tar.gz) = 1471777
2
SHA256 (namecoin-namecoin-core-0.13.2-ab08f76_GH0.tar.gz) = 3974eb9ab145c845c23cd6940ab2aca134eab91b0ec619d3a157cc1f7c311192
3
SIZE (namecoin-namecoin-core-0.13.2-ab08f76_GH0.tar.gz) = 5917889
4
SHA256 (indolering-namecoin-graphics-a13a73b_GH0.tar.gz) = 82f308a3527d96a202099feb96a754d036bbdaa875156ad002ba2747d75000c7
5
SIZE (indolering-namecoin-graphics-a13a73b_GH0.tar.gz) = 7364908
(-)net-p2p/namecoin/files/makefile.unix (-76 lines)
Lines 1-76 Link Here
1
CXX?=g++
2
DEFS=-DNOPCH -DFOURWAYSSE2 -DUSE_SSL
3
4
LIBS= \
5
 -Wl,-Bstatic \
6
   -l boost_system \
7
   -l boost_filesystem \
8
   -l boost_program_options \
9
   -l boost_thread \
10
   -l boost_chrono \
11
   -l db_cxx \
12
   -l ssl \
13
   -l crypto
14
15
USE_UPNP:=0
16
ifneq (${USE_UPNP}, -)
17
	LIBS += -l miniupnpc
18
	DEFS += -DUSE_UPNP=$(USE_UPNP)
19
endif
20
21
LIBS+= \
22
 -Wl,-Bdynamic \
23
   -l gthread-2.0 \
24
   -l z \
25
   -l pthread
26
27
CXXFLAGS+=-O2 -Wno-invalid-offsetof -Wformat $(DEFS)
28
HEADERS=headers.h strlcpy.h serialize.h uint256.h util.h key.h bignum.h base58.h \
29
    script.h allocators.h db.h walletdb.h crypter.h net.h irc.h keystore.h main.h \
30
    wallet.h bitcoinrpc.h uibase.h ui.h noui.h init.h auxpow.h
31
32
BASE_OBJS= \
33
    obj/auxpow.o \
34
    obj/util.o \
35
    obj/key.o \
36
    obj/script.o \
37
    obj/db.o \
38
    obj/walletdb.o \
39
    obj/crypter.o \
40
    obj/net.o \
41
    obj/irc.o \
42
    obj/keystore.o \
43
    obj/main.o \
44
    obj/wallet.o \
45
    obj/bitcoinrpc.o \
46
    obj/init.o \
47
    cryptopp/obj/sha.o \
48
    cryptopp/obj/cpu.o
49
50
OBJS = \
51
    $(BASE_OBJS) \
52
    obj/hook.o
53
54
all: namecoind
55
56
cryptopp/obj/%.o: cryptopp/%.cpp
57
	$(CXX) -c $(CXXFLAGS) -O3 -o $@ $<
58
59
obj/nogui/%.o: %.cpp $(HEADERS)
60
	$(CXX) -c $(CXXFLAGS) -o $@ $<
61
62
obj/test/%.o: test/%.cpp $(HEADERS)
63
	$(CXX) -c $(CFLAGS) -o $@ $<
64
65
obj/nogui/namecoin.o: namecoin.h
66
67
namecoind: $(BASE_OBJS:obj/%=obj/nogui/%) obj/nogui/namecoin.o
68
	$(CXX) $(CXXFLAGS) -o $@ $^ $(LIBS)
69
70
clean:
71
	-rm -f namecoin namecoind
72
	-rm -f obj/*.o
73
	-rm -f obj/nogui/*.o
74
	-rm -f obj/test/*.o
75
	-rm -f cryptopp/obj/*.o
76
	-rm -f headers.h.gch
(-)net-p2p/namecoin/files/namecoind.in (+173 lines)
Line 0 Link Here
1
#!/bin/sh
2
# $FreeBSD$
3
4
# PROVIDE: namecoind
5
# REQUIRE: LOGIN cleanvar
6
# KEYWORD: shutdown
7
8
#
9
# Add the following lines to /etc/rc.conf to enable :
10
# namecoind_enable (bool):	Set to "NO" by default.
11
#				Set it to "YES" to enable namecoind
12
# namecoind_user (str)		Set to "namecoin" by default.
13
# namecoind_group (str)		Set to "namecoin" by default.
14
# namecoind_conf (str)		Set to "%%PREFIX%%/etc/namecoind.conf" by default.
15
# namecoind_data (str)		Set to "/var/lib/namecoind" by default.
16
# namecoindlimits_enable (bool)	Set to "NO" by default.
17
#				Set it to "YES" to enable namecoindlimits
18
# namecoindlimits_args		Set to "-e -U ${namecoind_user}" by default
19
20
21
. /etc/rc.subr
22
23
name="namecoind"
24
rcvar=namecoind_enable
25
26
start_precmd="namecoind_precmd"
27
start_cmd="namecoind_start"
28
restart_precmd="namecoind_checkconfig"
29
reload_precmd="namecoind_checkconfig"
30
configtest_cmd="namecoind_checkconfig"
31
status_cmd="namecoind_status"
32
stop_cmd="namecoind_stop"
33
stop_postcmd="namecoind_wait"
34
command="%%PREFIX%%/bin/namecoind"
35
cli_command="%%PREFIX%%/bin/namecoin-cli"
36
daemon_command="/usr/sbin/daemon"
37
#pidfile="/var/run/${name}.pid"
38
extra_commands="configtest"
39
40
41
: ${namecoind_enable:="NO"}
42
: ${namecoindlimits_enable:="NO"}
43
44
load_rc_config ${name}
45
46
: ${namecoind_user:="namecoin"}
47
: ${namecoind_group:="namecoin"}
48
: ${namecoind_data_dir:="/var/db/namecoind"}
49
: ${namecoind_config_file:="%%PREFIX%%/etc/namecoin.conf"}
50
: ${namecoindlimits_args:="-e -U ${namecoind_user}"}
51
52
# set up dependant variables
53
procname="${command}"
54
pidfile="${namecoind_data_dir}/namecoind.pid"
55
required_files="${namecoind_config_file}"
56
57
58
namecoind_checkconfig()
59
{
60
  echo "Performing sanity check on namecoind configuration:"
61
  if [ ! -d "${namecoind_data_dir}" ]
62
  then
63
    echo "Missing data directory: ${namecoind_data_dir}"
64
    exit 1
65
  fi
66
  chown -R "${namecoind_user}:${namecoind_group}" "${namecoind_data_dir}"
67
68
  if [ ! -f "${namecoind_config_file}" ]
69
  then
70
    echo "Missing configuration file: ${namecoind_config_file}"
71
    exit 1
72
  fi
73
  if [ ! -x "${command}" ]
74
  then
75
    echo "Missing executable: ${command}"
76
    exit 1
77
  fi
78
  return 0
79
}
80
81
namecoind_cleanup()
82
{
83
  rm -f "${pidfile}"
84
}
85
86
namecoind_precmd()
87
{
88
  namecoind_checkconfig
89
90
  pid=$(check_pidfile "${pidfile}" "${procname}")
91
  if [ -z "${pid}" ]
92
  then
93
    echo "Namecoind is not running"
94
    rm -f "${pidfile}"
95
  fi
96
97
  if checkyesno namecoindlimits_enable
98
  then
99
    eval $(/usr/bin/limits ${namecoindlimits_args}) 2>/dev/null
100
  else
101
    return 0
102
  fi
103
}
104
105
namecoind_status()
106
{
107
  local pid
108
  pid=$(check_pidfile "${pidfile}" "${procname}")
109
  if [ -z "${pid}" ]
110
  then
111
    echo "Namecoind is not running"
112
    return 1
113
  else
114
    echo "Namecoind running, pid: ${pid}"
115
  fi
116
}
117
118
namecoind_start()
119
{
120
  echo "Starting namecoind:"
121
  cd "${namecoind_data_dir}" || return 1
122
  ${daemon_command} -u "${namecoind_user}" -p "${pidfile}" \
123
    ${command} \
124
    -conf="${namecoind_config_file}" \
125
    -datadir="${namecoind_data_dir}" 2> /tmp/namecoind.stderr > /tmp/namecoind.stdout
126
}
127
128
namecoind_stop()
129
{
130
  echo "Stopping namecoind:"
131
  pid=$(check_pidfile "${pidfile}" "${procname}")
132
  if [ -z "${pid}" ]
133
  then
134
    echo "Namecoind is not running"
135
    return 1
136
  else
137
    ${cli_command} -conf="${namecoind_config_file}" -datadir="${namecoind_data_dir}" stop
138
  fi
139
}
140
141
namecoind_wait()
142
{
143
  local n=60
144
  echo "Waiting for namecoind shutdown:"
145
  while :
146
  do
147
    printf '.'
148
    pid=$(check_pidfile "${pidfile}" "${procname}")
149
    if [ -z "${pid}" ]
150
    then
151
      printf '\n'
152
      break
153
    fi
154
    sleep 1
155
    n=$((${n} - 1))
156
    if [ ${n} -eq 0 -a -f "${pidfile}" ]
157
    then
158
      printf "\nForce shutdown"
159
      kill -9 $(cat "${pidfile}")
160
      for n in 1 2 3
161
      do
162
        printf '.'
163
        sleep 1
164
      done
165
      printf '\n'
166
      break
167
    fi
168
  done
169
  rm -f "${pidfile}"
170
  echo "Shutdown complete"
171
}
172
173
run_rc_command "$1"
(-)net-p2p/namecoin/files/patch-src__main.h (-10 lines)
Lines 1-10 Link Here
1
--- src/main.h.orig	2014-12-18 14:47:02 UTC
2
+++ src/main.h
3
@@ -17,7 +17,6 @@
4
 #ifdef __WXMSW__
5
 #include <io.h> /* for _commit */
6
 #elif !defined(MAC_OSX)
7
-#include <sys/prctl.h>
8
 #endif
9
 
10
 class CBlock;
(-)net-p2p/namecoin/files/patch-src__qt__configurenamedialog.h (-12 lines)
Lines 1-12 Link Here
1
--- src/qt/configurenamedialog.h.orig	2014-12-18 14:47:02 UTC
2
+++ src/qt/configurenamedialog.h
3
@@ -1,6 +1,9 @@
4
 #ifndef CONFIGURENAMEDIALOG_H
5
 #define CONFIGURENAMEDIALOG_H
6
 
7
+#include <sys/socket.h>
8
+#include <netinet/in.h>
9
+
10
 #include <QDialog>
11
 
12
 namespace Ui {
(-)net-p2p/namecoin/files/patch-src__qt__managenamespage.h (-12 lines)
Lines 1-12 Link Here
1
--- src/qt/managenamespage.h.orig	2014-12-18 14:47:02 UTC
2
+++ src/qt/managenamespage.h
3
@@ -1,6 +1,9 @@
4
 #ifndef MANAGENAMESPAGE_H
5
 #define MANAGENAMESPAGE_H
6
 
7
+#include <sys/socket.h>
8
+#include <netinet/in.h>
9
+
10
 #include <QDialog>
11
 #include <QSortFilterProxyModel>
12
 
(-)net-p2p/namecoin/files/patch-src__strlcpy.h (-23 lines)
Lines 1-23 Link Here
1
--- net-p2p/namecoin/files/patch-src__strlcpy.h	(revision 0)
2
+++ net-p2p/namecoin/files/patch-src__strlcpy.h	(working copy)
3
@@ -0,0 +1,20 @@ 
4
+--- src/strlcpy.h.orig	2015-08-24 00:28:33 UTC
5
++++ src/strlcpy.h
6
+@@ -15,6 +15,10 @@
7
+  */
8
+ #ifndef BITCOIN_STRLCPY_H
9
+ #define BITCOIN_STRLCPY_H
10
++
11
++#if defined(__FreeBSD__) && (__FreeBSD_version >= 330000)
12
++#include <string.h>
13
++#else
14
+ /*
15
+  * Copy src to string dst of size siz.  At most siz-1 characters
16
+  * will be copied.  Always NUL terminates (unless siz == 0).
17
+@@ -83,4 +87,6 @@ inline size_t strlcat(char *dst, const c
18
+ 
19
+     return(dlen + (s - src)); /* count does not include NUL */
20
+ }
21
++#endif	/* FreeBSD */
22
++
23
+ #endif
(-)net-p2p/namecoin/pkg-descr (-1 / +1 lines)
Lines 12-15 Link Here
12
To register a name, you must own some namecoins (NMC, the internal
12
To register a name, you must own some namecoins (NMC, the internal
13
cryptocurrency used by the software).
13
cryptocurrency used by the software).
14
14
15
WWW: http://namecoin.info/
15
WWW: https://namecoin.org/
(-)net-p2p/namecoin-daemon/Makefile (-4 / +17 lines)
Lines 1-13 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PKGNAMESUFFIX=	-daemon
4
5
MASTERDIR=	${.CURDIR}/../namecoin
3
MASTERDIR=	${.CURDIR}/../namecoin
6
4
7
DESCR=		${MASTERDIR}/pkg-descr
5
PKGNAMESUFFIX=	-daemon
8
6
7
COMMENT=	Decentralized, open DNS and more (Daemon)
9
SLAVE_PORT=	yes
8
SLAVE_PORT=	yes
10
9
11
OPTIONS_EXCLUDE=	X11 DBUS QRCODES
10
ONLY_FOR_ARCHS=	amd64 i386 ia64
11
ONLY_FOR_ARCHS_REASON=	does not support big-endian architectures
12
12
13
OPTIONS_DEFINE=		DEBUG HARDENING TESTS UPNP WALLET ZMQ
14
OPTIONS_DEFAULT=	HARDENING UPNP WALLET
15
16
CONFIGURE_ARGS=	--with-daemon \
17
		--without-gui \
18
		--without-libs \
19
		--without-qrencode \
20
		--without-utils
21
22
PLIST_FILES=	bin/namecoind
23
24
USE_RC_SUBR=	namecoind
25
13
.include "${MASTERDIR}/Makefile"
26
.include "${MASTERDIR}/Makefile"
(-)net-p2p/namecoin-utils/Makefile (+25 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
MASTERDIR=	${.CURDIR}/../namecoin
4
5
PKGNAMESUFFIX=	-utils
6
7
COMMENT=	Decentralized, open DNS and more (CLI and Utilities)
8
SLAVE_PORT=	yes
9
10
OPTIONS_DEFINE=		DEBUG HARDENING TESTS
11
OPTIONS_DEFAULT=	HARDENING TESTS
12
13
ONLY_FOR_ARCHS=	amd64 i386 ia64
14
ONLY_FOR_ARCHS_REASON=	does not support big-endian architectures
15
16
CONFIGURE_ARGS=	--without-daemon \
17
		--without-gui \
18
		--without-libs \
19
		--without-qrencode \
20
		--with-utils \
21
		--disable-wallet
22
23
PLIST_FILES=	bin/namecoin-cli bin/namecoin-tx
24
25
.include "${MASTERDIR}/Makefile"

Return to bug 218961