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 E48B2158086 for ; Thu, 23 Dec 2021 01:03:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB04B2BC005; Thu, 23 Dec 2021 01:03:15 +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 43CEE2BC001 for ; Thu, 23 Dec 2021 01:03:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 E01B5342E4E for ; Thu, 23 Dec 2021 01:03:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 418A0258 for ; Thu, 23 Dec 2021 01:03:12 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1640221087.507cc32a6212108c0edd1c0eb4d81e6b0c219185.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/imv/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/imv/imv-9999.ebuild X-VCS-Directories: media-gfx/imv/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 507cc32a6212108c0edd1c0eb4d81e6b0c219185 X-VCS-Branch: master Date: Thu, 23 Dec 2021 01:03:12 +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: 3bcea849-d692-40bd-8a5b-d3872b14e3b5 X-Archives-Hash: de4ce1f4a158915a28ac28b334ee643f commit: 507cc32a6212108c0edd1c0eb4d81e6b0c219185 Author: Ionen Wolkens gentoo org> AuthorDate: Thu Dec 23 00:49:49 2021 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Thu Dec 23 00:58:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=507cc32a media-gfx/imv: libgrapheme support for live ebuild Library had its first release and been informed api should be stable, allows to skip the heavier icu dependency on an otherwise small tool. Signed-off-by: Ionen Wolkens gentoo.org> media-gfx/imv/imv-9999.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/media-gfx/imv/imv-9999.ebuild b/media-gfx/imv/imv-9999.ebuild index 55cdc69ad90e..95ff5b86dae8 100644 --- a/media-gfx/imv/imv-9999.ebuild +++ b/media-gfx/imv/imv-9999.ebuild @@ -19,13 +19,12 @@ HOMEPAGE="https://sr.ht/~exec64/imv/" LICENSE="MIT-with-advertising" SLOT="0" -IUSE="+X +freeimage gif heif jpeg png svg test tiff wayland" +IUSE="+X +freeimage gif heif icu jpeg png svg test tiff wayland" REQUIRED_USE="|| ( X wayland )" RESTRICT="!test? ( test )" RDEPEND=" dev-libs/glib:2 - dev-libs/icu:= dev-libs/inih media-libs/libglvnd[X?] x11-libs/cairo @@ -38,6 +37,8 @@ RDEPEND=" freeimage? ( media-libs/freeimage ) gif? ( media-libs/libnsgif ) heif? ( media-libs/libheif:= ) + icu? ( dev-libs/icu:= ) + !icu? ( dev-libs/libgrapheme ) jpeg? ( media-libs/libjpeg-turbo:= ) png? ( media-libs/libpng:= ) svg? ( >=gnome-base/librsvg-2.44:2 ) @@ -74,6 +75,7 @@ src_configure() { $(meson_feature svg librsvg) $(meson_feature test) $(meson_feature tiff libtiff) + -Dunicode=$(usex icu{,} grapheme) -Dwindows=$(usex X $(usex wayland all x11) wayland) )