From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E30C815806E for ; Tue, 23 May 2023 19:54:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23C46E091C; Tue, 23 May 2023 19:54:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F3150E091C for ; Tue, 23 May 2023 19:53:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DE419340D8B for ; Tue, 23 May 2023 19:53:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4AC3BA68 for ; Tue, 23 May 2023 19:53:57 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1684871630.2bfa05078a93e0dc559ce15c4af965a7ec0d6f4a.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/fuse/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/fuse/fuse-1.6.0.ebuild X-VCS-Directories: app-emulation/fuse/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 2bfa05078a93e0dc559ce15c4af965a7ec0d6f4a X-VCS-Branch: master Date: Tue, 23 May 2023 19:53:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d1c387e6-c51a-4c66-aa13-ce0472193f5a X-Archives-Hash: ddfdbc5471adf317429a621639badeef commit: 2bfa05078a93e0dc559ce15c4af965a7ec0d6f4a Author: Marek Szuba gentoo org> AuthorDate: Tue May 23 19:51:21 2023 +0000 Commit: Marek Szuba gentoo org> CommitDate: Tue May 23 19:53:50 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bfa0507 app-emulation/fuse: USE=png requires USE=zlib screenshot.c unconditionally passes Z_BEST_COMPRESSION, a zlib.h macro, to png_set_compression_level(). Funnily enough, the same file first takes pains to only include zlib.h if it was found by configure. Closes: https://bugs.gentoo.org/907034 Signed-off-by: Marek Szuba gentoo.org> app-emulation/fuse/fuse-1.6.0.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app-emulation/fuse/fuse-1.6.0.ebuild b/app-emulation/fuse/fuse-1.6.0.ebuild index ad8465525cbb..b7f0f065d660 100644 --- a/app-emulation/fuse/fuse-1.6.0.ebuild +++ b/app-emulation/fuse/fuse-1.6.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -21,7 +21,8 @@ IUSE="alsa ao backend-X backend-fbcon +backend-gtk3 backend-sdl backend-svga gpm # At most one audio driver and at most one UI back-end can be enabled at a time REQUIRED_USE="?? ( alsa ao backend-sdl pulseaudio ) - ?? ( backend-X backend-fbcon backend-gtk3 backend-sdl backend-svga )" + ?? ( backend-X backend-fbcon backend-gtk3 backend-sdl backend-svga ) + png? ( zlib )" RDEPEND=" >=app-emulation/libspectrum-1.5.0[zlib?]