Update to 3.7.3; from Bernd Ahlers <b.ahlers@ba-net.org>.

Major changes:
* Replace runtime endianess check with the compile time one.
* Added support for the new predictor type (floating point predictor),
  defined at the TIFF Technical Note 3.
* Added Support for custom tags, passed by value. Added support for
  all DNG tags.
This commit is contained in:
naddy 2005-07-17 20:54:36 +00:00
parent a10513c630
commit 520b48f4f7
11 changed files with 41 additions and 56 deletions

View File

@ -1,12 +1,12 @@
# $OpenBSD: Makefile,v 1.37 2005/06/19 12:19:30 naddy Exp $
# $OpenBSD: Makefile,v 1.38 2005/07/17 20:54:36 naddy Exp $
COMMENT= "tools and library routines for working with TIFF images"
DISTNAME= tiff-3.7.2
DISTNAME= tiff-3.7.3
CATEGORIES= graphics
MASTER_SITES= ftp://ftp.remotesensing.org/pub/libtiff/ \
http://dl1.maptools.org/dl/libtiff/
ftp://ftp.remotesensing.org/pub/libtiff/old/
HOMEPAGE= http://www.remotesensing.org/libtiff/

View File

@ -1,4 +1,4 @@
MD5 (tiff-3.7.2.tar.gz) = 9d7123bd0dbde2a3853fb758346adb78
RMD160 (tiff-3.7.2.tar.gz) = fb156e17f55b1d565adbc5247f01d836d5f25824
SHA1 (tiff-3.7.2.tar.gz) = 0eb69e88bf6c430160ad2897cd0ae637d507ed66
SIZE (tiff-3.7.2.tar.gz) = 1260598
MD5 (tiff-3.7.3.tar.gz) = 8a4511793f4b20b91ddee0e53bc08dea
RMD160 (tiff-3.7.3.tar.gz) = 9d50199ddf1fed8ce1b7ac4986a317f39bb15ed9
SHA1 (tiff-3.7.3.tar.gz) = 8e55ade017a21a1f701d7eaa75d700cd159e5d7a
SIZE (tiff-3.7.3.tar.gz) = 1272719

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-Makefile_in,v 1.1 2005/06/18 21:24:40 naddy Exp $
--- Makefile.in.orig Wed Mar 9 02:49:04 2005
+++ Makefile.in Wed May 25 18:52:49 2005
@@ -253,8 +253,8 @@ EXTRA_DIST = \
$OpenBSD: patch-Makefile_in,v 1.2 2005/07/17 20:54:36 naddy Exp $
--- Makefile.in.orig Tue Jul 5 18:37:45 2005
+++ Makefile.in Wed Jul 13 18:52:48 2005
@@ -257,8 +257,8 @@ EXTRA_DIST = \
autogen.sh \
nmake.opt

View File

@ -1,16 +0,0 @@
$OpenBSD: patch-configure,v 1.7 2005/06/18 21:24:40 naddy Exp $
--- configure.orig Tue May 24 22:13:35 2005
+++ configure Tue May 24 22:13:55 2005
@@ -3310,9 +3310,9 @@ fi
-LIBTIFF_MAJOR_VERSION=3
-LIBTIFF_MINOR_VERSION=7
-LIBTIFF_MICRO_VERSION=2
+LIBTIFF_MAJOR_VERSION=37
+LIBTIFF_MINOR_VERSION=2
+LIBTIFF_MICRO_VERSION=0
LIBTIFF_ALPHA_VERSION=
LIBTIFF_VERSION=$LIBTIFF_MAJOR_VERSION.$LIBTIFF_MINOR_VERSION.$LIBTIFF_MICRO_VERSION$LIBTIFF_ALPHA_VERSION
LIBTIFF_RELEASE_DATE=`date +"%Y%m%d"`

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-html_Makefile_in,v 1.1 2005/06/18 21:24:40 naddy Exp $
--- html/Makefile.in.orig Wed May 25 18:33:07 2005
+++ html/Makefile.in Wed May 25 18:33:53 2005
@@ -225,7 +225,7 @@ target_alias = @target_alias@
$OpenBSD: patch-html_Makefile_in,v 1.2 2005/07/17 20:54:36 naddy Exp $
--- html/Makefile.in.orig Tue Jul 5 18:38:04 2005
+++ html/Makefile.in Wed Jul 13 18:52:48 2005
@@ -229,7 +229,7 @@ target_alias = @target_alias@
target_cpu = @target_cpu@
target_os = @target_os@
target_vendor = @target_vendor@

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-html_images_Makefile_in,v 1.1 2005/06/18 21:24:40 naddy Exp $
--- html/images/Makefile.in.orig Wed May 25 18:33:19 2005
+++ html/images/Makefile.in Wed May 25 18:34:10 2005
@@ -214,7 +214,7 @@ target_alias = @target_alias@
$OpenBSD: patch-html_images_Makefile_in,v 1.2 2005/07/17 20:54:36 naddy Exp $
--- html/images/Makefile.in.orig Tue Jul 5 18:38:04 2005
+++ html/images/Makefile.in Wed Jul 13 18:52:48 2005
@@ -218,7 +218,7 @@ target_alias = @target_alias@
target_cpu = @target_cpu@
target_os = @target_os@
target_vendor = @target_vendor@

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-html_man_Makefile_in,v 1.1 2005/06/18 21:24:40 naddy Exp $
--- html/man/Makefile.in.orig Wed May 25 18:33:12 2005
+++ html/man/Makefile.in Wed May 25 18:34:03 2005
@@ -214,7 +214,7 @@ target_alias = @target_alias@
$OpenBSD: patch-html_man_Makefile_in,v 1.2 2005/07/17 20:54:36 naddy Exp $
--- html/man/Makefile.in.orig Tue Jul 5 18:38:04 2005
+++ html/man/Makefile.in Wed Jul 13 18:52:48 2005
@@ -218,7 +218,7 @@ target_alias = @target_alias@
target_cpu = @target_cpu@
target_os = @target_os@
target_vendor = @target_vendor@

