diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-06-06 12:13:00 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-06-06 12:13:00 +0000 |
commit | a7a3695da002017b48d9a92bcf8ee79123bab9e2 (patch) | |
tree | c214b7fb7e48234d904a2dc5175cf1a093fc9aad /app-editors | |
parent | Move OpenGL calls after OpenGL initialization wrt #123762 by Yarda. (diff) | |
download | gentoo-2-a7a3695da002017b48d9a92bcf8ee79123bab9e2.tar.gz gentoo-2-a7a3695da002017b48d9a92bcf8ee79123bab9e2.tar.bz2 gentoo-2-a7a3695da002017b48d9a92bcf8ee79123bab9e2.zip |
Restore calls to python_mod_optimize() / python_mod_cleanup().
(Portage version: HEAD/cvs/Linux x86_64)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/scribes/ChangeLog | 6 | ||||
-rw-r--r-- | app-editors/scribes/scribes-0.3.3.3.ebuild | 14 |
2 files changed, 17 insertions, 3 deletions
diff --git a/app-editors/scribes/ChangeLog b/app-editors/scribes/ChangeLog index 3c08a155ac82..70d587e78d99 100644 --- a/app-editors/scribes/ChangeLog +++ b/app-editors/scribes/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-editors/scribes # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/scribes/ChangeLog,v 1.7 2010/06/06 11:37:55 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/scribes/ChangeLog,v 1.8 2010/06/06 12:13:00 arfrever Exp $ + + 06 Jun 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + scribes-0.3.3.3.ebuild: + Restore calls to python_mod_optimize() / python_mod_cleanup(). 06 Jun 2010; Samuli Suominen <ssuominen@gentoo.org> scribes-0.3.3.3.ebuild, +files/scribes-0.3.3.3-desktop_entry.patch: diff --git a/app-editors/scribes/scribes-0.3.3.3.ebuild b/app-editors/scribes/scribes-0.3.3.3.ebuild index d8d4efecdd24..37bdbad2a361 100644 --- a/app-editors/scribes/scribes-0.3.3.3.ebuild +++ b/app-editors/scribes/scribes-0.3.3.3.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/app-editors/scribes/scribes-0.3.3.3.ebuild,v 1.6 2010/06/06 11:37:55 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/scribes/scribes-0.3.3.3.ebuild,v 1.7 2010/06/06 12:13:00 arfrever Exp $ EAPI=3 @@ -51,5 +51,15 @@ src_prepare() { src_install() { gnome2_src_install - find "${ED}" -name "*.py[co]" -exec rm -f {} + + python_clean_installation_image +} + +pkg_postinst() { + gnome2_pkg_postinst + python_mod_optimize SCRIBES +} + +pkg_postrm() { + gnome2_pkg_postrm + python_mod_cleanup SCRIBES } |