summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2010-04-23 07:46:36 +0000
committerJustin Lecher <jlec@gentoo.org>2010-04-23 07:46:36 +0000
commit87a046d2dda641a8a49083dc8c7eee71fb66e22f (patch)
tree7934657d17431690bf16b0bb8adf3b38a4581aa8 /dev-lang
parentDon't use EROOT with helper functions (diff)
downloadgentoo-2-87a046d2dda641a8a49083dc8c7eee71fb66e22f.tar.gz
gentoo-2-87a046d2dda641a8a49083dc8c7eee71fb66e22f.tar.bz2
gentoo-2-87a046d2dda641a8a49083dc8c7eee71fb66e22f.zip
Don't use EROOT with helper functions
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-lang')
-rw-r--r--dev-lang/ifc/ifc-11.1.056-r1.ebuild8
1 files changed, 4 insertions, 4 deletions
diff --git a/dev-lang/ifc/ifc-11.1.056-r1.ebuild b/dev-lang/ifc/ifc-11.1.056-r1.ebuild
index e767a33cfefe..ed7693b5212b 100644
--- a/dev-lang/ifc/ifc-11.1.056-r1.ebuild
+++ b/dev-lang/ifc/ifc-11.1.056-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ifc/ifc-11.1.056-r1.ebuild,v 1.1 2010/04/22 09:17:35 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ifc/ifc-11.1.056-r1.ebuild,v 1.2 2010/04/23 07:46:36 jlec Exp $
EAPI="3"
@@ -30,7 +30,7 @@ DEPEND=""
RDEPEND="~virtual/libstdc++-3.3
amd64? ( app-emulation/emul-linux-x86-compat )"
-DESTINATION="${EPRFIX#/}/opt/intel/Compiler/${RELEASE}/${BUILD}"
+DESTINATION="opt/intel/Compiler/${RELEASE}/${BUILD}"
QA_TEXTRELS="${DESTINATION}/*"
QA_EXECSTACK="${DESTINATION}/*"
@@ -70,7 +70,7 @@ src_prepare() {
# extract the tag function from the original install
sed -n \
-e "s|find \$DESTINATION|find ${DESTINATION}|g" \
- -e "s|@\$DESTINATION|@${ROOT}${DESTINATION}|g" \
+ -e "s|@\$DESTINATION|@${EROOT}${DESTINATION}|g" \
-e '/^UNTAG_CFG_FILES[[:space:]]*(/,/^}/p' \
pset/install_fc.sh > tag.sh || die
# fix world writeable files
@@ -89,7 +89,7 @@ src_install() {
keepdir /opt/intel/licenses
einfo "Copying files"
- dodir "${DESTINATION}"
+ dodir "/${DESTINATION}"
cp -pPR \
${DESTINATION}/* \
"${ED}"/${DESTINATION}/ \