1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-22 08:58:47 +00:00

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
This commit is contained in:
Jason E. Hale 2012-11-04 09:54:21 +00:00
parent 577c5aeff9
commit 0ade182948
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=306960
4 changed files with 53 additions and 0 deletions

View File

@ -47,6 +47,7 @@
SUBDIR += aoi
SUBDIR += aolserver-nsgd
SUBDIR += apngasm
SUBDIR += apngdis
SUBDIR += apvlv
SUBDIR += aqsis
SUBDIR += asciio

46
graphics/apngdis/Makefile Normal file
View File

@ -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>

View File

@ -0,0 +1,2 @@
SHA256 (apngdis-2.5-src.zip) = 684ef8da1688c8fdb1a3dfe742fcf344bfff23b701fb31cea2ece7b2a272faec
SIZE (apngdis-2.5-src.zip) = 9085

View File

@ -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/