From 74828867aa2663519d6cd3b2821366bd53764fa1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Hern=C3=A1ndez=20Hern=C3=A1ndez?= Date: Wed, 3 Jan 2024 13:51:12 -0600 Subject: [PATCH] gui-apps/wbg: sync live MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Leonardo Hernández Hernández --- gui-apps/wbg/wbg-9999.ebuild | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/gui-apps/wbg/wbg-9999.ebuild b/gui-apps/wbg/wbg-9999.ebuild index ad79bd0c9f..581321b89a 100644 --- a/gui-apps/wbg/wbg-9999.ebuild +++ b/gui-apps/wbg/wbg-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 2021-2023 Gentoo Authors +# Copyright 2021-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -17,24 +17,23 @@ fi DESCRIPTION="Super simple wallpaper application" HOMEPAGE="https://codeberg.org/dnkl/wbg" -LICENSE="MIT" +# ZLIB for nanosvg +LICENSE="MIT ZLIB" SLOT="0" IUSE="png jpeg webp" -REQUIRED_USE="|| ( png jpeg webp )" - -DEPEND=" - x11-libs/pixman - dev-libs/wayland -" RDEPEND=" - ${DEPEND} - png? ( media-libs/libpng:= ) + dev-libs/wayland + x11-libs/pixman jpeg? ( media-libs/libjpeg-turbo:= ) + png? ( media-libs/libpng:= ) webp? ( media-libs/libwebp:= ) " -BDEPEND=" +DEPEND=" + ${RDEPEND} dev-libs/tllist +" +BDEPEND=" dev-libs/wayland-protocols dev-util/wayland-scanner virtual/pkgconfig @@ -45,7 +44,13 @@ src_configure() { $(meson_feature png) $(meson_feature jpeg) $(meson_feature webp) + -Dsvg=true ) meson_src_configure } + +src_install() { + meson_src_install + dodoc README.md CHANGELOG.md +}