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 E1A0215800F for ; Tue, 10 Jan 2023 08:37:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B384E07F9; Tue, 10 Jan 2023 08:37:48 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 14BC7E07F9 for ; Tue, 10 Jan 2023 08:37:47 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 564CF340DF8 for ; Tue, 10 Jan 2023 08:37:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E894C828 for ; Tue, 10 Jan 2023 08:37:44 +0000 (UTC) From: "Haelwenn Monnier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Haelwenn Monnier" Message-ID: <1673259423.94a9da220dd351ae2334c097261492fcdab3a0fc.lanodan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: media-gfx/nsxiv/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-gfx/nsxiv/metadata.xml media-gfx/nsxiv/nsxiv-9999.ebuild X-VCS-Directories: media-gfx/nsxiv/ X-VCS-Committer: lanodan X-VCS-Committer-Name: Haelwenn Monnier X-VCS-Revision: 94a9da220dd351ae2334c097261492fcdab3a0fc X-VCS-Branch: master Date: Tue, 10 Jan 2023 08:37:44 +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: a0b45567-4958-44c9-9571-7059ab8bdee0 X-Archives-Hash: 358c82bf1d877b01d02147ce0e5d9b1e commit: 94a9da220dd351ae2334c097261492fcdab3a0fc Author: Nickolas Raymond Kaczynski disroot org> AuthorDate: Mon Jan 9 10:11:35 2023 +0000 Commit: Haelwenn Monnier hacktivis me> CommitDate: Mon Jan 9 10:17:03 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=94a9da22 media-gfx/nsxiv: add animated USE flag, drop gif & webp the gif and webp build options are depreciated upstream. Signed-off-by: Nickolas Raymond Kaczynski disroot.org> media-gfx/nsxiv/metadata.xml | 3 ++- media-gfx/nsxiv/nsxiv-9999.ebuild | 7 ++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/media-gfx/nsxiv/metadata.xml b/media-gfx/nsxiv/metadata.xml index 9b518bd51..0f74c8e53 100644 --- a/media-gfx/nsxiv/metadata.xml +++ b/media-gfx/nsxiv/metadata.xml @@ -8,8 +8,9 @@ nsxiv/nsxiv - Add statusbar support + Add animated image support Add animated gif support + Add statusbar support Add animated webp support diff --git a/media-gfx/nsxiv/nsxiv-9999.ebuild b/media-gfx/nsxiv/nsxiv-9999.ebuild index cea408441..0c6c27ce0 100644 --- a/media-gfx/nsxiv/nsxiv-9999.ebuild +++ b/media-gfx/nsxiv/nsxiv-9999.ebuild @@ -18,15 +18,14 @@ HOMEPAGE="https://codeberg.org/nsxiv/nsxiv" LICENSE="GPL-2" SLOT="0" -IUSE="+statusbar exif +inotify +gif webp" +IUSE="+statusbar +animated +inotify exif" RDEPEND=" x11-libs/libX11 media-libs/imlib2[X] statusbar? ( x11-libs/libXft ) exif? ( media-libs/libexif ) - gif? ( media-libs/giflib:0= ) - webp? ( media-libs/libwebp ) + animated? ( >=media-libs/imlib2-1.8.0[X] ) " DEPEND="${RDEPEND}" @@ -53,8 +52,6 @@ src_compile() { emake CC="$(tc-getCC)" OPT_DEP_DEFAULT=0 \ HAVE_INOTIFY="$(usex inotify 1 0)" \ HAVE_LIBFONTS="$(usex statusbar 1 0)" \ - HAVE_LIBGIF="$(usex gif 1 0)" \ - HAVE_LIBWEBP="$(usex webp 1 0)" \ HAVE_LIBEXIF="$(usex exif 1 0)" }