From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 42F70139694 for ; Fri, 21 Apr 2017 15:32:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 770DEE0C75; Fri, 21 Apr 2017 15:32:13 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 57263E0C75 for ; Fri, 21 Apr 2017 15:32:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 479E2341586 for ; Fri, 21 Apr 2017 15:32:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 78FFF7427 for ; Fri, 21 Apr 2017 15:32:10 +0000 (UTC) From: "Ian Stakenvicius" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Stakenvicius" Message-ID: <1492788722.2414f606cea22b3dbea89846e550100561f3ce16.axs@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/foldingathome/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-biology/foldingathome/foldingathome-7.4.4-r1.ebuild X-VCS-Directories: sci-biology/foldingathome/ X-VCS-Committer: axs X-VCS-Committer-Name: Ian Stakenvicius X-VCS-Revision: 2414f606cea22b3dbea89846e550100561f3ce16 X-VCS-Branch: master Date: Fri, 21 Apr 2017 15:32:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c67929ee-d105-4572-b8d2-b109a9328121 X-Archives-Hash: d5cb3cc9ec8b29785d9610a710123bc1 commit: 2414f606cea22b3dbea89846e550100561f3ce16 Author: Ian Stakenvicius gentoo org> AuthorDate: Fri Apr 21 15:27:12 2017 +0000 Commit: Ian Stakenvicius gentoo org> CommitDate: Fri Apr 21 15:32:02 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2414f606 sci-biology/foldingathome: switch EPREFIX usages in pkg_* back to EROOT Package-Manager: Portage-2.3.3, Repoman-2.3.1 sci-biology/foldingathome/foldingathome-7.4.4-r1.ebuild | 6 +++--- 1 file 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 9afa2539eee..bed9135f0d2 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 }