summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Stakenvicius <axs@gentoo.org>2018-04-25 10:53:00 -0400
committerIan Stakenvicius <axs@gentoo.org>2018-04-25 10:54:31 -0400
commit209abddaf0f7253cb29886cf5dba1d7ffcc14f5c (patch)
tree5132e18ca14262d33d191792971c0947d1b0e32c /sci-biology
parentmedia-libs/libmygpo-qt: Drop obsolete snapshot (diff)
downloadgentoo-209abddaf0f7253cb29886cf5dba1d7ffcc14f5c.tar.gz
gentoo-209abddaf0f7253cb29886cf5dba1d7ffcc14f5c.tar.bz2
gentoo-209abddaf0f7253cb29886cf5dba1d7ffcc14f5c.zip
sci-biology/foldingathome: fix systemd unit
This isn't a perfect fix since if the EPREFIX path contains characters that need to be quoted the paths will still fail, however when compared to a systemd unit that doesn't work at all this is significantly better than nothing. Bug: http://bugs.gentoo.org/645200 Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'sci-biology')
-rw-r--r--sci-biology/foldingathome/foldingathome-7.4.4-r3.ebuild (renamed from sci-biology/foldingathome/foldingathome-7.4.4-r2.ebuild)10
1 files changed, 5 insertions, 5 deletions
diff --git a/sci-biology/foldingathome/foldingathome-7.4.4-r2.ebuild b/sci-biology/foldingathome/foldingathome-7.4.4-r3.ebuild
index 92d3b277ea7a..5df01b800ba7 100644
--- a/sci-biology/foldingathome/foldingathome-7.4.4-r2.ebuild
+++ b/sci-biology/foldingathome/foldingathome-7.4.4-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -75,11 +75,11 @@ Documentation=https://folding.stanford.edu/home/the-software/
[Service]
Type=simple
User=foldingathome
-WorkingDirectory="${EPREFIX}/opt/foldingathome"
+WorkingDirectory=${EPREFIX}/opt/foldingathome
PIDFile=/run/fahclient.pid
-ExecStart=./FAHClient -v start
-ExecReload=./FAHClient -v restart
-ExecStop=./FAHClient -v stop
+ExecStart=${EPREFIX}/opt/foldingathome/FAHClient -v start
+ExecReload=${EPREFIX}/opt/foldingathome/FAHClient -v restart
+ExecStop=${EPREFIX}/opt/foldingathome/FAHClient -v stop
KillMode=process
[Install]