diff options
author | Zac Medico <zmedico@gentoo.org> | 2011-04-09 00:19:39 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2011-04-09 00:19:39 +0000 |
commit | a7966a628dc2572d5451319cc26ad1a2cd5ccd35 (patch) | |
tree | 63704eecb567d9cae5f1bb57109e5d02826ce566 /app-text | |
parent | Delete older ebuild. (diff) | |
download | gentoo-2-a7966a628dc2572d5451319cc26ad1a2cd5ccd35.tar.gz gentoo-2-a7966a628dc2572d5451319cc26ad1a2cd5ccd35.tar.bz2 gentoo-2-a7966a628dc2572d5451319cc26ad1a2cd5ccd35.zip |
Remove redundant $ROOT from python_mod_optimize/cleanup calls.
(Portage version: 2.2.0_alpha29_p9/cvs/Linux i686)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/calibre/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/calibre/calibre-0.7.52.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/app-text/calibre/ChangeLog b/app-text/calibre/ChangeLog index 415dc3d267bd..2d083a646bfb 100644 --- a/app-text/calibre/ChangeLog +++ b/app-text/calibre/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/calibre # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/ChangeLog,v 1.140 2011/04/08 01:35:06 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/ChangeLog,v 1.141 2011/04/09 00:19:39 zmedico Exp $ + + 09 Apr 2011; Zac Medico <zmedico@gentoo.org> calibre-0.7.52.ebuild: + Remove redundant $ROOT from python_mod_optimize/cleanup calls. 08 Apr 2011; Zac Medico <zmedico@gentoo.org> calibre-0.7.52.ebuild: Bug #362473 - Hardcode python2.7 as active version. diff --git a/app-text/calibre/calibre-0.7.52.ebuild b/app-text/calibre/calibre-0.7.52.ebuild index 2348a6030630..0f9ef2fbbad1 100644 --- a/app-text/calibre/calibre-0.7.52.ebuild +++ b/app-text/calibre/calibre-0.7.52.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/calibre-0.7.52.ebuild,v 1.2 2011/04/08 01:35:06 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/calibre-0.7.52.ebuild,v 1.3 2011/04/09 00:19:39 zmedico Exp $ EAPI=3 PYTHON_DEPEND=2:2.7 @@ -186,10 +186,10 @@ src_install() { pkg_postinst() { fdo-mime_desktop_database_update fdo-mime_mime_database_update - python_mod_optimize "$ROOT"usr/$(get_libdir)/$PN + python_mod_optimize /usr/$(get_libdir)/$PN bash-completion_pkg_postinst } pkg_postrm() { - python_mod_cleanup "$ROOT"usr/$(get_libdir)/$PN + python_mod_cleanup /usr/$(get_libdir)/$PN } |