mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
0a0a1779ef
This little program will take an Autodesk Flic (FLI/FLC) file and convert all of its frames into sequential images in a GIF89a file, along with a Netscape application extension animation chunk. This allows you to easily create animated GIF's that are viewable by Netscape Navigator 2 and Microsoft Internet Explorer 3 (and above) users. PR: ports/5433 Submitted by: giffunip@asme.org
27 lines
699 B
Makefile
27 lines
699 B
Makefile
# New ports collection makefile for: fli2gif
|
|
# Version required: 1.1
|
|
# Date created: 7 Jan 1998
|
|
# Whom: giffunip@asme.org
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
DISTNAME= fli2gif
|
|
PKGNAME= fli2gif-1.1
|
|
CATEGORIES= graphics misc
|
|
MASTER_SITES= ftp://ftp.sco.com/skunkware/src/misc/ \
|
|
ftp://ftp.doc.ic.ac.uk/Mirrors/ftp.sco.com/skunkware/src/misc/ \
|
|
ftp://ftp.vse.cz/pub/.ccd0c/SCO/ftp.sco.com/skunkware/src/misc/
|
|
|
|
MAINTAINER= giffunip@asme.org
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/fli2gif ${PREFIX}/bin
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/share/doc/fli2gif
|
|
${INSTALL_DATA} ${WRKSRC}/*.TXT ${PREFIX}/share/doc/fli2gif
|
|
${GZIP_CMD} ${PREFIX}/share/doc/fli2gif/*.TXT
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|