summaryrefslogtreecommitdiff
path: root/gui-apps/wbg/wbg-9999.ebuild
diff options
context:
space:
mode:
authormac <ra@afu.re>2025-09-16 10:05:31 -0400
committermac <ra@afu.re>2025-09-16 10:05:31 -0400
commit7b0d27b31c330a2173e839ed988a8a49bcac7099 (patch)
treefdfdeb097e93494cc50437c6c5bdeb9126788bef /gui-apps/wbg/wbg-9999.ebuild
parent54f2198b3c279e02aafb97725c25fcace5a7728b (diff)
rm wbg-9999.ebuild & add wev-1.1.0.ebuild
Diffstat (limited to 'gui-apps/wbg/wbg-9999.ebuild')
-rw-r--r--gui-apps/wbg/wbg-9999.ebuild58
1 files changed, 0 insertions, 58 deletions
diff --git a/gui-apps/wbg/wbg-9999.ebuild b/gui-apps/wbg/wbg-9999.ebuild
deleted file mode 100644
index fbc9682..0000000
--- a/gui-apps/wbg/wbg-9999.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 2021-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-if [[ ${PV} == *9999* ]]; then
- EGIT_REPO_URI="https://codeberg.org/dnkl/wbg.git"
- inherit git-r3
-else
- SRC_URI="https://codeberg.org/dnkl/wbg/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
- S="${WORKDIR}/${PN}"
-fi
-
-DESCRIPTION="Super simple wallpaper application"
-HOMEPAGE="https://codeberg.org/dnkl/wbg"
-
-# ZLIB for nanosvg
-LICENSE="MIT ZLIB"
-SLOT="0"
-IUSE="jpeg jpegxl png webp"
-
-RDEPEND="
- dev-libs/wayland
- x11-libs/pixman
- jpeg? ( media-libs/libjpeg-turbo:= )
- jpegxl? ( media-libs/libjxl:= )
- png? ( media-libs/libpng:= )
- webp? ( media-libs/libwebp:= )
-"
-DEPEND="
- ${RDEPEND}
- dev-libs/tllist
-"
-BDEPEND="
- dev-libs/wayland-protocols
- dev-util/wayland-scanner
- virtual/pkgconfig
-"
-
-src_configure() {
- local emesonargs=(
- $(meson_feature jpeg)
- $(meson_feature jpegxl jxl)
- $(meson_feature png)
- $(meson_feature webp)
- -Dsvg=true
- )
-
- meson_src_configure
-}
-
-src_install() {
- meson_src_install
- dodoc README.md CHANGELOG.md
-}