diff options
author | Justin Lecher <jlec@gentoo.org> | 2010-02-26 23:10:27 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2010-02-26 23:10:27 +0000 |
commit | c6e0b2bd2b0c8d4ce0b12fe4fd97dcab831f19fd (patch) | |
tree | ce313d7a8bdfa2ae0129d4720a58ffa72d79fa8a /sci-chemistry/sparky | |
parent | Add initial ebuild for pyclutter-gst, python bindings for clutter-gst (diff) | |
download | gentoo-2-c6e0b2bd2b0c8d4ce0b12fe4fd97dcab831f19fd.tar.gz gentoo-2-c6e0b2bd2b0c8d4ce0b12fe4fd97dcab831f19fd.tar.bz2 gentoo-2-c6e0b2bd2b0c8d4ce0b12fe4fd97dcab831f19fd.zip |
Another fight against the python.eclass won, python_mod_compile doesn't support full paths
(Portage version: 2.2_rc63/cvs/Linux x86_64)
Diffstat (limited to 'sci-chemistry/sparky')
-rw-r--r-- | sci-chemistry/sparky/ChangeLog | 5 | ||||
-rw-r--r-- | sci-chemistry/sparky/sparky-3.115.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/sci-chemistry/sparky/ChangeLog b/sci-chemistry/sparky/ChangeLog index 03cdad534a0d..9d81c4d773b9 100644 --- a/sci-chemistry/sparky/ChangeLog +++ b/sci-chemistry/sparky/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-chemistry/sparky # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/sparky/ChangeLog,v 1.14 2010/02/13 22:58:13 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/sparky/ChangeLog,v 1.15 2010/02/26 23:10:27 jlec Exp $ + + 26 Feb 2010; Justin Lecher (jlec) <jlec@gentoo.org> sparky-3.115.ebuild: + python_mod_compile arguments fixed *sparky-3.115 (13 Feb 2010) diff --git a/sci-chemistry/sparky/sparky-3.115.ebuild b/sci-chemistry/sparky/sparky-3.115.ebuild index 937a612f0c00..81f0445d433b 100644 --- a/sci-chemistry/sparky/sparky-3.115.ebuild +++ b/sci-chemistry/sparky/sparky-3.115.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/sci-chemistry/sparky/sparky-3.115.ebuild,v 1.1 2010/02/13 22:58:13 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/sparky/sparky-3.115.ebuild,v 1.2 2010/02/26 23:10:27 jlec Exp $ EAPI="3" @@ -109,9 +109,9 @@ src_install() { pkg_postinst() { python_need_rebuild - python_mod_optimize $(python_get_sitedir)/${PN} + python_mod_optimize ${PN} } pkg_postrm() { - python_mod_cleanup $(python_get_sitedir)/${PN} + python_mod_cleanup ${PN} } |