gentoo-ebuilds/sys-power/sandmann-bin/sandmann-bin-1.4.1-r1.ebuild
Florian Schmaus dabce27a86
sys-power/sandmann-bin: add missing quotes
Signed-off-by: Florian Schmaus <flow@gentoo.org>
2025-06-01 21:29:43 +02:00

61 lines
1.1 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit java-utils-2 systemd tmpfiles
MY_PN=${PN%-bin}
MY_P=${MY_PN}-${PV}
DESCRIPTION="An autosuspend and wakeup daemon"
HOMEPAGE="https://gitlab.com/flow/sandmann"
SRC_URI="https://geekplace.eu/projects/${MY_PN}/archive/${MY_P}.tar.xz"
S="${WORKDIR}/${MY_P}"
LICENSE="GPL-3+ LGPL-3"
SLOT="0"
KEYWORDS="~amd64"
# >=java-config-2.3.2 to get the libdir fix.
RDEPEND="
acct-user/sandmann
acct-group/sandmann-ctrl
>=dev-java/java-config-2.3.2
net-misc/socat
sys-apps/systemd
sys-auth/polkit
>=virtual/jre-17
"
src_prepare() {
default
sed -i \
-e 's|^ExecStart=.*|ExecStart=/usr/bin/sandmann|' \
sandmann.service || die
}
src_compile() {
:
}
src_install() {
local my_emake_args=(
DESTDIR="${D}"
SYSTEMD_SYSTEM_UNIT_DIR="$(systemd_get_systemunitdir)"
TARGET_BINARY=
SOURCELESS_INSTALL=true
)
emake "${my_emake_args[@]}" install
java-pkg_newjar out/main/assembly.dest/out.jar sandmann.jar
java-pkg_dolauncher sandmann
dodoc README.md
}
pkg_postinst() {
tmpfiles_process sandmann.conf
}