diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2008-01-11 20:15:55 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2008-01-11 20:15:55 +0000 |
commit | ce3499f5af1fb36df1bc970165665f413ca99c49 (patch) | |
tree | e3ef46ee75db7b18c8d3c2ebef768f62d8818ae6 /sci-visualization | |
parent | Version bump. (diff) | |
download | gentoo-2-ce3499f5af1fb36df1bc970165665f413ca99c49.tar.gz gentoo-2-ce3499f5af1fb36df1bc970165665f413ca99c49.tar.bz2 gentoo-2-ce3499f5af1fb36df1bc970165665f413ca99c49.zip |
Fix ${ROOT} issues
(Portage version: 2.1.4_rc14)
Diffstat (limited to 'sci-visualization')
-rw-r--r-- | sci-visualization/pyxplot/pyxplot-0.6.3.1.ebuild | 6 | ||||
-rw-r--r-- | sci-visualization/pyxplot/pyxplot-0.6.3.ebuild | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sci-visualization/pyxplot/pyxplot-0.6.3.1.ebuild b/sci-visualization/pyxplot/pyxplot-0.6.3.1.ebuild index 0b1cb55ba47b..aac75658086c 100644 --- a/sci-visualization/pyxplot/pyxplot-0.6.3.1.ebuild +++ b/sci-visualization/pyxplot/pyxplot-0.6.3.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/pyxplot/pyxplot-0.6.3.1.ebuild,v 1.2 2008/01/11 19:42:43 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/pyxplot/pyxplot-0.6.3.1.ebuild,v 1.3 2008/01/11 20:15:55 cardoe Exp $ inherit eutils python @@ -71,9 +71,9 @@ src_install() { } pkg_postinst() { - python_mod_optimize /usr/share/${PN} + python_mod_optimize "${ROOT}/usr/share/${PN}" } pkg_postrm() { - python_mod_cleanup /usr/share/${PN} + python_mod_cleanup "${ROOT}/usr/share/${PN}" } diff --git a/sci-visualization/pyxplot/pyxplot-0.6.3.ebuild b/sci-visualization/pyxplot/pyxplot-0.6.3.ebuild index ac7cb221a77c..f21868276a6b 100644 --- a/sci-visualization/pyxplot/pyxplot-0.6.3.ebuild +++ b/sci-visualization/pyxplot/pyxplot-0.6.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/pyxplot/pyxplot-0.6.3.ebuild,v 1.3 2008/01/11 19:42:43 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/pyxplot/pyxplot-0.6.3.ebuild,v 1.4 2008/01/11 20:15:55 cardoe Exp $ inherit eutils python @@ -71,9 +71,9 @@ src_install() { } pkg_postinst() { - python_mod_optimize /usr/share/${PN} + python_mod_optimize "${ROOT}/usr/share/${PN}" } pkg_postrm() { - python_mod_cleanup /usr/share/${PN} + python_mod_cleanup "${ROOT}/usr/share/${PN}" } |