summaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorMikhail Teterin <mi@FreeBSD.org>2001-08-21 01:32:30 +0000
committerMikhail Teterin <mi@FreeBSD.org>2001-08-21 01:32:30 +0000
commitf5dc836a7e7b1505743663a99cbca48076364817 (patch)
tree1dbcaf9b4d141525f35372ee671cdd1007df8787 /graphics
parentRestore the ability to _read_ gif images, removed by the author due (diff)
Add back the ability to _read_ GIF images, now that our gd has it again.
Notes
Notes: svn path=/head/; revision=46569
Diffstat (limited to 'graphics')
-rw-r--r--graphics/gdtclft/Makefile2
-rw-r--r--graphics/gdtclft/files/patch-gif16
2 files changed, 17 insertions, 1 deletions
diff --git a/graphics/gdtclft/Makefile b/graphics/gdtclft/Makefile
index 9342f0112d22..e5b3f4cd9a36 100644
--- a/graphics/gdtclft/Makefile
+++ b/graphics/gdtclft/Makefile
@@ -7,7 +7,7 @@
PORTNAME= Gdtclft
PORTVERSION= 2.2.5
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= graphics tcl${TCL_DVER}
MASTER_SITES= ftp://ftp.graphviz.org/pub/
DISTNAME= ${PORTNAME}${PORTVERSION}
diff --git a/graphics/gdtclft/files/patch-gif b/graphics/gdtclft/files/patch-gif
new file mode 100644
index 000000000000..f7dbb16b5b61
--- /dev/null
+++ b/graphics/gdtclft/files/patch-gif
@@ -0,0 +1,16 @@
+--- gdCmd.c Fri Aug 4 17:11:05 2000
++++ gdCmd.c Fri Jul 27 16:22:18 2001
+@@ -65,4 +65,6 @@
+ {"createFromPNG", tclGdCreateCmd, 1, 1, 0, 0,
+ "filehandle"},
++ {"createFromGIF", tclGdCreateCmd, 1, 1, 0, 0,
++ "filehandle"},
+ {"createFromGD", tclGdCreateCmd, 1, 1, 0, 0,
+ "filehandle"},
+@@ -432,4 +434,6 @@
+ } else if (cmd[10] == 'X') {
+ im = gdImageCreateFromXbm(filePtr);
++ } else if (cmd[11] == 'I') {
++ im = gdImageCreateFromGif(filePtr);
+ } else {
+ im = gdImageCreateFromGd(filePtr);