mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-misc/onedrive: Fix prefix build
The systemd user unit file still hardcodes the configuration path to /home/<user>/.config but it's unlikely that users are invoking onedrive through that. Closes: https://bugs.gentoo.org/959096 Signed-off-by: Andrei Horodniceanu <a.horodniceanu@proton.me> Part-of: https://github.com/gentoo/gentoo/pull/42758 Closes: https://github.com/gentoo/gentoo/pull/42758 Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
committed by
Sam James
parent
28f89b20be
commit
a6866ef9eb
@@ -3,7 +3,7 @@
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit shell-completion optfeature systemd toolchain-funcs
|
||||
inherit shell-completion optfeature prefix systemd toolchain-funcs
|
||||
|
||||
DESCRIPTION="Free Client for OneDrive on Linux"
|
||||
HOMEPAGE="https://abraunegg.github.io/"
|
||||
@@ -38,6 +38,13 @@ pkg_setup() {
|
||||
[[ ${MERGE_TYPE} != binary ]] && _setup_gdc
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
hprefixify contrib/init.d/onedrive.init
|
||||
# Add EPREFIX to the system config path (/etc)
|
||||
hprefixify -w '/string systemConfigDirBase/' src/config.d
|
||||
default
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# GDCFLAGS are meant to be specified in make.conf. Avoid the DFLAGS
|
||||
# name to support ::dlang which needs separate variables for each
|
||||
@@ -70,7 +77,7 @@ src_compile() {
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" docdir=/usr/share/doc/${PF} install
|
||||
emake DESTDIR="${D}" docdir="${EPREFIX}"/usr/share/doc/${PF} install
|
||||
# log directory
|
||||
keepdir /var/log/onedrive
|
||||
fperms 775 /var/log/onedrive
|
||||
|
||||
Reference in New Issue
Block a user