diff options
-rw-r--r-- | app-dicts/opendict/ChangeLog | 5 | ||||
-rw-r--r-- | app-dicts/opendict/opendict-0.6.1.ebuild | 7 |
2 files changed, 7 insertions, 5 deletions
diff --git a/app-dicts/opendict/ChangeLog b/app-dicts/opendict/ChangeLog index ea328d0a6659..5eb24aa4c320 100644 --- a/app-dicts/opendict/ChangeLog +++ b/app-dicts/opendict/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-dicts/opendict # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/opendict/ChangeLog,v 1.15 2008/01/28 16:01:45 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/opendict/ChangeLog,v 1.16 2008/05/29 15:33:19 hawking Exp $ + + 29 May 2008; Ali Polatel <hawking@gentoo.org> opendict-0.6.1.ebuild: + python_mod_optimize is ROOT aware. Fixed python_mod_cleanup. 28 Jan 2008; Raúl Porcel <armin76@gentoo.org> metadata.xml: Replace wxwindows with wxwidgets in metadata diff --git a/app-dicts/opendict/opendict-0.6.1.ebuild b/app-dicts/opendict/opendict-0.6.1.ebuild index 78e8df0d0a4e..1d5637ea5cff 100644 --- a/app-dicts/opendict/opendict-0.6.1.ebuild +++ b/app-dicts/opendict/opendict-0.6.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/app-dicts/opendict/opendict-0.6.1.ebuild,v 1.6 2008/01/05 16:42:05 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/opendict/opendict-0.6.1.ebuild,v 1.7 2008/05/29 15:33:19 hawking Exp $ inherit eutils python gnome2 @@ -72,7 +72,7 @@ src_install() { pkg_postinst() { python_mod_optimize \ - "${ROOT%/}"/usr/$(get_libdir)/python${PYVER}/site-packages/opendict + /usr/$(get_libdir)/python${PYVER}/site-packages/opendict gnome2_icon_cache_update elog "If you want system-wide plugins, unzip them into" @@ -81,7 +81,6 @@ pkg_postinst() { } pkg_postrm() { - python_mod_cleanup \ - "${ROOT%/}"/usr/$(get_libdir)/python${PYVER}/site-packages/opendict + python_mod_cleanup gnome2_icon_cache_update } |