mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 23:52:59 -04:00
gui-apps/hyprland-plugins: drop 0.24.1-r1
Signed-off-by: Julien Roy <julien@jroy.ca>
This commit is contained in:
@@ -1,5 +1,2 @@
|
||||
DIST hyprland-plugins-0.24.1-hyprsrc.gh.tar.gz 1502909 BLAKE2B ddc2ed026c921061427799836a957efb35fb68f3628f0cf5cb3d4d3ec2c876f62275bf8c580cbb8fb480b0b0fc6f1bff690da3ce0459c2af170e4e0add8e898c SHA512 d6d232f597a5790818345b43c329c4fa225a0d2f5e5bbddef88fa8ca59a6ff1d867dfea208ea215dbd37049c301a45aa292ff133c6fdf5e4b73918396c57f6f2
|
||||
DIST hyprland-plugins-0.24.1-split-monitor-workspaces.gh.tar.gz 4294 BLAKE2B a56ad9a563833ece1ca45228825a2025cd4bb2b2c72c8d906fc668d1858feb4a34bdc0936940369a1a387d2a8e6e31f69c2bd20b0916e6deb48d7f32fb92439c SHA512 159121382213f590fe0d2768917ddd06676342532a2eccc3e7161a0ff611e77874a4159edb2d32558044e7fccb027e97cf8e6b9b7ee228cf2f4c4377ffb9f4da
|
||||
DIST hyprland-plugins-0.24.1.gh.tar.gz 8996 BLAKE2B bd8eeeb269f886e188dda003fa070da1d94649cce8d9c33cd4636b9ad5c068ce9794e6335000889bb0a964e8f632122c3ababeda45b2c0a90ac4895670420cbe SHA512 9e5091646f8bd55ffa9e1fec496aacdf325479569a9842fe5066471e45af656d976b35818bc86db2b488eb1dfab132ee9eba1b2057066e1bd96da7223c21465c
|
||||
DIST hyprland-plugins-0.25.0-hyprsrc.gh.tar.gz 1510798 BLAKE2B c146c57e5142666ff76188e870ea4d2dd9613e25a1d2c3320dc222fbe62651975a40fffffe9cc936ced0e86f919534d7a6c94a8b1596f912c3ad9750a35e4f13 SHA512 84d12ef7bfb25e69c4a707a8ffc99ca23eb58e73630e3df1f134cb610c6206e42917f76b54db0cc6d10e7b929514cbac06dfc99feba8ff81aea0dc7fcb340450
|
||||
DIST hyprland-plugins-0.25.0.gh.tar.gz 12209 BLAKE2B c5f74cbe13e99f71a24a272a015df70f20ae62f9e552d35914ccff37474b564a28ff81e60584caf186d111e1e3a0716e7ba03b3e201823616167708ef0aa2a0f SHA512 875c7cdb2552d5c8e68a6705f7d82173fa6f3e7637b049125d88e6b4a130f330c66b49bbb2685d302345d101fba6f23d873e7511b2fad510d1a9286c127fbaf7
|
||||
|
||||
@@ -1,93 +0,0 @@
|
||||
# Copyright 2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
COMMIT=bb1437add2df7f76147f7beb430365637fc2c35e
|
||||
SPLITCOMMIT=feb6ab9a4929a92d41c724f6d16e9d351b12de39
|
||||
DESCRIPTION="A blazing fast wayland wallpaper utility"
|
||||
HOMEPAGE="https://github.com/hyprwm/hyprland-plugins"
|
||||
SRC_URI="https://github.com/hyprwm/${PN}/archive/${COMMIT}.tar.gz -> ${P}.gh.tar.gz
|
||||
https://github.com/hyprwm/Hyprland/releases/download/v${PV}/source-v${PV}.tar.gz \
|
||||
-> ${P}-hyprsrc.gh.tar.gz
|
||||
https://github.com/Duckonaut/split-monitor-workspaces/archive/${SPLITCOMMIT}.tar.gz \
|
||||
-> ${P}-split-monitor-workspaces.gh.tar.gz
|
||||
"
|
||||
S="${WORKDIR}/${PN}-${COMMIT}"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="+borders-plus-plus csgo-vulkan-fix +hyprbars split-monitor-workspaces X"
|
||||
REQUIRED_USE="|| ( borders-plus-plus csgo-vulkan-fix hyprbars split-monitor-workspaces )"
|
||||
|
||||
RDEPEND="gui-wm/hyprland"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="
|
||||
~gui-wm/hyprland-${PV}
|
||||
split-monitor-workspaces? ( gui-libs/wlroots[X?] )
|
||||
x11-libs/libdrm
|
||||
x11-libs/pixman
|
||||
x11-libs/xcb-util-wm
|
||||
"
|
||||
|
||||
src_unpack() {
|
||||
default
|
||||
cp "${FILESDIR}/split-monitor-workspaces.patch" "${WORKDIR}/split-monitor-workspaces-${SPLITCOMMIT}" || die
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
eapply_user
|
||||
if use split-monitor-workspaces && ! use X; then
|
||||
cd "${WORKDIR}/split-monitor-workspaces-${SPLITCOMMIT}" || die
|
||||
eapply "${WORKDIR}/split-monitor-workspaces-${SPLITCOMMIT}"
|
||||
fi
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake -C "${WORKDIR}/hyprland-source" protocols
|
||||
export HYPRLAND_HEADERS="${WORKDIR}/hyprland-source"
|
||||
|
||||
if use borders-plus-plus; then
|
||||
emake -C "${S}/borders-plus-plus" all
|
||||
fi
|
||||
|
||||
if use csgo-vulkan-fix; then
|
||||
emake -C "${S}/csgo-vulkan-fix" all
|
||||
fi
|
||||
|
||||
if use hyprbars; then
|
||||
emake -C "${S}/hyprbars" all
|
||||
fi
|
||||
|
||||
if use split-monitor-workspaces; then
|
||||
emake -C "${WORKDIR}/split-monitor-workspaces-${SPLITCOMMIT}" split-monitor-workspaces.so
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
insinto "/usr/share/hyprland/plugins"
|
||||
|
||||
if use borders-plus-plus; then
|
||||
doins "${S}/borders-plus-plus/borders-plus-plus.so"
|
||||
fi
|
||||
|
||||
if use csgo-vulkan-fix; then
|
||||
doins "${S}/csgo-vulkan-fix/csgo-vulkan-fix.so"
|
||||
fi
|
||||
|
||||
if use hyprbars; then
|
||||
doins "${S}/hyprbars/hyprbars.so"
|
||||
fi
|
||||
|
||||
if use split-monitor-workspaces; then
|
||||
doins "${WORKDIR}/split-monitor-workspaces-${SPLITCOMMIT}/split-monitor-workspaces.so"
|
||||
emake -C "${WORKDIR}/split-monitor-workspaces-${SPLITCOMMIT}" all
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
einfo "Plugins are installed in /usr/share/hyprland/plugins"
|
||||
einfo "To load them, refer to the official documentation"
|
||||
einfo "https://wiki.hyprland.org/Plugins/Using-Plugins/"
|
||||
}
|
||||
@@ -15,6 +15,5 @@
|
||||
<flag name="borders-plus-plus">adds one or two additional borders to windows</flag>
|
||||
<flag name="csgo-vulkan-fix">fixes custom resolutions on CS:GO with -vulkan</flag>
|
||||
<flag name="hyprbars">adds title bars to windows</flag>
|
||||
<flag name="split-monitor-workspaces">A small Hyprland plugin to provide awesome-like workspace behavior</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
|
||||
Reference in New Issue
Block a user