mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-19 12:03:02 -04:00
gui-apps/dankmaterialshell: new package, add 1.4.6
Signed-off-by: dacyberduck <thecyberduck@tutanota.com>
This commit is contained in:
2
gui-apps/dankmaterialshell/Manifest
Normal file
2
gui-apps/dankmaterialshell/Manifest
Normal file
@@ -0,0 +1,2 @@
|
||||
DIST dms-cli-1.4.6.tar.gz 6277350 BLAKE2B 80141bfbf965269235bd95fd8f37706598ec8cfaba2498c8486738e4bf6b2cf5cf3c8295e94a9d1f6c6fd8023e099fbc7d96fdf7937937f9fcc2a98b75422454 SHA512 a6fdedf33ddd3f020125100706e75f6ababa5fa80de9dec14413f1cf71fe25f90d224233df0a603538208ac2926b3449d6e249cb0152846e34fc147206b05e10
|
||||
DIST dms-qml-1.4.6.tar.gz 41975444 BLAKE2B a372309ee274efd97f22a3c98bc02cbc9d3fb95a5c69399a090f1c0f4cddce445944d0c7c7f9ca60a8ed7f291564528421f5b8e3e7f3d5c14de434fe9cee5c7e SHA512 6a44245ffbca44700774b3a36beb3f06ebd1eae027d83982962707cb8da29bb5e17140a26a06940c838efb479e3c72f60456339de9bf6a061b22ee36ecd3899f
|
||||
133
gui-apps/dankmaterialshell/dankmaterialshell-1.4.6.ebuild
Normal file
133
gui-apps/dankmaterialshell/dankmaterialshell-1.4.6.ebuild
Normal file
@@ -0,0 +1,133 @@
|
||||
# Copyright 2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit desktop optfeature shell-completion systemd tmpfiles xdg-utils
|
||||
|
||||
DESCRIPTION="Desktop shell for wayland compositors built with Quickshell"
|
||||
HOMEPAGE="https://github.com/AvengeMedia/DankMaterialShell"
|
||||
# dms source code & QML (quickshell) files
|
||||
SRC_URI="https://github.com/AvengeMedia/DankMaterialShell/releases/download/v${PV}/dms-cli-${PV}.tar.gz
|
||||
https://github.com/AvengeMedia/DankMaterialShell/releases/download/v${PV}/dms-qml.tar.gz -> dms-qml-${PV}.tar.gz"
|
||||
|
||||
S="${WORKDIR}/dms-cli-${PV}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="cups greeter"
|
||||
RESTRICT="strip"
|
||||
|
||||
DEPEND="
|
||||
app-misc/jq
|
||||
dev-cpp/cli11
|
||||
dev-cpp/cpptrace[unwind]
|
||||
dev-qt/qtbase:6[dbus,wayland,opengl,vulkan,widgets]
|
||||
dev-qt/qtdeclarative:6[opengl,vulkan]
|
||||
dev-qt/qtmultimedia:6[dbus,opengl,vulkan,wayland]
|
||||
dev-qt/qtshadertools:6
|
||||
dev-qt/qtwayland:6
|
||||
gui-apps/quickshell
|
||||
sys-apps/accountsservice
|
||||
sys-apps/xdg-desktop-portal-gtk[wayland]
|
||||
sys-power/upower
|
||||
kde-frameworks/kimageformats
|
||||
cups? ( net-print/cups-pk-helper )
|
||||
greeter? ( gui-libs/greetd )
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND="
|
||||
dev-build/cmake
|
||||
dev-lang/go
|
||||
dev-util/pkgconf
|
||||
"
|
||||
|
||||
# set variables
|
||||
QML_DIR="${WORKDIR}"/dms # qml assets location
|
||||
GRT_DIR="${QML_DIR}"/Modules/Greetd # greeter location
|
||||
|
||||
src_unpack() {
|
||||
# unpack dms source
|
||||
unpack dms-cli-"${PV}".tar.gz
|
||||
# unpack QML assets in ${QML_DIR}
|
||||
mkdir -p ${QML_DIR} || die "failed to create directory: ${QML_DIR}"
|
||||
cd "${QML_DIR}" || die "cd into ${QML_DIR} failed"
|
||||
unpack dms-qml-"${PV}".tar.gz
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
if use greeter; then
|
||||
# set DMS_PATH: /usr/share/quickshell/dms
|
||||
sed -i 's|^DMS_PATH=.*$|DMS_PATH="/usr/share/quickshell/dms"|' \
|
||||
"${GRT_DIR}"/assets/dms-greeter
|
||||
|
||||
# fix tmpfile usergroup: greeter -> greetd
|
||||
sed -i "s/\sgreeter/ greetd/g" "${QML_DIR}"/systemd/tmpfiles-dms-greeter.conf
|
||||
fi
|
||||
|
||||
default
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
# build dms distro binary
|
||||
emake VERSION="${PV}" dist
|
||||
|
||||
# generate shell completions
|
||||
"${S}"/bin/dms-linux-"${ARCH}" completion bash > "${S}"/dms-bashcomp
|
||||
"${S}"/bin/dms-linux-"${ARCH}" completion zsh > "${S}"/dms-zshcomp
|
||||
}
|
||||
|
||||
src_install() {
|
||||
# install dms binary
|
||||
newbin "${S}"/bin/dms-linux-"${ARCH}" dms
|
||||
|
||||
if use greeter; then
|
||||
dobin "${GRT_DIR}"/assets/dms-greeter
|
||||
newtmpfiles "${QML_DIR}"/systemd/tmpfiles-dms-greeter.conf dms-greeter.conf
|
||||
fi
|
||||
|
||||
# install qml sources at /usr/share/quickshell/dms
|
||||
insinto /usr/share/quickshell
|
||||
doins -r "${QML_DIR}"
|
||||
|
||||
# install shell completions
|
||||
newbashcomp "${S}"/dms-bashcomp dms
|
||||
newzshcomp "${S}"/dms-zshcomp _dms
|
||||
|
||||
# systemd unit
|
||||
systemd_douserunit "${QML_DIR}"/assets/systemd/dms.service
|
||||
|
||||
# desktop entry and icon
|
||||
domenu "${QML_DIR}"/assets/dms-open.desktop
|
||||
doicon -s scalable "${QML_DIR}"/assets/danklogo.svg
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
tmpfiles_process dms-greeter.conf
|
||||
xdg_desktop_database_update
|
||||
xdg_icon_cache_update
|
||||
|
||||
optfeature_header "Optional programs for extra features:"
|
||||
optfeature "Audio visualizer" media-sound/cava
|
||||
optfeature "I2C monitor brightness control" app-misc/ddcutil
|
||||
optfeature "Power profile options" sys-power/power-profiles-daemon
|
||||
optfeature "Volume & Speaker control" media-video/wireplumber
|
||||
optfeature "Bluetooth & file transfer" net-wireless/bluez
|
||||
optfeature "Calendar integration" app-misc/khal
|
||||
optfeature "Fingerprint unlock notifier" sys-auth/fprintfd
|
||||
optfeature "Wallpaper based colorscheme" x11-misc/matugen
|
||||
optfeature "Wifi & Ethernet connection" net-misc/networkmanager
|
||||
|
||||
if use greeter; then
|
||||
elog "\nTo use dms-greeter as your default greetd greeter run the following:\n"
|
||||
elog " \$ dms greeter enable"
|
||||
elog " \$ systemctl disable --now gdm.service sddm.service lightdm.service"
|
||||
elog " \$ systemctl enable --now greetd.service"
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
xdg_desktop_database_update
|
||||
xdg_icon_cache_update
|
||||
}
|
||||
15
gui-apps/dankmaterialshell/metadata.xml
Normal file
15
gui-apps/dankmaterialshell/metadata.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>thecyberduck@tutanota.com</email>
|
||||
<name>cyberduck</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">AvengeMedia/DankMaterialShell</remote-id>
|
||||
<bugs-to>https://github.com/AvengeMedia/DankMaterialShell/issues</bugs-to>
|
||||
</upstream>
|
||||
<use>
|
||||
<flag name="greeter">Install dms greeter for greetd</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
Reference in New Issue
Block a user