From owner-svn-ports-all@FreeBSD.ORG Thu Aug 14 18:45:21 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 27E54839; Thu, 14 Aug 2014 18:45:21 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 08E142E1C; Thu, 14 Aug 2014 18:45:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7EIjKhO042468; Thu, 14 Aug 2014 18:45:20 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7EIjKEZ042464; Thu, 14 Aug 2014 18:45:20 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201408141845.s7EIjKEZ042464@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 14 Aug 2014 18:45:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364861 - in head/graphics: . seq2gif 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.18-1 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: Thu, 14 Aug 2014 18:45:21 -0000 Author: pi Date: Thu Aug 14 18:45:19 2014 New Revision: 364861 URL: http://svnweb.freebsd.org/changeset/ports/364861 QAT: https://qat.redports.org/buildarchive/r364861/ Log: New port: graphics/seq2gif This software converts a sequences record file generated by ttyrec into a gif animation directly using portable built-in terminal emulation engine originated from yaft. yaft provides rare terminal emulation features such as SIXEL/DRCS. WWW: http://saitoha.github.io/seq2gif/ PR: 192418 Submitted by: IWAMOTO Kouichi Added: head/graphics/seq2gif/ head/graphics/seq2gif/Makefile (contents, props changed) head/graphics/seq2gif/distinfo (contents, props changed) head/graphics/seq2gif/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Thu Aug 14 17:54:11 2014 (r364860) +++ head/graphics/Makefile Thu Aug 14 18:45:19 2014 (r364861) @@ -961,6 +961,7 @@ SUBDIR += seam-carving-gui SUBDIR += seejpeg SUBDIR += separate + SUBDIR += seq2gif SUBDIR += sharpconstruct SUBDIR += shiva-collections SUBDIR += shotwell Added: head/graphics/seq2gif/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/seq2gif/Makefile Thu Aug 14 18:45:19 2014 (r364861) @@ -0,0 +1,36 @@ +# $FreeBSD$ + +PORTNAME= seq2gif +PORTVERSION= 0.10.3.20140802 +#PORTEPOCH= 0 +CATEGORIES= graphics + +MAINTAINER= sue@iwmt.org +COMMENT= Convert a ttyrec record into a gif animation directly + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING + +USE_GITHUB= yes +GH_ACCOUNT= saitoha +#GH_TAGNAME= v${PORTVERSION} +GH_TAGNAME= ${GH_COMMIT} +GH_COMMIT= 253dacb + +USE_LDCONFIG= yes +USES= libtool + +GNU_CONFIGURE= yes +#CONFIGURE_ARGS= --with-pkgconfigdir=${LOCALBASE}/libdata/pkgconfig + +INSTALL_TARGET= install-strip + +PORTDOCS= README.md + +PLIST_FILES= bin/seq2gif + +post-install: + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} + +.include Added: head/graphics/seq2gif/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/seq2gif/distinfo Thu Aug 14 18:45:19 2014 (r364861) @@ -0,0 +1,2 @@ +SHA256 (seq2gif-0.10.3.20140802.tar.gz) = 6d1cec20e0b85e4e21706b82e85447b0ed421cb11dc4f872bc0a4765631b04ba +SIZE (seq2gif-0.10.3.20140802.tar.gz) = 12236640 Added: head/graphics/seq2gif/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/seq2gif/pkg-descr Thu Aug 14 18:45:19 2014 (r364861) @@ -0,0 +1,6 @@ +This software converts a sequences record file generated by ttyrec into a +gif animation directly using portable built-in terminal emulation engine +originated from yaft. yaft provides rare terminal emulation features such as +SIXEL/DRCS. + +WWW: http://saitoha.github.io/seq2gif/