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: ChangeLog exaile-0.3.0_alpha2.ebuild
Date: Fri, 05 Jun 2009 17:47:03
Message-Id: E1MCdVM-0004cv-9V@stork.gentoo.org
1 ssuominen 09/06/05 17:47:00
2
3 Modified: ChangeLog
4 Added: exaile-0.3.0_alpha2.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.52 media-sound/exaile/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/exaile/ChangeLog?rev=1.52&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/exaile/ChangeLog?rev=1.52&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/exaile/ChangeLog?r1=1.51&r2=1.52
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/exaile/ChangeLog,v
19 retrieving revision 1.51
20 retrieving revision 1.52
21 diff -u -r1.51 -r1.52
22 --- ChangeLog 31 May 2009 13:24:07 -0000 1.51
23 +++ ChangeLog 5 Jun 2009 17:47:00 -0000 1.52
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.51 2009/05/31 13:24:07 nixnut Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/exaile/ChangeLog,v 1.52 2009/06/05 17:47:00 ssuominen Exp $
29 +
30 +*exaile-0.3.0_alpha2 (05 Jun 2009)
31 +
32 + 05 Jun 2009; Samuli Suominen <ssuominen@g.o>
33 + +exaile-0.3.0_alpha2.ebuild:
34 + Version bump.
35
36 31 May 2009; nixnut <nixnut@g.o> exaile-0.2.14.ebuild:
37 ppc stable #268837
38
39
40
41 1.1 media-sound/exaile/exaile-0.3.0_alpha2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/exaile/exaile-0.3.0_alpha2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/exaile/exaile-0.3.0_alpha2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: exaile-0.3.0_alpha2.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_alpha2.ebuild,v 1.1 2009/06/05 17:47:00 ssuominen Exp $
51
52 EAPI=2
53 inherit eutils fdo-mime multilib python
54
55 MY_PV=${PV/_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/${PN}_${MY_PV}.tar.gz"
60
61 LICENSE="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.10
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/epydoc )
78 nls? ( dev-util/intltool
79 sys-devel/gettext )"
80
81 S=${WORKDIR}/${PN}_${MY_PV}
82
83 src_compile() {
84 if use nls; then
85 emake translations || die "emake translations failed"
86 fi
87
88 if use doc; then
89 emake doc || die "emake doc failed"
90 fi
91 }
92
93 src_install() {
94 emake -j1 PREFIX="/usr" LIBDIR="/$(get_libdir)" \
95 DESTDIR="${D}" install || die "emake install failed"
96
97 dodoc crossfade_design FUTURE PLANNING player_planning \
98 README SEARCHING
99 }
100
101 pkg_postinst() {
102 python_mod_optimize /usr/$(get_libdir)/${PN}
103 fdo-mime_desktop_database_update
104 fdo-mime_mime_database_update
105 }
106
107 pkg_postrm() {
108 python_mod_cleanup /usr/$(get_libdir)/${PN}
109 fdo-mime_desktop_database_update
110 fdo-mime_mime_database_update
111 }