Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/ifc: ifc-11.1.056-r1.ebuild
Date: Fri, 23 Apr 2010 07:46:42
Message-Id: 20100423074636.620BE28AEE@corvid.gentoo.org
1 jlec 10/04/23 07:46:36
2
3 Modified: ifc-11.1.056-r1.ebuild
4 Log:
5 Don't use EROOT with helper functions
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 dev-lang/ifc/ifc-11.1.056-r1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ifc/ifc-11.1.056-r1.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ifc/ifc-11.1.056-r1.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ifc/ifc-11.1.056-r1.ebuild?r1=1.1&r2=1.2
14
15 Index: ifc-11.1.056-r1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-lang/ifc/ifc-11.1.056-r1.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- ifc-11.1.056-r1.ebuild 22 Apr 2010 09:17:35 -0000 1.1
22 +++ ifc-11.1.056-r1.ebuild 23 Apr 2010 07:46:36 -0000 1.2
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2010 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $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 $
27 +# $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 $
28
29 EAPI="3"
30
31 @@ -30,7 +30,7 @@
32 RDEPEND="~virtual/libstdc++-3.3
33 amd64? ( app-emulation/emul-linux-x86-compat )"
34
35 -DESTINATION="${EPRFIX#/}/opt/intel/Compiler/${RELEASE}/${BUILD}"
36 +DESTINATION="opt/intel/Compiler/${RELEASE}/${BUILD}"
37
38 QA_TEXTRELS="${DESTINATION}/*"
39 QA_EXECSTACK="${DESTINATION}/*"
40 @@ -70,7 +70,7 @@
41 # extract the tag function from the original install
42 sed -n \
43 -e "s|find \$DESTINATION|find ${DESTINATION}|g" \
44 - -e "s|@\$DESTINATION|@${ROOT}${DESTINATION}|g" \
45 + -e "s|@\$DESTINATION|@${EROOT}${DESTINATION}|g" \
46 -e '/^UNTAG_CFG_FILES[[:space:]]*(/,/^}/p' \
47 pset/install_fc.sh > tag.sh || die
48 # fix world writeable files
49 @@ -89,7 +89,7 @@
50
51 keepdir /opt/intel/licenses
52 einfo "Copying files"
53 - dodir "${DESTINATION}"
54 + dodir "/${DESTINATION}"
55 cp -pPR \
56 ${DESTINATION}/* \
57 "${ED}"/${DESTINATION}/ \