From owner-svn-ports-all@FreeBSD.ORG Sun Nov 4 09:54:22 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2AA68742; Sun, 4 Nov 2012 09:54:22 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 06EAD8FC08; Sun, 4 Nov 2012 09:54:22 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id qA49sLiv051238; Sun, 4 Nov 2012 09:54:21 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id qA49sLnW051231; Sun, 4 Nov 2012 09:54:21 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201211040954.qA49sLnW051231@svn.freebsd.org> From: "Jason E. Hale" Date: Sun, 4 Nov 2012 09:54:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306960 - in head/graphics: . apngdis 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: Sun, 04 Nov 2012 09:54:22 -0000 Author: jhale Date: Sun Nov 4 09:54:21 2012 New Revision: 306960 URL: http://svn.freebsd.org/changeset/ports/306960 Log: apngdis converts an APNG file into a sequence of individual PNG frames via a simple command-line interface. WWW: http://sourceforge.net/projects/apngdis/ PR: ports/173205 Submitted by: nemysis Approved by: makc, avilla (mentors, implicit) Feature safe: yes Added: head/graphics/apngdis/ head/graphics/apngdis/Makefile (contents, props changed) head/graphics/apngdis/distinfo (contents, props changed) head/graphics/apngdis/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sun Nov 4 09:48:04 2012 (r306959) +++ head/graphics/Makefile Sun Nov 4 09:54:21 2012 (r306960) @@ -47,6 +47,7 @@ SUBDIR += aoi SUBDIR += aolserver-nsgd SUBDIR += apngasm + SUBDIR += apngdis SUBDIR += apvlv SUBDIR += aqsis SUBDIR += asciio Added: head/graphics/apngdis/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/apngdis/Makefile Sun Nov 4 09:54:21 2012 (r306960) @@ -0,0 +1,46 @@ +# Created by: nemysis@gmx.ch +# $FreeBSD$ + +PORTNAME= apngdis +PORTVERSION= 2.5 +DISTVERSIONSUFFIX=-src +CATEGORIES= graphics +MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} + +MAINTAINER= nemysis@gmx.ch +COMMENT= Deconstructs APNG files into individual frames + +LICENSE= ZLIB + +NO_WRKSUBDIR= yes + +USE_DOS2UNIX= yes +USE_ZIP= yes + +LDFLAGS+= -lz + +PLIST_FILES= bin/${PORTNAME} + +PORTDOCS= readme.txt + +OPTIONS_DEFINE= DOCS STATIC + +.include + +.if ${PORT_OPTIONS:MSTATIC} +LDFLAGS+= -static +.endif + +do-build: + cd ${WRKSRC} && ${CC} ${CFLAGS} ${CPPFLAGS} ${PORTNAME}.c \ + -o ${PORTNAME} ${LDFLAGS} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} +.endif + +.include Added: head/graphics/apngdis/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/apngdis/distinfo Sun Nov 4 09:54:21 2012 (r306960) @@ -0,0 +1,2 @@ +SHA256 (apngdis-2.5-src.zip) = 684ef8da1688c8fdb1a3dfe742fcf344bfff23b701fb31cea2ece7b2a272faec +SIZE (apngdis-2.5-src.zip) = 9085 Added: head/graphics/apngdis/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/apngdis/pkg-descr Sun Nov 4 09:54:21 2012 (r306960) @@ -0,0 +1,4 @@ +apngdis converts an APNG file into a sequence of individual PNG frames +via a simple command-line interface. + +WWW: http://sourceforge.net/projects/apngdis/