diff options
author | Kacper Kowalik <xarthisius@gentoo.org> | 2011-07-31 07:52:56 +0000 |
---|---|---|
committer | Kacper Kowalik <xarthisius@gentoo.org> | 2011-07-31 07:52:56 +0000 |
commit | c865b01e342955984872fe50a0d14934533581c1 (patch) | |
tree | 5ca0370c20e6d618383b283b445fad728970845c /dev-lang/ekopath | |
parent | Depend on texlive-latex as we build platex, bug #377007 by fkhp (diff) | |
download | gentoo-2-c865b01e342955984872fe50a0d14934533581c1.tar.gz gentoo-2-c865b01e342955984872fe50a0d14934533581c1.tar.bz2 gentoo-2-c865b01e342955984872fe50a0d14934533581c1.zip |
Use PN rather than P in path, in order not to break things relying on compiler location on every update. Fixes bug 377113 by Diego Elio Pettenò <flameeyes@gentoo.org>
(Portage version: 2.2.0_alpha49/cvs/Linux x86_64)
Diffstat (limited to 'dev-lang/ekopath')
-rw-r--r-- | dev-lang/ekopath/ChangeLog | 10 | ||||
-rw-r--r-- | dev-lang/ekopath/ekopath-4.0.10_pre20110717-r1.ebuild (renamed from dev-lang/ekopath/ekopath-4.0.10_pre20110717.ebuild) | 14 |
2 files changed, 16 insertions, 8 deletions
diff --git a/dev-lang/ekopath/ChangeLog b/dev-lang/ekopath/ChangeLog index 8b157362dd1d..fa1d2248b25e 100644 --- a/dev-lang/ekopath/ChangeLog +++ b/dev-lang/ekopath/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for dev-lang/ekopath # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ChangeLog,v 1.2 2011/07/27 09:34:06 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ChangeLog,v 1.3 2011/07/31 07:52:56 xarthisius Exp $ + +*ekopath-4.0.10_pre20110717-r1 (31 Jul 2011) + + 31 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> + -ekopath-4.0.10_pre20110717.ebuild, +ekopath-4.0.10_pre20110717-r1.ebuild: + Use PN rather than P in path, in order not to break things relying on + compiler location on every update. Fixes bug 377113 by Diego Elio Pettenò + <flameeyes@gentoo.org> 27 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> ekopath-4.0.10_pre20110717.ebuild: diff --git a/dev-lang/ekopath/ekopath-4.0.10_pre20110717.ebuild b/dev-lang/ekopath/ekopath-4.0.10_pre20110717-r1.ebuild index c771ebc93552..08a5b407b82c 100644 --- a/dev-lang/ekopath/ekopath-4.0.10_pre20110717.ebuild +++ b/dev-lang/ekopath/ekopath-4.0.10_pre20110717-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ekopath-4.0.10_pre20110717.ebuild,v 1.2 2011/07/27 09:34:06 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ekopath-4.0.10_pre20110717-r1.ebuild,v 1.1 2011/07/31 07:52:56 xarthisius Exp $ EAPI=4 @@ -25,7 +25,7 @@ RESTRICT="mirror" S=${WORKDIR} -PATHSCALE_SDP_DIR=/opt/${P} +PATHSCALE_SDP_DIR=/opt/${PN} QA_PREBUILT=" ${PATHSCALE_SDP_DIR}/lib/${MY_PV}/x8664/* @@ -51,16 +51,16 @@ src_unpack() { src_prepare() { cat > "99${PN}" <<-EOF - PATH=/opt/${P}/bin - ROOTPATH=/opt/${P}/bin - LDPATH=/opt/${P}/lib:/opt/${P}/lib/${MY_PV}/x8664/64 + PATH=/opt/${PN}/bin + ROOTPATH=/opt/${PN}/bin + LDPATH=/opt/${PN}/lib:/opt/${PN}/lib/${MY_PV}/x8664/64 EOF } src_install() { ./${P}.run \ - --prefix "${D}/opt/${P}" \ + --prefix "${D}/opt/${PN}" \ --mode unattended || die - rm -rf "${D}"/opt/${P}/uninstall || die + rm -rf "${D}"/opt/${PN}/uninstall || die doenvd "99${PN}" } |