Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0272A84CF9 for ; Sun, 17 Dec 2023 16:46:19 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id nZOo60C7bE8O for ; Sun, 17 Dec 2023 16:46:18 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 4ACA484CF3 for ; Sun, 17 Dec 2023 16:46:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 480CAFA42; Sun, 17 Dec 2023 16:46:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1702831578189040" MIME-Version: 1.0 Date: Sun, 17 Dec 2023 16:46:18 +0000 From: "Dr. Thomas Orgis" Subject: CVS commit: pkgsrc/graphics/tiff To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: thor@netbsd.org X-Mailer: log_accum Message-Id: <20231217164618.480CAFA42@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1702831578189040 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: thor Date: Sun Dec 17 16:46:18 UTC 2023 Modified Files: pkgsrc/graphics/tiff: Makefile Log Message: graphics/libtiff: use pkg-config to properly detect deps, remove --without-x The --without-x is defunct. The configure script wants to use pkg-config, it should be able to. To generate a diff of this commit: cvs rdiff -u -r1.162 -r1.163 pkgsrc/graphics/tiff/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1702831578189040 Content-Disposition: inline Content-Length: 1227 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/tiff/Makefile diff -u pkgsrc/graphics/tiff/Makefile:1.162 pkgsrc/graphics/tiff/Makefile:1.163 --- pkgsrc/graphics/tiff/Makefile:1.162 Mon Oct 16 15:54:35 2023 +++ pkgsrc/graphics/tiff/Makefile Sun Dec 17 16:46:18 2023 @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.162 2023/10/16 15:54:35 wiz Exp $ +# $NetBSD: Makefile,v 1.163 2023/12/17 16:46:18 thor Exp $ -# Please do not update to 4.6.0 before the branch; it withdraws a lot! VERSION_BASE= 4.6.0 # Accomodate testing unreleased versions. #VERSION_RC= rc3 +PKGREVISION= 1 DISTNAME= tiff-${VERSION_BASE}${VERSION_RC} CATEGORIES= graphics MASTER_SITES= https://download.osgeo.org/libtiff/ @@ -18,14 +18,13 @@ WRKSRC= ${WRKDIR}/tiff-${VERSION_BASE} EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} USE_LANGUAGES= c99 c++ -USE_TOOLS= gmake # Not documented by upstream +USE_TOOLS= gmake pkg-config USE_LIBTOOL= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+= --enable-rpath CONFIGURE_ARGS+= --enable-cxx CONFIGURE_ARGS+= --with-docdir=${PREFIX}/share/doc/tiff -CONFIGURE_ARGS+= --without-x # just in case detects gl to build tiffgt CONFIGURE_ARGS+= --disable-sphinx CONFIGURE_ARGS+= --disable-webp CONFIGURE_ARGS+= --disable-zstd --_----------=_1702831578189040--