From owner-svn-ports-head@freebsd.org Mon Sep 3 18:45:21 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7F5ABFF1ADD; Mon, 3 Sep 2018 18:45:21 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 36D38703A6; Mon, 3 Sep 2018 18:45:21 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 23D3640B5; Mon, 3 Sep 2018 18:45:21 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w83IjKar012862; Mon, 3 Sep 2018 18:45:20 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w83IjKlK012861; Mon, 3 Sep 2018 18:45:20 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201809031845.w83IjKlK012861@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Mon, 3 Sep 2018 18:45:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478893 - in head/net-p2p: . namecoin-utils X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: in head/net-p2p: . namecoin-utils X-SVN-Commit-Revision: 478893 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Sep 2018 18:45:21 -0000 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@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"