From owner-svn-ports-all@FreeBSD.ORG Fri Nov 1 01:12:44 2013 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 ESMTP id 8B3F55A5; Fri, 1 Nov 2013 01:12:44 +0000 (UTC) (envelope-from zi@FreeBSD.org) 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 680BC20B7; Fri, 1 Nov 2013 01:12:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rA11CiRD047876; Fri, 1 Nov 2013 01:12:44 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA11Ch1h047872; Fri, 1 Nov 2013 01:12:43 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201311010112.rA11Ch1h047872@svn.freebsd.org> From: Ryan Steinmetz Date: Fri, 1 Nov 2013 01:12:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332334 - in head/finance: . vanitygen 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.14 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: Fri, 01 Nov 2013 01:12:44 -0000 Author: zi Date: Fri Nov 1 01:12:43 2013 New Revision: 332334 URL: http://svnweb.freebsd.org/changeset/ports/332334 Log: New port: finance/vanitygen: Vanitygen can generate regular bitcoin addresses, namecoin addresses, and testnet addresses. WWW: https://github.com/samr7/vanitygen/ Added: head/finance/vanitygen/ head/finance/vanitygen/Makefile (contents, props changed) head/finance/vanitygen/distinfo (contents, props changed) head/finance/vanitygen/pkg-descr (contents, props changed) Modified: head/finance/Makefile Modified: head/finance/Makefile ============================================================================== --- head/finance/Makefile Thu Oct 31 23:57:27 2013 (r332333) +++ head/finance/Makefile Fri Nov 1 01:12:43 2013 (r332334) @@ -161,6 +161,7 @@ SUBDIR += trytond_stock_supply_forecast SUBDIR += trytond_stock_supply_production SUBDIR += trytond_timesheet + SUBDIR += vanitygen SUBDIR += venice SUBDIR += weberp SUBDIR += wmstock Added: head/finance/vanitygen/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/vanitygen/Makefile Fri Nov 1 01:12:43 2013 (r332334) @@ -0,0 +1,36 @@ +# Created by: Ryan Steinmetz +# $FreeBSD$ + +PORTNAME= vanitygen +PORTVERSION= 0.21 +CATEGORIES= finance +MASTER_SITES= https://github.com/${GH_ACCOUNT}/${PORTNAME}/archive/ +DISTNAME= ${PORTVERSION} + +MAINTAINER= ports@FreeBSD.org +COMMENT= A standalone vanity address generator for bitcoin + +LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre + +USES= gmake +USE_GITHUB= yes +GH_ACCOUNT= samr7 +GH_PROJECT= ${PORTNAME} +GH_TAGNAME= 20130402 +LDFLAGS+= -L${LOCALBASE}/lib +PLIST_FILES= bin/keyconv bin/vanitygen +NO_STAGE= yes + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + +post-patch: + @${REINPLACE_CMD} \ + -e 's|CFLAGS=|CFLAGS=-I${LOCALBASE}/include -L${LOCALBASE}/lib |g' \ + -e 's| oclvanitygen oclvanityminer||g' \ + ${WRKSRC}/Makefile + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/keyconv ${PREFIX}/bin/ + ${INSTALL_PROGRAM} ${WRKSRC}/vanitygen ${PREFIX}/bin/ + +.include Added: head/finance/vanitygen/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/vanitygen/distinfo Fri Nov 1 01:12:43 2013 (r332334) @@ -0,0 +1,2 @@ +SHA256 (0.21.tar.gz) = 58c56e1ec51c654077ace5599d4f9dc512110e2150fe40a05380f948b305be7f +SIZE (0.21.tar.gz) = 77441 Added: head/finance/vanitygen/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/vanitygen/pkg-descr Fri Nov 1 01:12:43 2013 (r332334) @@ -0,0 +1,4 @@ +Vanitygen can generate regular bitcoin addresses, namecoin addresses, +and testnet addresses. + +WWW: https://github.com/samr7/vanitygen/