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-05-06 15:55:48.000000000 -0500
    2 +++ lib/gif_lib.h       2012-05-17 22:40:50.000000000 -0500
    3 @@ -216,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 @@
    44 
    5  extern ColorMapObject *MakeMapObject(int ColorCount,
    6                                       const GifColorType * ColorMap);
    7 -extern void FreeMapObject(ColorMapObject * Object);
    8 +extern void FreeMapObject(ColorMapObject *ColorMapObject);
    9  extern ColorMapObject *UnionColorMap(const ColorMapObject * ColorIn1,
    10                                       const ColorMapObject * ColorIn2,
     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,
    1111                                      GifPixelType ColorTransIn2[]);
  • files/patch-no-docs.diff

     
    1 --- Makefile.in.orig    2012-05-16 19:59:23.000000000 -0500
    2 +++ Makefile.in 2012-05-22 17:53:23.000000000 -0500
    3 @@ -229,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 @@
    44 top_build_prefix = @top_build_prefix@
    55 top_builddir = @top_builddir@
    66 top_srcdir = @top_srcdir@
     
    88+SUBDIRS = lib util pic
    99 EXTRA_DIST = Makefile.unx \
    1010             autogen.sh \
    11              tests \
     11             test.sh \
  • Portfile

     
    44PortSystem                      1.0
    55
    66name                            giflib
    7 version                         4.2.0
    8 revision                        2
     7version                         5.0.0
    98set major                       [lindex [split ${version} .] 0]
    109categories                      graphics
    1110maintainers                     ryandesign
     
    2019long_description                GIF loading and saving shared library. \
    2120                                Uses the LZW algorithm.
    2221
    23 checksums                       rmd160  4f04517dad1dca7bde4646c561d327d957c10eff \
    24                                 sha256  5f3e06e025b87c13eeb3ee46dc9881398bdf7ad578d8135548e1ae3073a4c8ce
     22checksums                       rmd160  16d0418006e6f4391879695a6fc9069da2c5c652 \
     23                                sha256  861ed0b83115991b7fe32e8def48925838f94525df80d80f248a56dea7e57f1a
    2524
    26 # 4.2.0 was stealth-updated hours after its release
    27 dist_subdir                     ${name}/${version}_1
    28 
    2925patchfiles                      patch-gif_lib.h.diff
    3026
    3127configure.args                  --disable-x11
     
    3531set docdir ${prefix}/share/doc/${name}
    3632post-destroot {
    3733    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}
    3935    eval xinstall -m 644 [glob ${worksrcpath}/doc/*.1] ${destroot}${prefix}/share/man/man1
    4036}
    4137