From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 05 Nov 2021 08:56:12 +0100 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1miu56-00087D-S6 for lore@lore.pengutronix.de; Fri, 05 Nov 2021 08:56:12 +0100 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1miu56-0003XO-IM; Fri, 05 Nov 2021 08:56:12 +0100 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1miu4K-0003GP-3t; Fri, 05 Nov 2021 08:55:24 +0100 Received: from [2a0a:edc0:0:1101:1d::39] (helo=dude03.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1miu4I-0006ht-5p; Fri, 05 Nov 2021 08:55:22 +0100 Received: from mol by dude03.red.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1miu4H-00D01m-Uj; Fri, 05 Nov 2021 08:55:21 +0100 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Fri, 5 Nov 2021 08:55:21 +0100 Message-Id: <20211105075521.3097279-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20211022104708.1567881-1-matthias.fend@emfend.at> References: <20211022104708.1567881-1-matthias.fend@emfend.at> MIME-Version: 1.0 Subject: Re: [ptxdist] [APPLIED] libtiff: new package X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Matthias Fend Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as 33db942aefd9650339f9a119fca569bc81003ba7. Michael [sent from post-receive hook] On Fri, 05 Nov 2021 08:55:21 +0100, Matthias Fend wrote: > This package contains a library, libtiff, for reading and writing images > in the Tag Image File Format (TIFF), as well as a small collection of > tools for simple manipulation of TIFF images. > > Signed-off-by: Matthias Fend > Message-Id: <20211022104708.1567881-1-matthias.fend@emfend.at> > Signed-off-by: Michael Olbrich > > diff --git a/rules/libtiff.in b/rules/libtiff.in > new file mode 100644 > index 000000000000..a7f9ea5794da > --- /dev/null > +++ b/rules/libtiff.in > @@ -0,0 +1,30 @@ > +## SECTION=multimedia_libs > + > +config LIBTIFF > + bool > + select ZLIB if LIBTIFF_ZLIB > + select LIBJPEG if LIBTIFF_JPEG > + select LIBWEBP if LIBTIFF_WEBP > + prompt "libtiff" > + help > + TIFF library > + > +if LIBTIFF > + > +config LIBTIFF_TOOLS > + bool > + prompt "install tools" > + > +config LIBTIFF_ZLIB > + bool > + prompt "support ZLIB compression" > + > +config LIBTIFF_JPEG > + bool > + prompt "support JPEG compression" > + > +config LIBTIFF_WEBP > + bool > + prompt "support WEBP compression" > + > +endif > diff --git a/rules/libtiff.make b/rules/libtiff.make > new file mode 100644 > index 000000000000..13199e57a64d > --- /dev/null > +++ b/rules/libtiff.make > @@ -0,0 +1,112 @@ > +# -*-makefile-*- > +# > +# Copyright (C) 2021 by Matthias Fend > +# > +# For further information about the PTXdist project and license conditions > +# see the README file. > +# > + > +# > +# We provide this package > +# > +PACKAGES-$(PTXCONF_LIBTIFF) += libtiff > + > +# > +# Paths and names > +# > +LIBTIFF_VERSION := 4.3.0 > +LIBTIFF_MD5 := 0a2e4744d1426a8fc8211c0cdbc3a1b3 > +LIBTIFF := tiff-$(LIBTIFF_VERSION) > +LIBTIFF_SUFFIX := tar.gz > +LIBTIFF_URL := http://download.osgeo.org/libtiff/$(LIBTIFF).$(LIBTIFF_SUFFIX) > +LIBTIFF_SOURCE := $(SRCDIR)/$(LIBTIFF).$(LIBTIFF_SUFFIX) > +LIBTIFF_DIR := $(BUILDDIR)/$(LIBTIFF) > +LIBTIFF_LICENSE := libtiff > +LIBTIFF_LICENSE_FILES := file://COPYRIGHT;md5=34da3db46fab7501992f9615d7e158cf > + > +# ---------------------------------------------------------------------------- > +# Prepare > +# ---------------------------------------------------------------------------- > + > +# > +# autoconf > +# > +LIBTIFF_CONF_TOOL := autoconf > + > +LIBTIFF_CONF_OPT := \ > + $(CROSS_AUTOCONF_USR) \ > + --enable-option-checking \ > + --disable-silent-rules \ > + --disable-maintainer-mode \ > + --enable-dependency-tracking \ > + --disable-ld-version-script \ > + --enable-libtool-lock \ > + --disable-rpath \ > + $(GLOBAL_LARGE_FILE_OPTION) \ > + --enable-ccitt \ > + --enable-packbits \ > + --enable-lzw \ > + --enable-thunder \ > + --enable-next \ > + --enable-logluv \ > + --enable-mdi \ > + --$(call ptx/endis, PTXCONF_LIBTIFF_ZLIB)-zlib \ > + --disable-libdeflate \ > + --$(call ptx/endis, PTXCONF_LIBTIFF_ZLIB)-pixarlog \ > + --$(call ptx/endis, PTXCONF_LIBTIFF_JPEG)-jpeg \ > + --$(call ptx/endis, PTXCONF_LIBTIFF_JPEG)-old-jpeg \ > + --disable-jbig \ > + --disable-lerc \ > + --disable-lzma \ > + --disable-zstd \ > + --$(call ptx/endis, PTXCONF_LIBTIFF_WEBP)-webp \ > + --disable-jpeg12 \ > + --disable-cxx \ > + --disable-win32-io \ > + --enable-strip-chopping \ > + --disable-defer-strile-load \ > + --disable-chunky-strip-read \ > + --enable-extrasample-as-alpha \ > + --enable-check-ycbcr-subsampling > + > +# ---------------------------------------------------------------------------- > +# Target-Install > +# ---------------------------------------------------------------------------- > + > +$(STATEDIR)/libtiff.targetinstall: > + @$(call targetinfo) > + > + @$(call install_init, libtiff) > + @$(call install_fixup, libtiff, PRIORITY, optional) > + @$(call install_fixup, libtiff, SECTION, base) > + @$(call install_fixup, libtiff, AUTHOR, "Matthias Fend ") > + @$(call install_fixup, libtiff, DESCRIPTION, missing) > + > + @$(call install_lib, libtiff, 0, 0, 0644, libtiff) > + > +#ifdef PTXCONF_LIBTIFF_TOOLS > + @$(call install_copy, libtiff, 0, 0, 0755, -, /usr/bin/fax2ps) > + @$(call install_copy, libtiff, 0, 0, 0755, -, /usr/bin/fax2tiff) > + @$(call install_copy, libtiff, 0, 0, 0755, -, /usr/bin/pal2rgb) > + @$(call install_copy, libtiff, 0, 0, 0755, -, /usr/bin/ppm2tiff) > + @$(call install_copy, libtiff, 0, 0, 0755, -, /usr/bin/raw2tiff) > + @$(call install_copy, libtiff, 0, 0, 0755, -, /usr/bin/tiff2bw) > + @$(call install_copy, libtiff, 0, 0, 0755, -, /usr/bin/tiff2pdf) > + @$(call install_copy, libtiff, 0, 0, 0755, -, /usr/bin/tiff2ps) > + @$(call install_copy, libtiff, 0, 0, 0755, -, /usr/bin/tiff2rgba) > + @$(call install_copy, libtiff, 0, 0, 0755, -, /usr/bin/tiffcmp) > + @$(call install_copy, libtiff, 0, 0, 0755, -, /usr/bin/tiffcp) > + @$(call install_copy, libtiff, 0, 0, 0755, -, /usr/bin/tiffcrop) > + @$(call install_copy, libtiff, 0, 0, 0755, -, /usr/bin/tiffdither) > + @$(call install_copy, libtiff, 0, 0, 0755, -, /usr/bin/tiffdump) > + @$(call install_copy, libtiff, 0, 0, 0755, -, /usr/bin/tiffinfo) > + @$(call install_copy, libtiff, 0, 0, 0755, -, /usr/bin/tiffmedian) > + @$(call install_copy, libtiff, 0, 0, 0755, -, /usr/bin/tiffset) > + @$(call install_copy, libtiff, 0, 0, 0755, -, /usr/bin/tiffsplit) > +#endif > + > + @$(call install_finish, libtiff) > + > + @$(call touch) > + > +# vim: syntax=make _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de