From owner-svn-ports-head@freebsd.org Fri Sep 25 18:35:16 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 411B6A09000; Fri, 25 Sep 2015 18:35:16 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1835C1C90; Fri, 25 Sep 2015 18:35:16 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8PIZFEO080380; Fri, 25 Sep 2015 18:35:15 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8PIZFad080376; Fri, 25 Sep 2015 18:35:15 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201509251835.t8PIZFad080376@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Fri, 25 Sep 2015 18:35:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r397849 - in head/biology: . fastool X-SVN-Group: ports-head 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.20 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: Fri, 25 Sep 2015 18:35:16 -0000 Author: rm Date: Fri Sep 25 18:35:14 2015 New Revision: 397849 URL: https://svnweb.freebsd.org/changeset/ports/397849 Log: Simple and quick FastQ and FastA tool for file reading and conversion. WWW: https://github.com/fstrozzi/Fastool PR: 203293 Submitted by: Jason Bacon Added: head/biology/fastool/ head/biology/fastool/Makefile (contents, props changed) head/biology/fastool/distinfo (contents, props changed) head/biology/fastool/pkg-descr (contents, props changed) Modified: head/biology/Makefile Modified: head/biology/Makefile ============================================================================== --- head/biology/Makefile Fri Sep 25 18:34:29 2015 (r397848) +++ head/biology/Makefile Fri Sep 25 18:35:14 2015 (r397849) @@ -20,6 +20,7 @@ SUBDIR += fasta SUBDIR += fasta3 SUBDIR += fastdnaml + SUBDIR += fastool SUBDIR += fasttree SUBDIR += fastx-toolkit SUBDIR += fluctuate Added: head/biology/fastool/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/fastool/Makefile Fri Sep 25 18:35:14 2015 (r397849) @@ -0,0 +1,33 @@ +# Created by: Jason Bacon +# $FreeBSD$ + +PORTNAME= fastool +PORTVERSION= 0.1.4 +CATEGORIES= biology + +MAINTAINER= jwbacon@tds.net +COMMENT= Simple and quick FastQ and FastA tool for file reading and conversion + +LICENSE= BSD2CLAUSE + +USE_GITHUB= yes +GH_ACCOUNT= fstrozzi +GH_PROJECT= Fastool + +WRKSRC= ${WRKDIR}/Fastool-${PORTVERSION} + +PLIST_FILES= bin/fastool + +CFLAGS+= -std=c99 + +post-patch: + ${REINPLACE_CMD} \ + -e 's|CC *=|CC ?=|g' \ + -e 's|CFLAGS *=|CFLAGS ?=|g' \ + ${WRKSRC}/Makefile + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/fastool \ + ${STAGEDIR}${PREFIX}/bin + +.include Added: head/biology/fastool/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/fastool/distinfo Fri Sep 25 18:35:14 2015 (r397849) @@ -0,0 +1,2 @@ +SHA256 (fstrozzi-Fastool-0.1.4_GH0.tar.gz) = f86f02fced9479b77d6d27a442b66e66f0c55d40d5ad2ddd91a752de57024540 +SIZE (fstrozzi-Fastool-0.1.4_GH0.tar.gz) = 6346 Added: head/biology/fastool/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/fastool/pkg-descr Fri Sep 25 18:35:14 2015 (r397849) @@ -0,0 +1,3 @@ +Simple and quick FastQ and FastA tool for file reading and conversion. + +WWW: https://github.com/fstrozzi/Fastool