summaryrefslogtreecommitdiff
path: root/graphics/tiff
diff options
context:
space:
mode:
authorgdt <gdt@pkgsrc.org>2021-04-20 13:12:54 +0000
committergdt <gdt@pkgsrc.org>2021-04-20 13:12:54 +0000
commitae33e47a01cf18c7eb1d8e01b35b3b9c3e7a29f1 (patch)
treeb69d4649738594463c66bff265826a7f6169b4d9 /graphics/tiff
parent184874e6b403b82d5142e2c8ffb092df7ec7ac88 (diff)
downloadpkgsrc-ae33e47a01cf18c7eb1d8e01b35b3b9c3e7a29f1.tar.gz
graphics/tiff: Update to 4.3.0
Upstream changes: tiff requires C99 and uses C99 types. The previous tiff types are deprecated. new codec for LERC bugfixes pruning of things no longer in use https://libtiff.gitlab.io/libtiff/v4.3.0.html
Diffstat (limited to 'graphics/tiff')
-rw-r--r--graphics/tiff/Makefile6
-rw-r--r--graphics/tiff/PLIST3
-rw-r--r--graphics/tiff/distinfo11
-rw-r--r--graphics/tiff/patches/patch-configure30
4 files changed, 10 insertions, 40 deletions
diff --git a/graphics/tiff/Makefile b/graphics/tiff/Makefile
index 181f70844b3..2bbf0d8e99e 100644
--- a/graphics/tiff/Makefile
+++ b/graphics/tiff/Makefile
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.148 2021/01/04 18:05:03 wiz Exp $
+# $NetBSD: Makefile,v 1.149 2021/04/20 13:12:54 gdt Exp $
-DISTNAME= tiff-4.2.0
+DISTNAME= tiff-4.3.0
CATEGORIES= graphics
MASTER_SITES= https://download.osgeo.org/libtiff/
-MAINTAINER= pkgsrc-users@NetBSD.org
+MAINTAINER= gdt@NetBSD.org
HOMEPAGE= http://simplesystems.org/libtiff/
COMMENT= Library and tools for reading and writing TIFF data files
LICENSE= mit
diff --git a/graphics/tiff/PLIST b/graphics/tiff/PLIST
index 8c0a9406846..989e86200e3 100644
--- a/graphics/tiff/PLIST
+++ b/graphics/tiff/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.28 2021/01/04 18:05:03 wiz Exp $
+@comment $NetBSD: PLIST,v 1.29 2021/04/20 13:12:54 gdt Exp $
bin/fax2ps
bin/fax2tiff
bin/pal2rgb
@@ -236,4 +236,5 @@ share/doc/tiff/html/v4.0.7.html
share/doc/tiff/html/v4.0.8.html
share/doc/tiff/html/v4.0.9.html
share/doc/tiff/html/v4.1.0.html
+share/doc/tiff/html/v4.2.0.html
share/doc/tiff/html/v${PKGVERSION}.html
diff --git a/graphics/tiff/distinfo b/graphics/tiff/distinfo
index 090f8491731..adcef662022 100644
--- a/graphics/tiff/distinfo
+++ b/graphics/tiff/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.96 2021/01/04 18:05:03 wiz Exp $
+$NetBSD: distinfo,v 1.97 2021/04/20 13:12:54 gdt Exp $
-SHA1 (tiff-4.2.0.tar.gz) = 400ff865beb34499633dd1095fe438995e6da707
-RMD160 (tiff-4.2.0.tar.gz) = ec0786653efa76fcd30c9c7274c1c246719821de
-SHA512 (tiff-4.2.0.tar.gz) = d7d42e6e6dbda9604c638f28e6cfa4705191a4e8ea276d18031d50dbab0931ac91141e57a2cf294124487f1a2e6dfcb9be62431c1b69de5acf4d0e632f3322e5
-Size (tiff-4.2.0.tar.gz) = 2809373 bytes
-SHA1 (patch-configure) = a0032133f06b6ac92bbf52349fabe83f74ea14a6
+SHA1 (tiff-4.3.0.tar.gz) = c03f6cb05b64ff496b3a5c733a0af6296aead051
+RMD160 (tiff-4.3.0.tar.gz) = 254477d12e79309cb82615eaad9946cc627a58f3
+SHA512 (tiff-4.3.0.tar.gz) = e04a4a6c542e58a174c1e9516af3908acf1d3d3e1096648c5514f4963f73e7af27387a76b0fbabe43cf867a18874088f963796a7cd6e45deb998692e3e235493
+Size (tiff-4.3.0.tar.gz) = 2808254 bytes
diff --git a/graphics/tiff/patches/patch-configure b/graphics/tiff/patches/patch-configure
deleted file mode 100644
index dd12a0ec6d4..00000000000
--- a/graphics/tiff/patches/patch-configure
+++ /dev/null
@@ -1,30 +0,0 @@
-$NetBSD: patch-configure,v 1.4 2015/08/27 19:16:53 adam Exp $
-
-To avoid conflict with Security.framework on OS X, prefer unsigned long long as 64-bit type.
-
---- configure.orig 2015-08-24 22:13:55.000000000 +0000
-+++ configure
-@@ -17750,11 +17750,7 @@ _ACEOF
- $as_echo_n "checking for unsigned 64-bit type... " >&6; }
- UINT64_T='none'
- UINT64_FORMAT='none'
--if test $ac_cv_sizeof_unsigned_long -eq 8
--then
-- UINT64_T='unsigned long'
-- UINT64_FORMAT='"%lu"'
--elif test $ac_cv_sizeof_unsigned_long_long -eq 8
-+if test $ac_cv_sizeof_unsigned_long_long -eq 8
- then
- UINT64_T='unsigned long long'
- case "${host_os}" in
-@@ -17766,6 +17762,10 @@ then
- UINT64_FORMAT='"%llu"'
- ;;
- esac
-+elif test $ac_cv_sizeof_unsigned_long -eq 8
-+then
-+ UINT64_T='unsigned long'
-+ UINT64_FORMAT='"%lu"'
- fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $UINT64_T" >&5
- $as_echo "$UINT64_T" >&6; }