From owner-svn-ports-all@freebsd.org Tue Sep 27 23:46:06 2016 Return-Path: Delivered-To: svn-ports-all@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 4BA1FC00657; Tue, 27 Sep 2016 23:46:06 +0000 (UTC) (envelope-from amdmi3@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 mx1.freebsd.org (Postfix) with ESMTPS id 0F5B4228; Tue, 27 Sep 2016 23:46:05 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8RNk5H1052324; Tue, 27 Sep 2016 23:46:05 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8RNk4XB052320; Tue, 27 Sep 2016 23:46:04 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609272346.u8RNk4XB052320@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 27 Sep 2016 23:46:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422834 - in head/graphics: . ansilove 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.23 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: Tue, 27 Sep 2016 23:46:06 -0000 Author: amdmi3 Date: Tue Sep 27 23:46:04 2016 New Revision: 422834 URL: https://svnweb.freebsd.org/changeset/ports/422834 Log: Add graphics/ansilove: ANSi / ASCII art to PNG converter - Supports 7 textmode formats: ANS/PCB/BiN/ADF/iDF/TND/XBiN - Supports 14 MS-DOS charsets - 80x25, 80x50 and Amiga fonts - Supports SAUCE and iCE colors - Small output size (4-bit PNG) WWW: https://github.com/ansilove/ansilove Added: head/graphics/ansilove/ head/graphics/ansilove/Makefile (contents, props changed) head/graphics/ansilove/distinfo (contents, props changed) head/graphics/ansilove/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Tue Sep 27 23:09:25 2016 (r422833) +++ head/graphics/Makefile Tue Sep 27 23:46:04 2016 (r422834) @@ -46,6 +46,7 @@ SUBDIR += ampasACES-container SUBDIR += ampasCTL SUBDIR += animorph + SUBDIR += ansilove SUBDIR += aoi SUBDIR += apngasm SUBDIR += apngdis Added: head/graphics/ansilove/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/ansilove/Makefile Tue Sep 27 23:46:04 2016 (r422834) @@ -0,0 +1,39 @@ +# Created by: Dmitry Marakasov +# $FreeBSD$ + +PORTNAME= ansilove +PORTVERSION= 3.0.4 +CATEGORIES= graphics textproc + +MAINTAINER= amdmi3@FreeBSD.org +COMMENT= ANSi / ASCII art to PNG converter + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libgd.so:graphics/gd + +USE_GITHUB= yes + +USES= cmake +CMAKE_ARGS= -DCMAKE_INSTALL_MANDIR=man + +PORTDOCS= AUTHORS ChangeLog README.md THANKS TODO +PORTEXAMPLES= * + +PLIST_FILES= bin/ansilove \ + man/man1/ansilove.1.gz + +OPTIONS_DEFINE= DOCS EXAMPLES + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} +.for f in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/ +.endfor + +post-install-EXAMPLES-on: + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR}/ + +.include Added: head/graphics/ansilove/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/ansilove/distinfo Tue Sep 27 23:46:04 2016 (r422834) @@ -0,0 +1,3 @@ +TIMESTAMP = 1474927624 +SHA256 (ansilove-ansilove-3.0.4_GH0.tar.gz) = b115242186e7e5d98311b49c57503cf8dbe6955cbc9880fb3ef7ad831d1f03de +SIZE (ansilove-ansilove-3.0.4_GH0.tar.gz) = 151101 Added: head/graphics/ansilove/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/ansilove/pkg-descr Tue Sep 27 23:46:04 2016 (r422834) @@ -0,0 +1,10 @@ +ANSi / ASCII art to PNG converter + +- Supports 7 textmode formats: + ANS/PCB/BiN/ADF/iDF/TND/XBiN +- Supports 14 MS-DOS charsets +- 80x25, 80x50 and Amiga fonts +- Supports SAUCE and iCE colors +- Small output size (4-bit PNG) + +WWW: https://github.com/ansilove/ansilove