svn commit: r478893 - in head/net-p2p: . namecoin-utils

Rene Ladan rene at FreeBSD.org
Mon Sep 3 18:45:21 UTC 2018


Author: rene
Date: Mon Sep  3 18:45:20 2018
New Revision: 478893
URL: https://svnweb.freebsd.org/changeset/ports/478893

Log:
  Add new port net-p2p/namecoin-utils, a slave port containing utilities for
  net-p2p/namecoin
  
  PR:		218961
  Submitted by:	milios at ccsys.com

Added:
  head/net-p2p/namecoin-utils/
  head/net-p2p/namecoin-utils/Makefile   (contents, props changed)
Modified:
  head/net-p2p/Makefile

Modified: head/net-p2p/Makefile
==============================================================================
--- head/net-p2p/Makefile	Mon Sep  3 18:43:15 2018	(r478892)
+++ head/net-p2p/Makefile	Mon Sep  3 18:45:20 2018	(r478893)
@@ -62,6 +62,7 @@
     SUBDIR += monero-cli
     SUBDIR += namecoin
     SUBDIR += namecoin-daemon
+    SUBDIR += namecoin-utils
     SUBDIR += napshare
     SUBDIR += ncdc
     SUBDIR += opendchub

Added: head/net-p2p/namecoin-utils/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-p2p/namecoin-utils/Makefile	Mon Sep  3 18:45:20 2018	(r478893)
@@ -0,0 +1,28 @@
+# $FreeBSD$
+
+MASTERDIR=	${.CURDIR}/../namecoin
+
+PKGNAMESUFFIX=	-utils
+
+COMMENT=	Decentralized, open DNS and more (CLI and Utilities)
+SLAVE_PORT=	yes
+
+ONLY_FOR_ARCHS=	amd64 i386 ia64
+ONLY_FOR_ARCHS_REASON=	does not support big-endian architectures
+
+CONFLICTS_INSTALL=	namecoin-stable-[0-9]* namecoin-stable-daemon-[0-9]* namecoin-stable-utils-[0-9]* \
+		namecoin-beta-[0-9]* namecoin-beta-daemon-[0-9]* namecoin-beta-utils-[0-9]*
+
+OPTIONS_DEFINE=		DEBUG HARDENING TESTS
+OPTIONS_DEFAULT=	HARDENING TESTS
+
+CONFIGURE_ARGS=	--without-daemon \
+		--without-gui \
+		--without-libs \
+		--without-qrencode \
+		--with-utils \
+		--disable-wallet
+
+PLIST_FILES=	bin/namecoin-cli bin/namecoin-tx
+
+.include "${MASTERDIR}/Makefile"


More information about the svn-ports-all mailing list