libtiff4: initial commit, version 3.9.7

This commit is contained in:
Tim Biermann 2022-12-22 12:28:35 +00:00
parent ba9d94dfea
commit 37b2329abf
Signed by: tb
GPG Key ID: 42F8B4E30B673606
4 changed files with 47 additions and 0 deletions

6
libtiff4/.footprint Normal file
View File

@ -0,0 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libtiff.so.4 -> libtiff.so.4.3.7
-rwxr-xr-x root/root usr/lib/libtiff.so.4.3.7
lrwxrwxrwx root/root usr/lib/libtiffxx.so.4 -> libtiffxx.so.4.3.7
-rwxr-xr-x root/root usr/lib/libtiffxx.so.4.3.7

6
libtiff4/.signature Normal file
View File

@ -0,0 +1,6 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF33rh1h21PbhAEyayNxkgE32pHwIFh628MU6fEN9wTpLkUGLhIp5fzo4qOd2UH0gpoRCxHtw3E/pussv3Ox7Kigw=
SHA256 (Pkgfile) = b48fb4a6eda11d837de60cac0d130129c605c35ea2ff04fce9bda7dfbc446583
SHA256 (.footprint) = 8bea3502b3830162df48e6920a78a08b723385b65ca3ab0f27b5dfa8dacc8458
SHA256 (tiff-3.9.7.tar.gz) = f5d64dd4ce61c55f5e9f6dc3920fbe5a41e02c2e607da7117a35eb5c320cef6a
SHA256 (libtiff4-soname.patch) = e6246631f6d943715b612b4ddd2279c946ff90c9e8d755fa639e8051a6eb3488

20
libtiff4/Pkgfile Normal file
View File

@ -0,0 +1,20 @@
# Description: Library for manipulation of TIFF (Tag Image File Format) images
# URL: http://www.simplesystems.org/libtiff/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: libjpeg-turbo zlib
name=libtiff4
version=3.9.7
release=1
source=(http://download.osgeo.org/libtiff/tiff-$version.tar.gz
libtiff4-soname.patch)
build() {
cd tiff-$version
patch -Np1 -i $SRC/libtiff4-soname.patch
./autogen.sh
./configure --prefix=/usr
make
make DESTDIR=$PKG -C libtiff install
rm -rf $PKG/usr/{bin,include,lib/libtiff{,xx}.{la,a,so},share}
}

View File

@ -0,0 +1,15 @@
diff --git a/configure.ac b/configure.ac
index e7cf8041..fb869708 100644
--- a/configure.ac
+++ b/configure.ac
@@ -39,8 +39,8 @@ AM_MAINTAINER_MODE
dnl Versioning.
dnl Don't fill the ALPHA_VERSION field, if not applicable.
-LIBTIFF_MAJOR_VERSION=3
-LIBTIFF_MINOR_VERSION=9
+LIBTIFF_MAJOR_VERSION=4
+LIBTIFF_MINOR_VERSION=3
LIBTIFF_MICRO_VERSION=7
LIBTIFF_ALPHA_VERSION=
LIBTIFF_VERSION=$LIBTIFF_MAJOR_VERSION.$LIBTIFF_MINOR_VERSION.$LIBTIFF_MICRO_VERSION$LIBTIFF_ALPHA_VERSION