summaryrefslogtreecommitdiff
path: root/gui-wm
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2022-02-11 17:50:27 -0500
committerIonen Wolkens <ionen@gentoo.org>2022-02-11 18:13:58 -0500
commit09ec5ed9dff2562de7e06b0fbe4872763365335a (patch)
treef0f520ccb95f8f87553491db3ba6e0f5e354fa4a /gui-wm
parentdev-util/maturin: drop 0.11.5-r1 (diff)
downloadgentoo-09ec5ed9dff2562de7e06b0fbe4872763365335a.tar.gz
gentoo-09ec5ed9dff2562de7e06b0fbe4872763365335a.tar.bz2
gentoo-09ec5ed9dff2562de7e06b0fbe4872763365335a.zip
gui-wm/hikari: drop 2.3.2
Now that wlroots-0.15 was patched to work with nvidia GBM, there should be no need to keep the wlroots-0.14 version. Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'gui-wm')
-rw-r--r--gui-wm/hikari/Manifest1
-rw-r--r--gui-wm/hikari/hikari-2.3.2.ebuild72
2 files changed, 0 insertions, 73 deletions
diff --git a/gui-wm/hikari/Manifest b/gui-wm/hikari/Manifest
index c255c9d71b50..8a39b99a81d6 100644
--- a/gui-wm/hikari/Manifest
+++ b/gui-wm/hikari/Manifest
@@ -1,2 +1 @@
-DIST hikari-2.3.2.tar.gz 1022093 BLAKE2B 8e4df4377728cc1feab3509588a9f2d5138af6e3175682672eedce4ca45d5bb9b7e56568a860871b319b3ff1213468f38f0b6253927f6ab4b905dd495c05c53e SHA512 b7485be089064dd19c4614f60066b3f7b2f322328fa771d4383db27656695746fb00ab534cc754929141c23b7556992391529e537e0522080177068f3d0e2954
DIST hikari-2.3.3.tar.gz 1022191 BLAKE2B 8b1d0f03460a170f2288c97790dc437a4bd4eafc6973e87c15ca44b1d032ab02ef1d75406fe15be6bb14f67c07945b16be47ec1e41d43b51961a1c69a4a67f9b SHA512 15b6244ef46b29ad069475e8fadbafb01a65c8f96d1f89dd315d36f79dfea9a542936a5472e42237000f506094c7e08be37961c92a7eeed31477f4ed548f39f3
diff --git a/gui-wm/hikari/hikari-2.3.2.ebuild b/gui-wm/hikari/hikari-2.3.2.ebuild
deleted file mode 100644
index 119bd1fe8f0c..000000000000
--- a/gui-wm/hikari/hikari-2.3.2.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit multiprocessing toolchain-funcs
-
-DESCRIPTION="Wayland compositor inspired by CWM"
-HOMEPAGE="https://hikari.acmelabs.space/"
-SRC_URI="https://hikari.acmelabs.space/releases/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="X suid"
-
-COMMON_DEPEND="
- dev-libs/glib:2
- dev-libs/libinput:=
- dev-libs/libucl
- dev-libs/wayland
- gui-libs/wlroots:0/14[X?]
- sys-libs/pam
- x11-libs/cairo
- x11-libs/libxkbcommon
- x11-libs/pango
- x11-libs/pixman"
-RDEPEND="
- ${COMMON_DEPEND}
- x11-misc/xkeyboard-config"
-DEPEND="
- ${COMMON_DEPEND}
- dev-libs/wayland-protocols"
-BDEPEND="
- dev-util/wayland-scanner
- sys-devel/bmake
- virtual/pkgconfig"
-
-src_compile() {
- tc-export CC PKG_CONFIG
-
- local bmake=(
- bmake -j$(makeopts_jobs)
- ETC_PREFIX="${EPREFIX}"
- CFLAGS_EXTRA="${CFLAGS} ${CPPFLAGS}"
- LDFLAGS_EXTRA="${LDFLAGS}"
- VERSION=${PV}
- -DWITH_GAMMACONTROL
- -DWITH_LAYERSHELL
- -DWITH_POSIX_C_SOURCE
- -DWITH_SCREENCOPY
- -DWITH_VIRTUAL_INPUT
- $(usev X -DWITH_XWAYLAND)
- )
-
- # empty flags to avoid duplicates (some parts use only _EXTRA, others both)
- echo "${bmake[*]}"
- CFLAGS= LDFLAGS= "${bmake[@]}" || die
-}
-
-src_install() {
- local bmake=(
- bmake install
- DESTDIR="${D}"
- PREFIX="${EPREFIX}"/usr
- ETC_PREFIX="${EPREFIX}"
- $(usev suid -DWITH_SUID)
- )
-
- echo "${bmake[*]}"
- "${bmake[@]}" || die
-}