Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
ssuominen 09/07/17 10:47:22
Modified: metadata.xml listen-0.6.2.ebuild
Log:
Tweak deps a bit.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Revision Changes Path
1.4 media-sound/listen/metadata.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/listen/metadata.xml?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/listen/metadata.xml?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/listen/metadata.xml?r1=1.3&r2=1.4
Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/listen/metadata.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- metadata.xml 14 May 2009 08:35:25 -0000 1.3
+++ metadata.xml 17 Jul 2009 10:47:22 -0000 1.4
@@ -33,5 +33,6 @@
</longdescription>
<use>
<flag name="libsexy">Enable libsexy support</flag>
+ <flag name="webkit">Enable webkit rendering engine instead of mozembed</flag>
</use>
</pkgmetadata>
1.4 media-sound/listen/listen-0.6.2.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/listen/listen-0.6.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/listen/listen-0.6.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/listen/listen-0.6.2.ebuild?r1=1.3&r2=1.4
Index: listen-0.6.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/listen/listen-0.6.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- listen-0.6.2.ebuild 17 Jul 2009 10:26:32 -0000 1.3
+++ listen-0.6.2.ebuild 17 Jul 2009 10:47:22 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/listen/listen-0.6.2.ebuild,v 1.3 2009/07/17 10:26:32 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/listen/listen-0.6.2.ebuild,v 1.4 2009/07/17 10:47:22 ssuominen Exp $
EAPI=2
inherit eutils multilib python
@@ -12,15 +12,16 @@
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE="hal ipod +libsexy musicbrainz"
+IUSE="hal ipod +libsexy musicbrainz +webkit"
RDEPEND=">=dev-lang/python-2.5
- >=dev-python/pygtk-2.6:2
+ >=dev-python/pygtk-2.8:2
|| ( dev-python/python-xlib dev-python/egg-python )
media-libs/mutagen
dev-python/gst-python:0.10
media-plugins/gst-plugins-meta:0.10
- || ( dev-python/pywebkitgtk dev-python/gtkmozembed-python )
+ webkit? ( dev-python/pywebkitgtk )
+ !webkit? ( dev-python/gtkmozembed-python )
dev-python/pyinotify
libsexy? ( dev-python/sexy-python )
ipod? ( media-libs/libgpod[python] )
@@ -40,7 +41,7 @@
}
src_compile() {
- if has_version dev-python/pywebkitgtk; then
+ if use webkit; then
CHECK_DEPENDS="0" emake || die "emake failed"
else
USE_GTKMOZEMBED="1" CHECK_DEPENDS="0" emake || die "emake failed"
|
|