diff options
author | Ali Polatel <hawking@gentoo.org> | 2008-05-29 17:39:42 +0000 |
---|---|---|
committer | Ali Polatel <hawking@gentoo.org> | 2008-05-29 17:39:42 +0000 |
commit | 7c561ebce6bdf9292c058d9117d732de0344631e (patch) | |
tree | af58515bcf0265cc251fe0b3c1c3190fafbc6687 /net-im/pyicq-t | |
parent | python_mod_{cleanup,optimize} are ROOT aware. (diff) | |
download | gentoo-2-7c561ebce6bdf9292c058d9117d732de0344631e.tar.gz gentoo-2-7c561ebce6bdf9292c058d9117d732de0344631e.tar.bz2 gentoo-2-7c561ebce6bdf9292c058d9117d732de0344631e.zip |
python_mod_{cleanup,optimize} are ROOT aware.
(Portage version: 2.1.5.2)
Diffstat (limited to 'net-im/pyicq-t')
-rw-r--r-- | net-im/pyicq-t/ChangeLog | 6 | ||||
-rw-r--r-- | net-im/pyicq-t/pyicq-t-0.8a.ebuild | 7 | ||||
-rw-r--r-- | net-im/pyicq-t/pyicq-t-0.8b.ebuild | 7 |
3 files changed, 11 insertions, 9 deletions
diff --git a/net-im/pyicq-t/ChangeLog b/net-im/pyicq-t/ChangeLog index 556aba59a025..c925b71ab7f3 100644 --- a/net-im/pyicq-t/ChangeLog +++ b/net-im/pyicq-t/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-im/pyicq-t # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/pyicq-t/ChangeLog,v 1.5 2008/01/22 18:09:24 griffon26 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/pyicq-t/ChangeLog,v 1.6 2008/05/29 17:39:42 hawking Exp $ + + 29 May 2008; Ali Polatel <hawking@gentoo.org> pyicq-t-0.8a.ebuild, + pyicq-t-0.8b.ebuild: + python_mod_{cleanup,optimize} are ROOT aware. *pyicq-t-0.8b (21 Jan 2008) diff --git a/net-im/pyicq-t/pyicq-t-0.8a.ebuild b/net-im/pyicq-t/pyicq-t-0.8a.ebuild index a00af7c5c263..262afb62c264 100644 --- a/net-im/pyicq-t/pyicq-t-0.8a.ebuild +++ b/net-im/pyicq-t/pyicq-t-0.8a.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/net-im/pyicq-t/pyicq-t-0.8a.ebuild,v 1.3 2008/01/16 08:11:57 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/pyicq-t/pyicq-t-0.8a.ebuild,v 1.4 2008/05/29 17:39:42 hawking Exp $ NEED_PYTHON=2.3 @@ -55,13 +55,12 @@ src_install() { pkg_postinst() { python_version - python_mod_optimize ${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${PN} + python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages/${PN} elog "A sample configuration file has been installed in /etc/jabber/${PN}.xml." elog "Please edit it and the configuration of your Jabber server to match." } pkg_postrm() { - python_version - python_mod_cleanup ${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${PN} + python_mod_cleanup /usr/$(get_libdir)/python*/site-packages/${PN} } diff --git a/net-im/pyicq-t/pyicq-t-0.8b.ebuild b/net-im/pyicq-t/pyicq-t-0.8b.ebuild index cce0bdee7104..443cc2ba0e84 100644 --- a/net-im/pyicq-t/pyicq-t-0.8b.ebuild +++ b/net-im/pyicq-t/pyicq-t-0.8b.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/net-im/pyicq-t/pyicq-t-0.8b.ebuild,v 1.1 2008/01/22 18:09:24 griffon26 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/pyicq-t/pyicq-t-0.8b.ebuild,v 1.2 2008/05/29 17:39:42 hawking Exp $ NEED_PYTHON=2.3 @@ -53,13 +53,12 @@ src_install() { pkg_postinst() { python_version - python_mod_optimize "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${PN}" + python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages/${PN} elog "A sample configuration file has been installed in /etc/jabber/${PN}.xml." elog "Please edit it and the configuration of your Jabber server to match." } pkg_postrm() { - python_version - python_mod_cleanup "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${PN}" + python_mod_cleanup /usr/$(get_libdir)/python*/site-packages/${PN} } |