diff options
author | Tim Biermann <tbier@posteo.de> | 2022-12-22 12:36:06 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2022-12-22 12:36:06 +0000 |
commit | aa9bb6f6255635eefb7c32b931a02a9900fcd10f (patch) | |
tree | 7d7f8cd433ec8a40deb755ae6a572729f0ba4608 | |
parent | cd41c2c5aeef1368e23bd5421fd26c92007156c8 (diff) | |
download | compat-32-aa9bb6f6255635eefb7c32b931a02a9900fcd10f.tar.gz compat-32-aa9bb6f6255635eefb7c32b931a02a9900fcd10f.tar.xz |
libtiff4-32: initial commit, version 3.9.7
-rw-r--r-- | libtiff4-32/.32bit | 0 | ||||
-rw-r--r-- | libtiff4-32/.footprint | 6 | ||||
-rw-r--r-- | libtiff4-32/.signature | 6 | ||||
-rw-r--r-- | libtiff4-32/Pkgfile | 21 | ||||
-rw-r--r-- | libtiff4-32/libtiff4-soname.patch | 15 |
5 files changed, 48 insertions, 0 deletions
diff --git a/libtiff4-32/.32bit b/libtiff4-32/.32bit new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/libtiff4-32/.32bit diff --git a/libtiff4-32/.footprint b/libtiff4-32/.footprint new file mode 100644 index 00000000..aee0afd3 --- /dev/null +++ b/libtiff4-32/.footprint @@ -0,0 +1,6 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/lib32/ +lrwxrwxrwx root/root usr/lib32/libtiff.so.4 -> libtiff.so.4.3.7 +-rwxr-xr-x root/root usr/lib32/libtiff.so.4.3.7 +lrwxrwxrwx root/root usr/lib32/libtiffxx.so.4 -> libtiffxx.so.4.3.7 +-rwxr-xr-x root/root usr/lib32/libtiffxx.so.4.3.7 diff --git a/libtiff4-32/.signature b/libtiff4-32/.signature new file mode 100644 index 00000000..fce22765 --- /dev/null +++ b/libtiff4-32/.signature @@ -0,0 +1,6 @@ +untrusted comment: verify with /etc/ports/compat-32.pub +RWSwxGo/zH7eXT3SPyiIY9VaopyE1MJLKyh0GYYKIYzLJBa9ccBD2EbvWb+kgKtC6kbg6aGPs2qJkLjXTxqvJ5xlSqCJrfgnnAU= +SHA256 (Pkgfile) = f3680bcb871aaf2e47246fc667f981d5d779127976ad4595b95c28f45fc4cbd9 +SHA256 (.footprint) = ced0b4e4c10da7f55272b8ef48b8c4fbea688f93630d607afd46d9cb2d3c0a35 +SHA256 (tiff-3.9.7.tar.gz) = f5d64dd4ce61c55f5e9f6dc3920fbe5a41e02c2e607da7117a35eb5c320cef6a +SHA256 (libtiff4-soname.patch) = e6246631f6d943715b612b4ddd2279c946ff90c9e8d755fa639e8051a6eb3488 diff --git a/libtiff4-32/Pkgfile b/libtiff4-32/Pkgfile new file mode 100644 index 00000000..a59737fa --- /dev/null +++ b/libtiff4-32/Pkgfile @@ -0,0 +1,21 @@ +# Description: Library for manipulation of TIFF (Tag Image File Format) images +# URL: http://www.simplesystems.org/libtiff/ +# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu +# Depends on: libjpeg-turbo-32 zlib-32 + +name=libtiff4-32 +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 \ + --libdir=/usr/lib32 + make + make DESTDIR=$PKG -C libtiff install + rm -rf $PKG/usr/{bin,include,lib32/libtiff{,xx}.{la,a,so},share} +} diff --git a/libtiff4-32/libtiff4-soname.patch b/libtiff4-32/libtiff4-soname.patch new file mode 100644 index 00000000..61c5ff2f --- /dev/null +++ b/libtiff4-32/libtiff4-soname.patch @@ -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 |