Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 4 Nov 2012 09:54:21 +0000 (UTC)
From:      "Jason E. Hale" <jhale@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r306960 - in head/graphics: . apngdis
Message-ID:  <201211040954.qA49sLnW051231@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <nemysis@gmx.ch>
  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 <bsd.port.options.mk>
+
+.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 <bsd.port.mk>

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/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211040954.qA49sLnW051231>