Received: by mail.netbsd.org (Postfix, from userid 605) id AA5C684D4E; Thu, 2 Mar 2023 07:52:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DA3C384D40 for ; Thu, 2 Mar 2023 07:52:30 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id cqntLqBKxEKN for ; Thu, 2 Mar 2023 07:52:30 +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 3BA0384CEE for ; Thu, 2 Mar 2023 07:52:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 351CCFA90; Thu, 2 Mar 2023 07:52:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1677743550172790" MIME-Version: 1.0 Date: Thu, 2 Mar 2023 07:52:30 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/x11/libXpm To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20230302075230.351CCFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1677743550172790 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Thu Mar 2 07:52:30 UTC 2023 Modified Files: pkgsrc/x11/libXpm: Makefile Log Message: libXpm: wire down path to uncompress(1) as well To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 pkgsrc/x11/libXpm/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1677743550172790 Content-Disposition: inline Content-Length: 821 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/libXpm/Makefile diff -u pkgsrc/x11/libXpm/Makefile:1.29 pkgsrc/x11/libXpm/Makefile:1.30 --- pkgsrc/x11/libXpm/Makefile:1.29 Fri Feb 10 09:07:22 2023 +++ pkgsrc/x11/libXpm/Makefile Thu Mar 2 07:52:30 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2023/02/10 09:07:22 tnn Exp $ +# $NetBSD: Makefile,v 1.30 2023/03/02 07:52:30 tnn Exp $ DISTNAME= libXpm-3.5.15 CATEGORIES= x11 graphics @@ -30,6 +30,7 @@ CONFIGURE_ENV+= XPM_PATH_GZIP=${TOOLS_G # path of the tool for now. Linux systems usually do not have compress(1) # installed by default and that bombs the configure phase. CONFIGURE_ENV+= XPM_PATH_COMPRESS=/usr/bin/compress +CONFIGURE_ENV+= XPM_PATH_UNCOMPRESS=/usr/bin/uncompress MAKE_ENV+= INTLLIBS=${BUILDLINK_LDADD.gettext:Q} .include "../../mk/bsd.prefs.mk" --_----------=_1677743550172790--