View File

@ -1,9 +1,9 @@
$OpenBSD: patch-libtiff_Makefile_in,v 1.6 2005/06/18 21:24:40 naddy Exp $
--- libtiff/Makefile.in.orig Tue May 24 16:38:41 2005
+++ libtiff/Makefile.in Tue May 24 16:38:56 2005
@@ -188,7 +188,7 @@ INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
$OpenBSD: patch-libtiff_Makefile_in,v 1.7 2005/07/17 20:54:36 naddy Exp $
--- libtiff/Makefile.in.orig Tue Jul 5 18:38:08 2005
+++ libtiff/Makefile.in Wed Jul 13 18:52:48 2005
@@ -193,7 +193,7 @@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_P
LDFLAGS = @LDFLAGS@
LIBDIR = @LIBDIR@
LIBOBJS = @LIBOBJS@
-LIBS = @LIBS@
+LIBS =

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-man_Makefile_in,v 1.5 2005/06/18 21:24:40 naddy Exp $
--- man/Makefile.in.orig Wed May 25 18:25:40 2005
+++ man/Makefile.in Wed May 25 18:26:21 2005
@@ -378,7 +378,6 @@ install-man3: $(man3_MANS) $(man_MANS)
$OpenBSD: patch-man_Makefile_in,v 1.6 2005/07/17 20:54:36 naddy Exp $
--- man/Makefile.in.orig Tue Jul 5 18:38:13 2005
+++ man/Makefile.in Wed Jul 13 18:52:48 2005
@@ -382,7 +382,6 @@ install-man3: $(man3_MANS) $(man_MANS)
else file=$$i; fi; \
ext=`echo $$i | sed -e 's/^.*\\.//'`; \
case "$$ext" in \

View File

@ -1,12 +1,13 @@
$OpenBSD: patch-tools_Makefile_in,v 1.4 2005/06/18 21:24:41 naddy Exp $
--- tools/Makefile.in.orig Tue May 24 16:53:21 2005
+++ tools/Makefile.in Tue May 24 16:53:46 2005
@@ -248,9 +248,9 @@ INSTALL_DATA = @INSTALL_DATA@
$OpenBSD: patch-tools_Makefile_in,v 1.5 2005/07/17 20:54:36 naddy Exp $
--- tools/Makefile.in.orig Tue Jul 5 18:38:16 2005
+++ tools/Makefile.in Tue Jul 12 13:04:52 2005
@@ -248,10 +248,10 @@ INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
-LDFLAGS = @LDFLAGS@
+LDFLAGS =
+LDFLAGS =
LIBDIR = @LIBDIR@
LIBOBJS = @LIBOBJS@
-LIBS = @LIBS@
+LIBS = @LDFLAGS@ @LIBS@

View File

@ -1,3 +1,3 @@
@comment $OpenBSD: PFRAG.shared,v 1.7 2005/06/18 21:24:41 naddy Exp $
@lib lib/libtiff.so.37.2
@lib lib/libtiffxx.so.37.2
@comment $OpenBSD: PFRAG.shared,v 1.8 2005/07/17 20:54:36 naddy Exp $
@lib lib/libtiff.so.37.3
@lib lib/libtiffxx.so.37.3