update to 4.0.6, no major changes

This commit is contained in:
naddy 2015-11-04 20:51:36 +00:00
parent 1f5aeae95c
commit 60c359a7bc
9 changed files with 44 additions and 29 deletions

View File

@ -1,10 +1,10 @@
# $OpenBSD: Makefile,v 1.73 2015/07/08 19:36:54 naddy Exp $
# $OpenBSD: Makefile,v 1.74 2015/11/04 20:51:36 naddy Exp $
COMMENT= tools and library routines for working with TIFF images
DISTNAME= tiff-4.0.4
SHARED_LIBS= tiff 39.2 # 7.1
SHARED_LIBS+= tiffxx 40.1 # 7.1
DISTNAME= tiff-4.0.6
SHARED_LIBS= tiff 39.2 # 7.4
SHARED_LIBS+= tiffxx 40.1 # 7.4
CATEGORIES= graphics
MASTER_SITES= http://download.osgeo.org/libtiff/

View File

@ -1,2 +1,2 @@
SHA256 (tiff-4.0.4.tar.gz) = jLHZDJb2HN/AvPA2rMJRydvmMgM02pQceoPP4Vdu+JA=
SIZE (tiff-4.0.4.tar.gz) = 2100766
SHA256 (tiff-4.0.6.tar.gz) = TVelCQe1EOMEmku6DXiIkw/fwWzknxv2k+W2JHNw1ow=
SIZE (tiff-4.0.6.tar.gz) = 2192991

View File

@ -1,12 +1,12 @@
$OpenBSD: patch-Makefile_in,v 1.10 2015/07/08 19:36:54 naddy Exp $
--- Makefile.in.orig Sun Jun 21 21:07:53 2015
+++ Makefile.in Wed Jul 8 21:08:06 2015
@@ -433,7 +433,7 @@ EXTRA_DIST = \
libtiff-4.pc.in
$OpenBSD: patch-Makefile_in,v 1.11 2015/11/04 20:51:36 naddy Exp $
--- Makefile.in.orig Sat Sep 12 21:48:44 2015
+++ Makefile.in Wed Nov 4 17:33:52 2015
@@ -435,7 +435,7 @@ EXTRA_DIST = \
nmake.opt
dist_doc_DATA = $(docfiles)
-SUBDIRS = port libtiff tools build contrib test man html
+SUBDIRS = port libtiff tools build test man html
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libtiff-4.pc
all: all-recursive

View File

@ -1,10 +1,10 @@
$OpenBSD: patch-libtiff_Makefile_in,v 1.15 2015/03/29 17:39:22 naddy Exp $
$OpenBSD: patch-libtiff_Makefile_in,v 1.16 2015/11/04 20:51:36 naddy Exp $
* Avoid picking up an old libtiff in ${LOCALBASE}.
--- libtiff/Makefile.in.orig Mon Jan 26 13:17:48 2015
+++ libtiff/Makefile.in Sun Mar 29 16:57:13 2015
@@ -344,10 +344,10 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
--- libtiff/Makefile.in.orig Sat Sep 12 21:48:44 2015
+++ libtiff/Makefile.in Wed Nov 4 17:33:52 2015
@@ -345,10 +345,10 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LD = @LD@

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-libtiff_tif_codec_c,v 1.5 2015/11/04 20:51:36 naddy Exp $
--- libtiff/tif_codec.c.orig Sat Aug 29 00:16:22 2015
+++ libtiff/tif_codec.c Wed Nov 4 17:37:49 2015
@@ -108,7 +108,8 @@ _notConfigured(TIFF* tif)
const TIFFCodec* c = TIFFFindCODEC(tif->tif_dir.td_compression);
char compression_code[20];
- sprintf(compression_code, "%d",tif->tif_dir.td_compression );
+ snprintf(compression_code, sizeof(compression_code), "%d",
+ tif->tif_dir.td_compression );
TIFFErrorExt(tif->tif_clientdata, tif->tif_name,
"%s compression support is not configured",
c ? c->name : compression_code );

View File

@ -1,10 +1,10 @@
$OpenBSD: patch-man_Makefile_in,v 1.14 2015/07/08 19:36:54 naddy Exp $
$OpenBSD: patch-man_Makefile_in,v 1.15 2015/11/04 20:51:36 naddy Exp $
Replace .3tiff man page suffix with standard .3
--- man/Makefile.in.orig Sun Jun 21 21:07:54 2015
+++ man/Makefile.in Wed Jul 8 21:08:06 2015
@@ -498,7 +498,7 @@ install-man3: $(dist_man3_MANS)
--- man/Makefile.in.orig Sat Sep 12 21:48:45 2015
+++ man/Makefile.in Wed Nov 4 17:33:52 2015
@@ -502,7 +502,7 @@ install-man3: $(dist_man3_MANS)
if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; echo "$$p"; \
done | \

View File

@ -1,10 +1,10 @@
$OpenBSD: patch-test_Makefile_in,v 1.7 2015/07/08 19:36:54 naddy Exp $
$OpenBSD: patch-test_Makefile_in,v 1.8 2015/11/04 20:51:36 naddy Exp $
Avoid picking up an old libtiff in ${LOCALBASE}.
--- test/Makefile.in.orig Sun Jun 21 21:07:54 2015
+++ test/Makefile.in Wed Jul 8 21:08:06 2015
@@ -475,10 +475,10 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
--- test/Makefile.in.orig Sat Sep 12 21:48:45 2015
+++ test/Makefile.in Wed Nov 4 17:33:52 2015
@@ -526,10 +526,10 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LD = @LD@

View File

@ -1,10 +1,10 @@
$OpenBSD: patch-tools_Makefile_in,v 1.10 2015/03/29 17:39:22 naddy Exp $
$OpenBSD: patch-tools_Makefile_in,v 1.11 2015/11/04 20:51:36 naddy Exp $
Avoid picking up an old libtiff in ${LOCALBASE}.
--- tools/Makefile.in.orig Mon Jan 26 13:17:48 2015
+++ tools/Makefile.in Sun Mar 29 16:57:13 2015
@@ -352,10 +352,10 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
--- tools/Makefile.in.orig Sat Sep 12 21:48:45 2015
+++ tools/Makefile.in Wed Nov 4 17:33:52 2015
@@ -353,10 +353,10 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LD = @LD@

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.22 2015/07/08 19:36:54 naddy Exp $
@comment $OpenBSD: PLIST,v 1.23 2015/11/04 20:51:36 naddy Exp $
@bin bin/bmp2tiff
@bin bin/fax2ps
@bin bin/fax2tiff
@ -256,3 +256,5 @@ share/doc/tiff/v4.0.2.html
share/doc/tiff/v4.0.3.html
share/doc/tiff/v4.0.4.html
share/doc/tiff/v4.0.4beta.html
share/doc/tiff/v4.0.5.html
share/doc/tiff/v4.0.6.html