Ticket #35817: giflib-5.0.0.diff
File giflib-5.0.0.diff, 3.6 KB (added by ryandesign (Ryan Carsten Schmidt), 12 years ago) |
---|
-
files/patch-gif_lib.h.diff
1 --- lib/gif_lib.h.orig 2012-0 5-06 15:55:48.000000000 -05002 +++ lib/gif_lib.h 2012-0 5-17 22:40:50.000000000 -05003 @@ -2 16,7 +216,7 @@1 --- lib/gif_lib.h.orig 2012-06-19 05:44:08.000000000 -0500 2 +++ lib/gif_lib.h 2012-06-19 23:59:48.000000000 -0500 3 @@ -234,7 +234,7 @@ 4 4 5 extern ColorMapObject * MakeMapObject(int ColorCount,6 const GifColorType * 7 -extern void FreeMapObject(ColorMapObject *Object);8 +extern void FreeMapObject(ColorMapObject *ColorMapObject);9 extern ColorMapObject * UnionColorMap(const ColorMapObject *ColorIn1,10 const ColorMapObject * 5 extern ColorMapObject *GifMakeMapObject(int ColorCount, 6 const GifColorType *ColorMap); 7 -extern void GifFreeMapObject(ColorMapObject *Object); 8 +extern void GifFreeMapObject(ColorMapObject *ColorMapObject); 9 extern ColorMapObject *GifUnionColorMap(const ColorMapObject *ColorIn1, 10 const ColorMapObject *ColorIn2, 11 11 GifPixelType ColorTransIn2[]); -
files/patch-no-docs.diff
1 --- Makefile.in.orig 2012-0 5-16 19:59:23.000000000 -05002 +++ Makefile.in 2012-0 5-22 17:53:23.000000000 -05003 @@ -22 9,7 +229,7 @@1 --- Makefile.in.orig 2012-06-19 06:23:13.000000000 -0500 2 +++ Makefile.in 2012-06-20 00:00:13.000000000 -0500 3 @@ -225,7 +225,7 @@ 4 4 top_build_prefix = @top_build_prefix@ 5 5 top_builddir = @top_builddir@ 6 6 top_srcdir = @top_srcdir@ … … 8 8 +SUBDIRS = lib util pic 9 9 EXTRA_DIST = Makefile.unx \ 10 10 autogen.sh \ 11 test s\11 test.sh \ -
Portfile
4 4 PortSystem 1.0 5 5 6 6 name giflib 7 version 4.2.0 8 revision 2 7 version 5.0.0 9 8 set major [lindex [split ${version} .] 0] 10 9 categories graphics 11 10 maintainers ryandesign … … 20 19 long_description GIF loading and saving shared library. \ 21 20 Uses the LZW algorithm. 22 21 23 checksums rmd160 4f04517dad1dca7bde4646c561d327d957c10eff\24 sha256 5f3e06e025b87c13eeb3ee46dc9881398bdf7ad578d8135548e1ae3073a4c8ce22 checksums rmd160 16d0418006e6f4391879695a6fc9069da2c5c652 \ 23 sha256 861ed0b83115991b7fe32e8def48925838f94525df80d80f248a56dea7e57f1a 25 24 26 # 4.2.0 was stealth-updated hours after its release27 dist_subdir ${name}/${version}_128 29 25 patchfiles patch-gif_lib.h.diff 30 26 31 27 configure.args --disable-x11 … … 35 31 set docdir ${prefix}/share/doc/${name} 36 32 post-destroot { 37 33 xinstall -d ${destroot}${docdir} 38 xinstall -W ${worksrcpath} AUTHORS BUGS COPYING NEWS README TODO api.txt history.txt${destroot}${docdir}34 xinstall -W ${worksrcpath} AUTHORS BUGS COPYING NEWS README TODO history.asc ${destroot}${docdir} 39 35 eval xinstall -m 644 [glob ${worksrcpath}/doc/*.1] ${destroot}${prefix}/share/man/man1 40 36 } 41 37