Index: head/graphics/libimg/Makefile =================================================================== --- head/graphics/libimg/Makefile (revision 523699) +++ head/graphics/libimg/Makefile (revision 523700) @@ -1,66 +1,63 @@ # Created by: Glenn Johnson # $FreeBSD$ PORTNAME= libimg -PORTVERSION= 1.4.7 -CATEGORIES?= graphics tk +PORTVERSION= 1.4.9 +CATEGORIES?= graphics tk tcl MASTER_SITES= SF/tkimg/tkimg/${PORTVERSION:R}/tkimg%20${PORTVERSION} -DISTNAME= Img-Source-${PORTVERSION} +DISTNAME= Img-${PORTVERSION}-Source MAINTAINER= mi@aldan.algebra.com COMMENT= Library of image format handlers for Tk4.1 and later LICENSE= TclTk LICENSE_NAME= Tcl/Tk License LICENSE_FILE= ${WRKSRC}/license.terms LICENSE_PERMS= auto-accept pkg-sell pkg-mirror dist-sell dist-mirror BUILD_DEPENDS= dtplite:devel/tcllib LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libpng.so:graphics/png \ libtiff.so:graphics/tiff -PLIST_SUB+= PORTVERSION=${PORTVERSION} +USES= autoreconf jpeg tk:tea xorg dos2unix -USES= autoreconf jpeg tk:tea xorg zip +PLIST_SUB+= PORTVERSION=${PORTVERSION} USE_XORG= x11 xext xft xrender xscrnsaver OPTIONS_DEFINE= EXAMPLES OPTIONS_SUB= yes +WRKSRC= ${WRKDIR}/Img-${PORTVERSION} +DOS2UNIX_GLOB= *.[ch] *.tcl *.msg *.in *.test license.terms # We don't need the bundled libraries: -EXTRACT_AFTER_ARGS= -x '*/libz/*' -x zlib \ - -x 'config.*' -x Makefile \ - -x '*/compat/*' -x '*/libtiff/*' \ - -x '*/libjpeg/*' -x '*/libpng/*' -a -d ${WRKDIR} +EXTRACT_AFTER_ARGS= --exclude 'config.*' --exclude Makefile \ + --exclude 'compat' --exclude win MAKE_ARGS+= INSTALL_ROOT="${STAGEDIR}" CONFIGURE_ENV= WRKDIR="${WRKDIR}" post-patch: ${REINPLACE_CMD} -E -e 's,"(zlib|tiff|jpeg|png)tcl.h",<\1.h>,' \ -e 's,jpeg\.h,jpeglib.h,' ${WRKSRC}/*/*.[ch] .for d in jpeg png tiff zlib ${TOUCH} ${WRKDIR}/$dtclConfig.sh .endfor - -pre-configure: - ${CHMOD} +x ${WRKSRC}/${CONFIGURE_SCRIPT} post-configure: .for l in jpeg png tiff # Link with -l$l ${REINPLACE_CMD} -E \ -e 's,^SHLIB_LD_LIBS[[:space:]]*=[[:space:]]*(.*),SHLIB_LD_LIBS=\1 -l$l,' \ ${WRKSRC}/$l/Makefile .endfor do-test: cd ${WRKSRC}/tests && \ ${SETENV} TCLLIBPATH=${WRKSRC:Q} ${WISH} ${WRKSRC}/tests/all post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/msgs/ ${INSTALL_DATA} ${WRKSRC}/msgs/*.msg ${STAGEDIR}${EXAMPLESDIR}/msgs/ ${INSTALL_SCRIPT} ${WRKSRC}/demo.tcl ${WRKSRC}/tkv.tcl ${STAGEDIR}${EXAMPLESDIR}/ .include Index: head/graphics/libimg/distinfo =================================================================== --- head/graphics/libimg/distinfo (revision 523699) +++ head/graphics/libimg/distinfo (revision 523700) @@ -1,3 +1,3 @@ -TIMESTAMP = 1514742359 -SHA256 (Img-Source-1.4.7.zip) = ec5b742d6936e9b93f53dc2a6d995a47abc06cfb8ec4ca14f70c1f28680bd189 -SIZE (Img-Source-1.4.7.zip) = 7976394 +TIMESTAMP = 1579572018 +SHA256 (Img-1.4.9-Source.tar.gz) = 89aa029d9352de02c483857bc85b27af52f1b77907ee276047e13e894d1e3629 +SIZE (Img-1.4.9-Source.tar.gz) = 7702460 Index: head/graphics/libimg/files/patch-jpeg =================================================================== --- head/graphics/libimg/files/patch-jpeg (revision 523699) +++ head/graphics/libimg/files/patch-jpeg (revision 523700) @@ -1,100 +1,148 @@ ---- jpeg/jpeg.c 2013-04-09 15:10:34.000000000 -0400 -+++ jpeg/jpeg.c 2014-06-09 13:53:53.000000000 -0400 -@@ -56,5 +56,9 @@ - #endif +--- jpeg/jpeg.c 2018-09-14 09:53:49.000000000 -0400 ++++ jpeg/jpeg.c 2020-01-20 21:56:13.089925000 -0500 +@@ -62,5 +62,9 @@ + #include "tkimg.h" -#include "jpegtcl.h" +#ifdef EXTERN +# undef EXTERN +#endif +#include +#include static int SetupJPegLibrary(Tcl_Interp *interp); -@@ -137,86 +141,11 @@ +@@ -143,86 +147,11 @@ - static int SetupJPegLibrary (interp) Tcl_Interp *interp; { - struct jpeg_compress_struct *cinfo; /* libjpeg's parameter structure */ - struct my_error_mgr jerror; /* for controlling libjpeg error handling */ - int i; - - if (Jpegtcl_InitStubs(interp, JPEGTCL_VERSION, 0) == NULL) { - return TCL_ERROR; - } - - /* The followin code tries to determine if the JPEG library is - valid at all. The library might be configured differently, - which will produce core dumps. Also it might be that - fields appear in different places in jpeg_compress_struct - or jpeg_decompress_struct. This will make the library totally - unusable. In stead of a core-dump, we better have a proper - error message */ - - /* overallocat size, so we don't get a core-dump if the library - thinks that the structure is much larger */ - - cinfo = (struct jpeg_compress_struct *) ckalloc(8*sizeof(struct jpeg_compress_struct)); - cinfo->err = jpeg_std_error(&jerror.pub); - jerror.pub.error_exit = my_error_exit; - jerror.pub.output_message = my_output_message; - /* Establish the setjmp return context for my_error_exit to use. */ - if (setjmp(jerror.setjmp_buffer)) { - /* If we get here, the JPEG library is invalid. */ - jpeg_destroy_compress(cinfo); - ckfree((char *)cinfo); - - if (interp) { - Tcl_AppendResult(interp, "couldn't use \"", "jpegtcl", - "\": please upgrade to at least version 6a", (char *) NULL); - } - return TCL_ERROR; - } - - /* Now we can initialize libjpeg. */ - ((char *) cinfo)[sizeof(struct jpeg_compress_struct)] = 53; - jpeg_create_compress(cinfo); - if (((char *) cinfo)[sizeof(struct jpeg_compress_struct)] != 53) { - /* Oops. The library changed this value, which is outside the - * structure. Definitely, the library is invalid!!!! */ - ERREXIT(cinfo, JMSG_NOMESSAGE); - } - - /* Set up JPEG compression parameters. */ - cinfo->image_width = 16; - cinfo->image_height = 16; - cinfo->input_components = 3; - cinfo->in_color_space = JCS_RGB; - cinfo->data_precision = -1; - cinfo->optimize_coding = TRUE; - cinfo->dct_method = -1; - cinfo->X_density = 0; - cinfo->Y_density = 0; - jpeg_set_defaults(cinfo); - - if ((cinfo->data_precision != BITS_IN_JSAMPLE) || - (cinfo->optimize_coding != FALSE) || - (cinfo->dct_method != JDCT_DEFAULT) || - (cinfo->X_density != 1) || - (cinfo->Y_density != 1)) { - ERREXIT(cinfo, JMSG_NOMESSAGE); - } - for (i = 0; i < NUM_ARITH_TBLS; i++) { - if ((cinfo->arith_dc_L[i] != 0) || - (cinfo->arith_dc_U[i] != 1) || - (cinfo->arith_ac_K[i] != 5)) { - ERREXIT(cinfo, JMSG_NOMESSAGE); - } - } - jpeg_destroy_compress(cinfo); - ckfree((char *) cinfo); return TCL_OK; } - /* *---------------------------------------------------------------------- +@@ -860,8 +789,6 @@ + } + case 2: { +- if (jpeg_simple_progression != NULL) { +- /* Select simple progressive mode. */ +- jpeg_simple_progression(cinfo); +- } ++ /* Select simple progressive mode. */ ++ jpeg_simple_progression(cinfo); + break; + } +@@ -899,5 +826,5 @@ + greenOffset = blockPtr->offset[1] - blockPtr->offset[0]; + blueOffset = blockPtr->offset[2] - blockPtr->offset[0]; +- if ((jpeg_set_colorspace != NULL) && ++ if ( + (grayscale || (!greenOffset && !blueOffset))) { + /* Generate monochrome JPEG file if source block is grayscale. */ +--- tests/jpeg.test 2016-07-30 10:30:48.000000000 -0400 ++++ tests/jpeg.test 2020-01-20 21:43:20.086115000 -0500 +@@ -24,5 +24,5 @@ + source $file2.base64 + +- test jpeg-1.1 {} -setup { ++ test jpeg-1.1 {} -constraints nonPortable -setup { + catch {image delete i} + } -body { +@@ -33,5 +33,5 @@ + } -result $imgdata2 + +- test jpeg-1.2 {} -setup { ++ test jpeg-1.2 {} -constraints nonPortable -setup { + catch {image delete i} + } -body { +@@ -42,5 +42,5 @@ + } -result $imgdata2 + +- test jpeg-1.3 {} -setup { ++ test jpeg-1.3 {} -constraints nonPortable -setup { + catch {image delete i} + } -body { +@@ -52,5 +52,5 @@ + } -result $imgdata2 + +- test jpeg-1.4 {} -setup { ++ test jpeg-1.4 {} -constraints nonPortable -setup { + catch {image delete i} + } -body { Index: head/graphics/libimg/files/patch-tiff =================================================================== --- head/graphics/libimg/files/patch-tiff (revision 523699) +++ head/graphics/libimg/files/patch-tiff (revision 523700) @@ -1,330 +1,369 @@ --- tiff/configure 2013-11-21 17:03:14.000000000 -0500 +++ tiff/configure 2014-06-09 14:00:22.000000000 -0400 @@ -8232,5 +8232,5 @@ - vars="tiff.c tiffJpeg.c tiffZip.c tiffPixar.c" + vars="tiff.c" for i in $vars; do case $i in ---- tiff/tiff.c 2013-11-21 17:03:14.000000000 -0500 -+++ tiff/tiff.c 2014-06-09 14:16:39.000000000 -0400 +--- tiff/tiff.c 2019-03-02 16:33:00.000000000 -0500 ++++ tiff/tiff.c 2020-01-20 21:20:18.135776000 -0500 @@ -19,11 +19,15 @@ #endif #include "tkimg.h" -#include "tifftcl.h" -#include "zlibtcl.h" +#ifdef EXTERN +# undef EXTERN +#endif +#include +#include +#include #ifdef HAVE_STDLIB_H #undef HAVE_STDLIB_H #endif -#include "jpegtcl.h" +#include -@@ -35,7 +39,4 @@ static int SetupTiffLibrary(Tcl_Interp * +@@ -35,7 +39,4 @@ #include "init.c" -#include "tiffInt.h" - - extern DLLIMPORT int unlink(const char *); -@@ -88,10 +89,4 @@ SetupTiffLibrary (interp) +@@ -88,52 +89,11 @@ Tcl_Interp *interp; { - static int initialized = 0; - - if (Tifftcl_InitStubs(interp, TIFFTCL_VERSION, 0) == NULL) { - return TCL_ERROR; - } - if (errorMessage) { ckfree(errorMessage); -@@ -105,35 +100,4 @@ SetupTiffLibrary (interp) + errorMessage = NULL; } - +- if (TIFFSetErrorHandler != NULL) { +- TIFFSetErrorHandler(_TIFFerr); +- } +- if (TIFFSetWarningHandler != NULL) { +- TIFFSetWarningHandler(_TIFFwarn); +- } +- - /* - * Initialize jpeg and zlib too, for use by the CODEC's we register - * with the base TIFF library in this package. - */ - - if (Jpegtcl_InitStubs(interp, JPEGTCL_VERSION, 0) == NULL) { - return TCL_ERROR; - } - - if (!initialized) { - initialized = 1; - if ( - TIFFRegisterCODEC && TIFFError && TIFFPredictorInit && - _TIFFMergeFieldInfo && TIFFFlushData1 && _TIFFNoPostDecode && - TIFFTileRowSize && TIFFScanlineSize && _TIFFsetByteArray && - TIFFVSetField && TIFFSwabArrayOfShort - ) { - - if (Zlibtcl_InitStubs(interp, ZLIBTCL_VERSION, 0) == NULL) { - return TCL_ERROR; - } - TIFFRegisterCODEC (COMPRESSION_DEFLATE, "Deflate", TkimgTIFFInitZip); - TIFFRegisterCODEC (COMPRESSION_ADOBE_DEFLATE, "AdobeDeflate", TkimgTIFFInitZip); -- ++ TIFFSetErrorHandler(_TIFFerr); ++ TIFFSetWarningHandler(_TIFFwarn); + - if (Jpegtcl_InitStubs(interp, JPEGTCL_VERSION, 0) == NULL) { - return TCL_ERROR; - } - TIFFRegisterCODEC (COMPRESSION_JPEG, "JPEG", TkimgTIFFInitJpeg); - TIFFRegisterCODEC (COMPRESSION_PIXARLOG, "PixarLog", TkimgTIFFInitPixar); - } - } return TCL_OK; } -@@ -451,8 +415,6 @@ ObjRead(interp, data, format, imageHandl +@@ -451,9 +411,6 @@ { TIFF *tif; - char *tempFileName = NULL, tempFileNameBuffer[256]; -- int count, result; -+ int result; +- size_t count; + int result; tkimg_MFile handle; - char buffer[1024]; char *dataPtr = NULL; -@@ -461,35 +423,13 @@ ObjRead(interp, data, format, imageHandl +@@ -462,35 +419,13 @@ } - if (TIFFClientOpen) { - if (handle.state != IMG_STRING) { - dataPtr = ckalloc((handle.length*3)/4 + 2); -- handle.length = tkimg_Read(&handle, dataPtr, handle.length); +- handle.length = tkimg_Read2(&handle, dataPtr, handle.length); - handle.data = dataPtr; - } - handle.state = 0; - tif = TIFFClientOpen("inline data", "r", (thandle_t) &handle, - readString, writeString, seekString, closeDummy, - sizeString, mapDummy, unMapDummy); - } else { - Tcl_Channel outchan; - tempFileName = tmpnam(tempFileNameBuffer); - outchan = tkimg_OpenFileChannel(interp, tempFileName, 0644); - if (!outchan) { - return TCL_ERROR; - } - -- count = tkimg_Read(&handle, buffer, 1024); +- count = (size_t)tkimg_Read2(&handle, buffer, 1024); - while (count == 1024) { - Tcl_Write(outchan, buffer, count); -- count = tkimg_Read(&handle, buffer, 1024); +- count = (size_t)tkimg_Read2(&handle, buffer, 1024); - } -- if (count>0){ +- if (count + 1 > 1){ - Tcl_Write(outchan, buffer, count); - } - if (Tcl_Close(interp, outchan) == TCL_ERROR) { - return TCL_ERROR; - } - tif = TIFFOpen(tempFileName, "r"); - } + if (handle.state != IMG_STRING) { -+ dataPtr = ckalloc((handle.length*3)/4 + 2); -+ handle.length = tkimg_Read(&handle, dataPtr, handle.length); -+ handle.data = dataPtr; ++ dataPtr = ckalloc((handle.length*3)/4 + 2); ++ handle.length = tkimg_Read(&handle, dataPtr, handle.length); ++ handle.data = dataPtr; + } + handle.state = 0; + tif = TIFFClientOpen("inline data", "r", (thandle_t) &handle, -+ readString, writeString, seekString, closeDummy, -+ sizeString, mapDummy, unMapDummy); ++ readString, writeString, seekString, closeDummy, ++ sizeString, mapDummy, unMapDummy); if (tif != NULL) { -@@ -499,7 +439,4 @@ ObjRead(interp, data, format, imageHandl +@@ -500,7 +435,4 @@ result = TCL_ERROR; } - if (tempFileName) { - unlink(tempFileName); - } if (result == TCL_ERROR) { Tcl_AppendResult(interp, errorMessage, (char *) NULL); -@@ -526,37 +463,12 @@ ChnRead(interp, chan, fileName, format, +@@ -527,38 +459,12 @@ { TIFF *tif; - char *tempFileName = NULL, tempFileNameBuffer[256]; -- int count, result; +- size_t count; +- int result; - char buffer[1024]; - - if (TIFFClientOpen) { - tkimg_MFile handle; - handle.data = (char *) chan; - handle.state = IMG_CHAN; - tif = TIFFClientOpen(fileName, "r", (thandle_t) &handle, - readMFile, writeDummy, seekMFile, closeDummy, - sizeMFile, mapDummy, unMapDummy); - } else { - Tcl_Channel outchan; - tempFileName = tmpnam(tempFileNameBuffer); - outchan = tkimg_OpenFileChannel(interp, tempFileName, 0644); - if (!outchan) { - return TCL_ERROR; - } -- -- count = Tcl_Read(chan, buffer, 1024); ++ int result; ++ tkimg_MFile handle; + +- count = (size_t)Tcl_Read(chan, buffer, 1024); - while (count == 1024) { - Tcl_Write(outchan, buffer, count); -- count = Tcl_Read(chan, buffer, 1024); +- count = (size_t)Tcl_Read(chan, buffer, 1024); - } -- if (count>0){ +- if (count + 1 > 1){ - Tcl_Write(outchan, buffer, count); - } - if (Tcl_Close(interp, outchan) == TCL_ERROR) { - return TCL_ERROR; - } -+ int result; -+ tkimg_MFile handle; - +- - tif = TIFFOpen(tempFileName, "r"); - } + handle.data = (char *) chan; + handle.state = IMG_CHAN; + tif = TIFFClientOpen(fileName, "r", (thandle_t) &handle, -+ readMFile, writeDummy, seekMFile, closeDummy, -+ sizeMFile, mapDummy, unMapDummy); ++ readMFile, writeDummy, seekMFile, closeDummy, ++ sizeMFile, mapDummy, unMapDummy); if (tif) { result = CommonRead(interp, tif, format, imageHandle, -@@ -565,7 +477,4 @@ ChnRead(interp, chan, fileName, format, +@@ -567,7 +473,4 @@ result = TCL_ERROR; } - if (tempFileName) { - unlink(tempFileName); - } if (result == TCL_ERROR) { Tcl_AppendResult(interp, errorMessage, (char *) NULL); -@@ -635,5 +544,5 @@ CommonRead(interp, tif, format, imageHan +@@ -637,5 +540,5 @@ npixels = w * h; - raster = (uint32*) TkimgTIFFmalloc(npixels * sizeof (uint32)); + raster = (uint32*) _TIFFmalloc(npixels * sizeof (uint32)); block.width = w; block.height = h; -@@ -646,5 +555,5 @@ CommonRead(interp, tif, format, imageHan +@@ -648,5 +551,5 @@ if (!TIFFReadRGBAImage(tif, w, h, raster, 0) || errorMessage) { - TkimgTIFFfree (raster); + _TIFFfree (raster); if (errorMessage) { Tcl_AppendResult(interp, errorMessage, (char *) NULL); -@@ -663,5 +572,5 @@ CommonRead(interp, tif, format, imageHan +@@ -665,5 +568,5 @@ } - TkimgTIFFfree (raster); + _TIFFfree (raster); TIFFClose(tif); return result; -@@ -674,7 +583,6 @@ static int StringWrite( +@@ -676,7 +579,6 @@ ) { TIFF *tif; - int result, comp; + int result, comp, length; tkimg_MFile handle; - char *tempFileName = NULL, tempFileNameBuffer[256]; Tcl_DString dstring; const char *mode; -@@ -686,14 +594,9 @@ static int StringWrite( +@@ -688,14 +590,9 @@ } - if (TIFFClientOpen) { - Tcl_DStringInit(&dstring); - tkimg_WriteInit(&dstring, &handle); - tif = TIFFClientOpen("inline data", mode, (thandle_t) &handle, - readString, writeString, seekString, closeDummy, - sizeString, mapDummy, unMapDummy); - } else { - tempFileName = tmpnam(tempFileNameBuffer); - tif = TIFFOpen(tempFileName,mode); - } + Tcl_DStringInit(&dstring); + tkimg_WriteInit(&dstring, &handle); + tif = TIFFClientOpen("inline data", mode, (thandle_t) &handle, + readString, writeString, seekString, closeDummy, + sizeString, mapDummy, unMapDummy); result = CommonWrite(interp, tif, comp, blockPtr); -@@ -701,7 +604,4 @@ static int StringWrite( +@@ -703,7 +600,4 @@ if (result != TCL_OK) { - if (tempFileName) { - unlink(tempFileName); - } Tcl_AppendResult(interp, errorMessage, (char *) NULL); ckfree(errorMessage); -@@ -710,29 +610,8 @@ static int StringWrite( +@@ -712,29 +606,8 @@ } - if (tempFileName) { - Tcl_Channel inchan; - char buffer[1024]; - inchan = tkimg_OpenFileChannel(interp, tempFileName, 0644); - if (!inchan) { - return TCL_ERROR; - } - tkimg_WriteInit(&data, &handle); - - result = Tcl_Read(inchan, buffer, 1024); - while ((result == TCL_OK) && !Tcl_Eof(inchan)) { -- tkimg_Write(&handle, buffer, result); +- tkimg_Write2(&handle, buffer, result); - result = Tcl_Read(inchan, buffer, 1024); - } - if (result == TCL_OK) { -- tkimg_Write(&handle, buffer, result); +- tkimg_Write2(&handle, buffer, result); - result = Tcl_Close(interp, inchan); - } - unlink(tempFileName); - } else { - int length = handle.length; - tkimg_WriteInit(&data, &handle); -- tkimg_Write(&handle, Tcl_DStringValue(&dstring), length); +- tkimg_Write2(&handle, Tcl_DStringValue(&dstring), length); - Tcl_DStringFree(&dstring); - } + length = handle.length; + tkimg_WriteInit(&data, &handle); + tkimg_Write(&handle, Tcl_DStringValue(&dstring), length); + Tcl_DStringFree(&dstring); tkimg_Putc(IMG_DONE, &handle); if (result == TCL_OK) { -@@ -954,36 +833,2 @@ CommonWrite(interp, tif, comp, blockPtr) +@@ -956,36 +829,2 @@ return TCL_OK; } - -void -TkimgTIFFfree (data) - tdata_t data; -{ - if (_TIFFfree) { - _TIFFfree(data); - } else { - ckfree((char *) data); - } -} - -tdata_t -TkimgTIFFmalloc(size) - tsize_t size; -{ - if (_TIFFmalloc) { - return _TIFFmalloc(size); - } else { - return ckalloc(size); - } -} - -tdata_t -TkimgTIFFrealloc(data, size) - tdata_t data; - tsize_t size; -{ - if (_TIFFrealloc) { - return _TIFFrealloc(data, size); - } else { - return ckrealloc(data, size); - } -} +--- tests/tiff.test 2016-07-30 10:31:08.000000000 -0400 ++++ tests/tiff.test 2020-01-20 21:44:30.430340000 -0500 +@@ -22,5 +22,5 @@ + source $file.base64 + +- test tiff-1.1 {} -setup { ++ test tiff-1.1 {} -constraints nonPortable -setup { + catch {image delete i} + } -body { +@@ -31,5 +31,5 @@ + } -result $imgdata + +- test tiff-1.2 {} -setup { ++ test tiff-1.2 {} -constraints nonPortable -setup { + catch {image delete i} + } -body { +@@ -40,5 +40,5 @@ + } -result $imgdata + +- test tiff-1.3 {} -setup { ++ test tiff-1.3 {} -constraints nonPortable -setup { + catch {image delete i} + } -body { +@@ -50,5 +50,5 @@ + } -result $imgdata + +- test tiff-1.4 {} -setup { ++ test tiff-1.4 {} -constraints nonPortable -setup { + catch {image delete i} + } -body { Index: head/graphics/libimg/pkg-plist =================================================================== --- head/graphics/libimg/pkg-plist (revision 523699) +++ head/graphics/libimg/pkg-plist (revision 523700) @@ -1,53 +1,54 @@ %%EXAMPLES%%%%EXAMPLESDIR%%/demo.tcl %%EXAMPLES%%%%EXAMPLESDIR%%/tkv.tcl %%EXAMPLES%%%%EXAMPLESDIR%%/msgs/de.msg %%EXAMPLES%%%%EXAMPLESDIR%%/msgs/el.msg %%EXAMPLES%%%%EXAMPLESDIR%%/msgs/en.msg %%EXAMPLES%%%%EXAMPLESDIR%%/msgs/es.msg %%EXAMPLES%%%%EXAMPLESDIR%%/msgs/fr.msg %%EXAMPLES%%%%EXAMPLESDIR%%/msgs/ja.msg %%EXAMPLES%%%%EXAMPLESDIR%%/msgs/nl.msg man/mann/img-bmp.n.gz man/mann/img-dted.n.gz man/mann/img-gif.n.gz man/mann/img-ico.n.gz man/mann/img-jpeg.n.gz man/mann/img-pcx.n.gz man/mann/img-pixmap.n.gz man/mann/img-png.n.gz man/mann/img-ppm.n.gz man/mann/img-ps.n.gz man/mann/img-raw.n.gz man/mann/img-sgi.n.gz man/mann/img-sun.n.gz man/mann/img-tga.n.gz man/mann/img-tiff.n.gz man/mann/img-window.n.gz man/mann/img-xbm.n.gz man/mann/img-xpm.n.gz man/mann/img.n.gz lib/Img/libtkimg%%PORTVERSION%%.so lib/Img/libtkimgbmp%%PORTVERSION%%.so lib/Img/libtkimgdted%%PORTVERSION%%.so +lib/Img/libtkimgflir%%PORTVERSION%%.so lib/Img/libtkimggif%%PORTVERSION%%.so lib/Img/libtkimgico%%PORTVERSION%%.so lib/Img/libtkimgjpeg%%PORTVERSION%%.so lib/Img/libtkimgpcx%%PORTVERSION%%.so lib/Img/libtkimgpixmap%%PORTVERSION%%.so lib/Img/libtkimgpng%%PORTVERSION%%.so lib/Img/libtkimgppm%%PORTVERSION%%.so lib/Img/libtkimgps%%PORTVERSION%%.so lib/Img/libtkimgraw%%PORTVERSION%%.so lib/Img/libtkimgsgi%%PORTVERSION%%.so lib/Img/libtkimgstub%%PORTVERSION%%.a lib/Img/libtkimgsun%%PORTVERSION%%.so lib/Img/libtkimgtga%%PORTVERSION%%.so lib/Img/libtkimgxbm%%PORTVERSION%%.so lib/Img/libtkimgtiff%%PORTVERSION%%.so lib/Img/libtkimgwindow%%PORTVERSION%%.so lib/Img/libtkimgxpm%%PORTVERSION%%.so lib/Img/pkgIndex.tcl lib/Img/tkimgConfig.sh @comment include/tkimg.h @comment include/tkimgDecls.h @comment lib/tkimgConfig.sh