diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-04-25 17:51:31 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-04-25 17:51:31 +0000 |
commit | d4ada71ef25d3e65e69bfeea25e1c952e712f874 (patch) | |
tree | e51022d754468bfbaec1fd7327c77a9b6caaab57 /sci-chemistry | |
parent | Add ~arm (diff) | |
download | gentoo-2-d4ada71ef25d3e65e69bfeea25e1c952e712f874.tar.gz gentoo-2-d4ada71ef25d3e65e69bfeea25e1c952e712f874.tar.bz2 gentoo-2-d4ada71ef25d3e65e69bfeea25e1c952e712f874.zip |
Fix calls to python_mod_optimize() and python_mod_cleanup().
(Portage version: HEAD/cvs/Linux x86_64)
Diffstat (limited to 'sci-chemistry')
-rw-r--r-- | sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild b/sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild index 3fa543dbde54..879e54dc36f2 100644 --- a/sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild +++ b/sci-chemistry/apbs/apbs-1.2.1b-r2.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/apbs/apbs-1.2.1b-r2.ebuild,v 1.3 2010/04/25 09:24:23 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/apbs-1.2.1b-r2.ebuild,v 1.4 2010/04/25 17:51:31 arfrever Exp $ EAPI="3" @@ -129,9 +129,9 @@ src_install() { } pkg_postinst() { - python_mod_optimize ${EPREFIX}/usr/$(python_get_sitedir)/${PN} + python_mod_optimize ${PN} } pkg_postrm() { - python_mod_cleanup ${EPREFIX}/usr/$(python_get_sitedir)/${PN} + python_mod_cleanup ${PN} } |