diff options
author | Ali Polatel <hawking@gentoo.org> | 2008-05-29 17:28:55 +0000 |
---|---|---|
committer | Ali Polatel <hawking@gentoo.org> | 2008-05-29 17:28:55 +0000 |
commit | 95c8b600a4b67065b04dc9d7cd8ac01055cdbbe8 (patch) | |
tree | 7621c48bba5b633213d7deb7f1bbaf810c6ffbd9 | |
parent | python_mod_optimize is ROOT aware. (diff) | |
download | historical-95c8b600a4b67065b04dc9d7cd8ac01055cdbbe8.tar.gz historical-95c8b600a4b67065b04dc9d7cd8ac01055cdbbe8.tar.bz2 historical-95c8b600a4b67065b04dc9d7cd8ac01055cdbbe8.zip |
python_mod_{cleanup,optimize} is ROOT aware.
Package-Manager: portage-2.1.5.2
-rw-r--r-- | media-video/griffith/ChangeLog | 5 | ||||
-rw-r--r-- | media-video/griffith/griffith-0.9.5.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/media-video/griffith/ChangeLog b/media-video/griffith/ChangeLog index 19406f73fbfa..3b27620dc486 100644 --- a/media-video/griffith/ChangeLog +++ b/media-video/griffith/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-video/griffith # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/griffith/ChangeLog,v 1.21 2008/05/04 14:11:19 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/griffith/ChangeLog,v 1.22 2008/05/29 17:28:55 hawking Exp $ + + 29 May 2008; Ali Polatel <hawking@gentoo.org> griffith-0.9.5.ebuild: + python_mod_{cleanup,optimize} is ROOT aware. 04 May 2008; Samuli Suominen <drac@gentoo.org> griffith-0.9.5.ebuild: Use berlios mirrors:// wrt #218657 diff --git a/media-video/griffith/griffith-0.9.5.ebuild b/media-video/griffith/griffith-0.9.5.ebuild index e992d679fb9b..b28c77ac114b 100644 --- a/media-video/griffith/griffith-0.9.5.ebuild +++ b/media-video/griffith/griffith-0.9.5.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/media-video/griffith/griffith-0.9.5.ebuild,v 1.7 2008/05/04 14:11:19 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/griffith/griffith-0.9.5.ebuild,v 1.8 2008/05/29 17:28:55 hawking Exp $ inherit python @@ -58,9 +58,9 @@ src_install() { } pkg_postinst() { - python_mod_optimize "${ROOT}usr/share/${PN}/lib" + python_mod_optimize /usr/share/${PN}/lib } pkg_postrm() { - python_mod_cleanup "${ROOT}usr/share/${PN}/lib" + python_mod_cleanup /usr/share/${PN}/lib } |