commit: 3d37a335ea336fb7bc38335b10d257ab00e1a9a6 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sun Mar 8 15:42:50 2026 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sun Mar 8 15:42:50 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d37a335
media-gfx/ristretto: Bump to 0.14.0 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> media-gfx/ristretto/Manifest | 1 + media-gfx/ristretto/ristretto-0.14.0.ebuild | 59 +++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+) diff --git a/media-gfx/ristretto/Manifest b/media-gfx/ristretto/Manifest index 9dc8380f16f5..e84b62f46304 100644 --- a/media-gfx/ristretto/Manifest +++ b/media-gfx/ristretto/Manifest @@ -1 +1,2 @@ DIST ristretto-0.13.4.tar.xz 277320 BLAKE2B bbe83cca8044ba971bfb00162ef73809eb1ed970389e2c8a2b95f7be4fb411b704b70238eeed781f25471a91e5989ba7972871f2bb4d31858979d4e4a76e9672 SHA512 07eede11a88b5565bf311fb1d0c5702ef8d655d4970558638cee6a9df27c426fb591d0a693d3e3a0954b40106636d2092e5febfd033201d41e579c8f4b785923 +DIST ristretto-0.14.0.tar.xz 284296 BLAKE2B 15fdc14b744aa4c24a90df6238ef8e24cb6783b578a6e8e8f34815ea6dc9efe329dc691ac372f4325fb0a80a49a1927cd2dc9caf424216fa0a5db908726e11a6 SHA512 51c37eea1152e25f0dde475d3fbddb9e22452ce353c25517aafb07d24f7fdf612ff39ee41c03e4ae6bcc99509fa12fea94255d395841c55880128ccd77b3035b diff --git a/media-gfx/ristretto/ristretto-0.14.0.ebuild b/media-gfx/ristretto/ristretto-0.14.0.ebuild new file mode 100644 index 000000000000..302d0653fc10 --- /dev/null +++ b/media-gfx/ristretto/ristretto-0.14.0.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson xdg-utils + +DESCRIPTION="A fast and lightweight picture viewer for Xfce" +HOMEPAGE=" + https://docs.xfce.org/apps/ristretto/start + https://gitlab.xfce.org/apps/ristretto/ +" +SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.xz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="X" + +# TODO: drop exo when we depend on >=libxfce4ui-4.21.0 +DEPEND=" + >=dev-libs/glib-2.56.0:2 + >=media-libs/libexif-0.6.0:0= + sys-apps/file + >=x11-libs/cairo-1.10.0 + >=x11-libs/gtk+-3.22.0:3 + >=xfce-base/exo-4.16.0:= + >=xfce-base/libxfce4ui-4.16.0:= + >=xfce-base/libxfce4util-4.16.0:= + >=xfce-base/xfconf-4.16.0:= + + X? ( + >=x11-libs/libX11-1.6.7:= + ) +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +src_configure() { + local emesonargs=( + $(meson_feature X libx11) + ) + meson_src_configure +} + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update +}
