diff options
author | Ian Stakenvicius <axs@gentoo.org> | 2017-04-21 11:27:12 -0400 |
---|---|---|
committer | Ian Stakenvicius <axs@gentoo.org> | 2017-04-21 11:32:02 -0400 |
commit | 2414f606cea22b3dbea89846e550100561f3ce16 (patch) | |
tree | 354e1e1d48aeb6405be16191b63a41160b68d597 /sci-biology | |
parent | app-emulation/docker: Version bump to 17.05_rc1 (diff) | |
download | gentoo-2414f606cea22b3dbea89846e550100561f3ce16.tar.gz gentoo-2414f606cea22b3dbea89846e550100561f3ce16.tar.bz2 gentoo-2414f606cea22b3dbea89846e550100561f3ce16.zip |
sci-biology/foldingathome: switch EPREFIX usages in pkg_* back to EROOT
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'sci-biology')
-rw-r--r-- | sci-biology/foldingathome/foldingathome-7.4.4-r1.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sci-biology/foldingathome/foldingathome-7.4.4-r1.ebuild b/sci-biology/foldingathome/foldingathome-7.4.4-r1.ebuild index 9afa2539eee6..bed9135f0d25 100644 --- a/sci-biology/foldingathome/foldingathome-7.4.4-r1.ebuild +++ b/sci-biology/foldingathome/foldingathome-7.4.4-r1.ebuild @@ -62,11 +62,11 @@ pkg_preinst() { } pkg_postinst() { - chown -R foldingathome:nogroup "${EPREFIX}"/${I} + chown -R foldingathome:nogroup "${EROOT}"${I} einfo "To run Folding@home in the background at boot (with openrc):" einfo "\trc-update add foldingathome default" einfo "" - if [ ! -e "${EPREFIX}"/${I}/config.xml ]; then + if [ ! -e "${EROOT}"${I}/config.xml ]; then elog "No configuration found -- please run ${I}/initfolding or" elog "emerge --config ${P} to configure your client and edit" elog "${EPREFIX}/etc/conf.d/foldingathome for options" @@ -83,5 +83,5 @@ pkg_postrm() { } pkg_config() { - "${EPREFIX}"/${I}/initfolding + "${EROOT}"${I}/initfolding } |