Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/exaile: exaile-0.3.0_alpha3.ebuild ChangeLog
Date: Sun, 02 Aug 2009 20:15:47
Message-Id: E1MXhT6-0005Ol-6K@stork.gentoo.org
1 ssuominen 09/08/02 20:15:44
2
3 Modified: ChangeLog
4 Added: exaile-0.3.0_alpha3.ebuild
5 Log:
6 Version bump wrt #280061. Thanks to Peter Henriksson for reporting.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.56 media-sound/exaile/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/exaile/ChangeLog?rev=1.56&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/exaile/ChangeLog?rev=1.56&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/exaile/ChangeLog?r1=1.55&r2=1.56
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/exaile/ChangeLog,v
19 retrieving revision 1.55
20 retrieving revision 1.56
21 diff -u -r1.55 -r1.56
22 --- ChangeLog 27 Jul 2009 08:22:31 -0000 1.55
23 +++ ChangeLog 2 Aug 2009 20:15:44 -0000 1.56
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-sound/exaile
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/exaile/ChangeLog,v 1.55 2009/07/27 08:22:31 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/exaile/ChangeLog,v 1.56 2009/08/02 20:15:44 ssuominen Exp $
29 +
30 +*exaile-0.3.0_alpha3 (02 Aug 2009)
31 +
32 + 02 Aug 2009; Samuli Suominen <ssuominen@g.o>
33 + +exaile-0.3.0_alpha3.ebuild, +files/exaile-0.3.0_alpha3-Makefile.patch:
34 + Version bump wrt #280061. Thanks to Peter Henriksson for reporting.
35
36 27 Jul 2009; Samuli Suominen <ssuominen@g.o>
37 exaile-0.3.0_alpha2.ebuild:
38
39
40
41 1.1 media-sound/exaile/exaile-0.3.0_alpha3.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/exaile/exaile-0.3.0_alpha3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/exaile/exaile-0.3.0_alpha3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: exaile-0.3.0_alpha3.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-sound/exaile/exaile-0.3.0_alpha3.ebuild,v 1.1 2009/08/02 20:15:44 ssuominen Exp $
51
52 EAPI=2
53 inherit eutils fdo-mime multilib python
54
55 MY_P=${P/_alpha/a}
56
57 DESCRIPTION="a media player aiming to be similar to AmaroK, but for GTK+"
58 HOMEPAGE="http://www.exaile.org"
59 SRC_URI="http://www.exaile.org/files/${MY_P}.tar.gz"
60
61 LICENSE="GPL-2 GPL-3"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
64 IUSE="cddb doc hal libnotify +libsexy nls"
65
66 RDEPEND="dev-python/dbus-python
67 >=media-libs/mutagen-1.10
68 >=dev-python/pygtk-2.12
69 >=dev-lang/python-2.5[sqlite]
70 dev-python/gst-python:0.10
71 media-libs/gst-plugins-good:0.10
72 media-plugins/gst-plugins-meta:0.10
73 libnotify? ( dev-python/notify-python )
74 libsexy? ( dev-python/sexy-python )
75 hal? ( sys-apps/hal )
76 cddb? ( dev-python/cddb-py )"
77 DEPEND="doc? ( dev-python/sphinx )
78 nls? ( dev-util/intltool
79 sys-devel/gettext )"
80
81 S=${WORKDIR}/${PN}
82
83 src_prepare() {
84 epatch "${FILESDIR}"/${P}-Makefile.patch
85 }
86
87 src_compile() {
88 if use nls; then
89 emake translations || die "emake translations failed"
90 fi
91 if use doc; then
92 cd doc
93 emake html || die "emake html failed"
94 fi
95 }
96
97 src_install() {
98 emake PREFIX="/usr" LIBINSTALLDIR="/$(get_libdir)" DESTDIR="${D}" \
99 install || die "emake install failed"
100
101 dodoc crossfade_design FUTURE PLANNING player_planning \
102 README SEARCHING || die "dodoc failed"
103
104 if use doc; then
105 dohtml -r doc/_build/html || die "dohtml failed"
106 fi
107 }
108
109 pkg_postinst() {
110 python_mod_optimize /usr/$(get_libdir)/${PN}
111 fdo-mime_desktop_database_update
112 fdo-mime_mime_database_update
113 }
114
115 pkg_postrm() {
116 python_mod_cleanup /usr/$(get_libdir)/${PN}
117 fdo-mime_desktop_database_update
118 fdo-mime_mime_database_update
119 }