From owner-svn-ports-all@FreeBSD.ORG Wed Jan 1 17:52:50 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 56E8F93F; Wed, 1 Jan 2014 17:52:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 431BA177D; Wed, 1 Jan 2014 17:52:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s01HqoJI059977; Wed, 1 Jan 2014 17:52:50 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s01HqnsG059975; Wed, 1 Jan 2014 17:52:49 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201401011752.s01HqnsG059975@svn.freebsd.org> From: Steve Wills Date: Wed, 1 Jan 2014 17:52:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r338383 - in head/net-p2p: . bitcoin-daemon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 17:52:50 -0000 Author: swills Date: Wed Jan 1 17:52:49 2014 New Revision: 338383 URL: http://svnweb.freebsd.org/changeset/ports/338383 Log: Slave port of net-p2p/bitcoin so as to allow bitcoin-qt and bitcoind to easily coexist on a system. PR: ports/184972 Submitted by: "Chad J. Milios" Added: head/net-p2p/bitcoin-daemon/ head/net-p2p/bitcoin-daemon/Makefile (contents, props changed) Modified: head/net-p2p/Makefile Modified: head/net-p2p/Makefile ============================================================================== --- head/net-p2p/Makefile Wed Jan 1 16:50:03 2014 (r338382) +++ head/net-p2p/Makefile Wed Jan 1 17:52:49 2014 (r338383) @@ -7,6 +7,7 @@ SUBDIR += amule-devel SUBDIR += azureus2 SUBDIR += bitcoin + SUBDIR += bitcoin-daemon SUBDIR += bitflu SUBDIR += bitmessage SUBDIR += bittyrant Added: head/net-p2p/bitcoin-daemon/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/bitcoin-daemon/Makefile Wed Jan 1 17:52:49 2014 (r338383) @@ -0,0 +1,9 @@ +# $FreeBSD$ + +PKGNAMESUFFIX= -daemon +COMMENT= Virtual Peer-to-Peer Currency Client +MASTERDIR= ${.CURDIR}/../bitcoin +DESCR= ${MASTERDIR}/pkg-descr +SLAVE_PORT= yes +OPTIONS_EXCLUDE= GUI QRCODES +.include "${MASTERDIR}/Makefile"