summaryrefslogtreecommitdiff
path: root/graphics/fli2gif
diff options
context:
space:
mode:
authorJustin M. Seger <jseger@FreeBSD.org>1998-01-29 16:33:34 +0000
committerJustin M. Seger <jseger@FreeBSD.org>1998-01-29 16:33:34 +0000
commit0a0a1779efbf079ec008b6cbec1d10aded7da347 (patch)
tree02f18f622e1c3182f527c42484410c0004751e69 /graphics/fli2gif
parentMake http://www.freebsd.org/~jseger primary MASTER_SITE so that I can keep a (diff)
Import of graphics/fli2gif version 1.1
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
Notes
Notes: svn path=/head/; revision=9508
Diffstat (limited to 'graphics/fli2gif')
-rw-r--r--graphics/fli2gif/Makefile26
-rw-r--r--graphics/fli2gif/distinfo1
-rw-r--r--graphics/fli2gif/files/patch-aa23
-rw-r--r--graphics/fli2gif/files/patch-ab39
-rw-r--r--graphics/fli2gif/pkg-comment1
-rw-r--r--graphics/fli2gif/pkg-descr14
-rw-r--r--graphics/fli2gif/pkg-plist2
7 files changed, 106 insertions, 0 deletions
diff --git a/graphics/fli2gif/Makefile b/graphics/fli2gif/Makefile
new file mode 100644
index 000000000000..9ab374f324ba
--- /dev/null
+++ b/graphics/fli2gif/Makefile
@@ -0,0 +1,26 @@
+# 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>
diff --git a/graphics/fli2gif/distinfo b/graphics/fli2gif/distinfo
new file mode 100644
index 000000000000..c9add63fcc83
--- /dev/null
+++ b/graphics/fli2gif/distinfo
@@ -0,0 +1 @@
+MD5 (fli2gif.tar.gz) = efcd4d184679634f6a9ace79b8402132
diff --git a/graphics/fli2gif/files/patch-aa b/graphics/fli2gif/files/patch-aa
new file mode 100644
index 000000000000..793d041ea315
--- /dev/null
+++ b/graphics/fli2gif/files/patch-aa
@@ -0,0 +1,23 @@
+--- Makefile.orig Thu Feb 20 21:28:59 1997
++++ Makefile Thu Jan 29 11:27:08 1998
+@@ -1,16 +1,16 @@
+ all: fli2gif
+
+ fli2gif: fliplay.o gif.o fli2gif.o
+- CC -o fli2gif fli2gif.o gif.o fliplay.o
++ $(CC) $(CCFLAGS) -o fli2gif fli2gif.o gif.o fliplay.o
+
+ fliplay.o: fliplay.C
+- CC -c -I. fliplay.C
++ $(CC) $(CFLAGS) -c -I. fliplay.C
+
+ gif.o: gif.C
+- CC -c -I. gif.C
++ $(CC) $(CFLAGS) -c -I. gif.C
+
+ fli2gif.o: fli2gif.C
+- CC -c -I. fli2gif.C
++ $(CC) $(CFLAGS) -c -I. fli2gif.C
+
+ clean:
+ rm -f fli2gif fli2gif.o fliplay.o gif.o
diff --git a/graphics/fli2gif/files/patch-ab b/graphics/fli2gif/files/patch-ab
new file mode 100644
index 000000000000..35c9be11d702
--- /dev/null
+++ b/graphics/fli2gif/files/patch-ab
@@ -0,0 +1,39 @@
+--- fli2gif.C.orig Tue Jul 29 20:05:27 1997
++++ fli2gif.C Thu Jan 29 11:27:08 1998
+@@ -43,7 +43,9 @@
+ // ******************
+ #include <stdio.h>
+ #include <stdlib.h>
+-#include <malloc.h>
++#ifndef __STDC__
++# include <malloc.h>
++#endif
+ #include <string.h>
+ #if defined(__TURBOC__) || defined(_MSC_VER)
+ #include <conio.h>
+@@ -112,7 +114,7 @@
+ // []----------------[]
+ // | Initialization |
+ // []----------------[]
+- printf("FLI2GIF.EXE -- Automatic Flic to Animated GIF convertor, v1.1\n");
++ printf("FLI2GIF -- Automatic Flic to Animated GIF convertor, v1.1\n");
+ printf(" by JL Enterprises, 1996. (Compiled with "
+ #if defined(__TURBOC__)
+ "Borland"
+@@ -125,13 +127,15 @@
+ #endif
+ #if defined(_Windows)
+ " for Windows"
++ #elif defined(__FreeBSD__)
++ " for FreeBSD"
+ #elif defined(_SCO_DS)
+ " for SCO OpenServer 5"
+ #elif defined(__USLC__)
+ " for SCO UnixWare"
+ #elif defined(__MSDOS__) || defined(_DOS)
+ " for MS-DOS"
+- #endif
++ #endif
+ ")\n\n");
+ {
+ int gotflic = FALSE, gotgif = FALSE;
diff --git a/graphics/fli2gif/pkg-comment b/graphics/fli2gif/pkg-comment
new file mode 100644
index 000000000000..fe42a8ff1abb
--- /dev/null
+++ b/graphics/fli2gif/pkg-comment
@@ -0,0 +1 @@
+Automatic Flic to animated GIF convertor
diff --git a/graphics/fli2gif/pkg-descr b/graphics/fli2gif/pkg-descr
new file mode 100644
index 000000000000..29713d6c41b6
--- /dev/null
+++ b/graphics/fli2gif/pkg-descr
@@ -0,0 +1,14 @@
+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.
+
+By using my program, you can use any animation program that can output
+Autodesk Flic files. This includes Autodesk Animator, Autodesk Animator
+Pro, Autodesk 3D-Studio, and many others. Additionally, there exist
+utilities to convert from nearly any other animation format into the
+flic format, allowing even more possibilities of animation conversion
+without having to resort to saving out individual frames to separate files.
+
+Home page: http://members.aol.com/JeffLawson/
diff --git a/graphics/fli2gif/pkg-plist b/graphics/fli2gif/pkg-plist
new file mode 100644
index 000000000000..abdc924624e0
--- /dev/null
+++ b/graphics/fli2gif/pkg-plist
@@ -0,0 +1,2 @@
+bin/fli2gif
+share/doc/fli2gif/FLI2GIF.TXT.gz