summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-05-28 19:16:45 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-05-28 19:16:45 +0000
commit05adb89e40af56fec5685ad56c98ce3e5c295e32 (patch)
tree0dacc494eb3d72417e2506c5ba2c698e946f1f24 /media-sound/christine
parentAdjust python support to force python2, bug 317015. (diff)
downloadgentoo-2-05adb89e40af56fec5685ad56c98ce3e5c295e32.tar.gz
gentoo-2-05adb89e40af56fec5685ad56c98ce3e5c295e32.tar.bz2
gentoo-2-05adb89e40af56fec5685ad56c98ce3e5c295e32.zip
Delete call to deprecated python_version().
(Portage version: HEAD/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/christine')
-rw-r--r--media-sound/christine/ChangeLog8
-rw-r--r--media-sound/christine/christine-0.4.0.ebuild11
2 files changed, 11 insertions, 8 deletions
diff --git a/media-sound/christine/ChangeLog b/media-sound/christine/ChangeLog
index 099d883c71c9..8ed0c77f25de 100644
--- a/media-sound/christine/ChangeLog
+++ b/media-sound/christine/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-sound/christine
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/christine/ChangeLog,v 1.5 2009/09/08 11:43:25 ssuominen Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/christine/ChangeLog,v 1.6 2010/05/28 19:16:45 arfrever Exp $
+
+ 28 May 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ christine-0.4.0.ebuild:
+ Delete call to deprecated python_version().
08 Sep 2009; Samuli Suominen <ssuominen@gentoo.org>
christine-0.4.0.ebuild:
diff --git a/media-sound/christine/christine-0.4.0.ebuild b/media-sound/christine/christine-0.4.0.ebuild
index be1db92c5ef2..001a454fba08 100644
--- a/media-sound/christine/christine-0.4.0.ebuild
+++ b/media-sound/christine/christine-0.4.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/christine/christine-0.4.0.ebuild,v 1.2 2009/09/08 11:43:25 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/christine/christine-0.4.0.ebuild,v 1.3 2010/05/28 19:16:45 arfrever Exp $
EAPI=2
-inherit autotools eutils multilib python
+inherit autotools eutils python
DESCRIPTION="Python, GTK+ and GStreamer based media player (audio and video)"
HOMEPAGE="http://christine-project.org"
@@ -48,10 +48,9 @@ src_install() {
}
pkg_postinst() {
- python_version
- python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages/lib${PN}
+ python_mod_optimize $(python_get_sitedir)/lib${PN}
}
pkg_postrm() {
- python_mod_cleanup
+ python_mod_cleanup $(python_get_sitedir)/lib${PN}
}