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/pragha: pragha-1.1.2.ebuild ChangeLog
Date: Mon, 25 Feb 2013 09:50:00
Message-Id: 20130225094954.8D7BD2171D@flycatcher.gentoo.org
1 ssuominen 13/02/25 09:49:54
2
3 Modified: ChangeLog
4 Added: pragha-1.1.2.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
9
10 Revision Changes Path
11 1.26 media-sound/pragha/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/pragha/ChangeLog?rev=1.26&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/pragha/ChangeLog?rev=1.26&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/pragha/ChangeLog?r1=1.25&r2=1.26
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/pragha/ChangeLog,v
20 retrieving revision 1.25
21 retrieving revision 1.26
22 diff -u -r1.25 -r1.26
23 --- ChangeLog 15 Jan 2013 19:23:19 -0000 1.25
24 +++ ChangeLog 25 Feb 2013 09:49:54 -0000 1.26
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-sound/pragha
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/pragha/ChangeLog,v 1.25 2013/01/15 19:23:19 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/pragha/ChangeLog,v 1.26 2013/02/25 09:49:54 ssuominen Exp $
30 +
31 +*pragha-1.1.2 (25 Feb 2013)
32 +
33 + 25 Feb 2013; Samuli Suominen <ssuominen@g.o> +pragha-1.1.2.ebuild:
34 + Version bump.
35
36 15 Jan 2013; Samuli Suominen <ssuominen@g.o> pragha-1.1.1.ebuild:
37 Fix compability with dev-libs/libcdio-paranoia.
38
39
40
41 1.1 media-sound/pragha/pragha-1.1.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/pragha/pragha-1.1.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/pragha/pragha-1.1.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pragha-1.1.2.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-sound/pragha/pragha-1.1.2.ebuild,v 1.1 2013/02/25 09:49:54 ssuominen Exp $
51
52 EAPI=5
53 inherit flag-o-matic xfconf
54
55 DESCRIPTION="A lightweight music player (with support for the Xfce desktop environment)"
56 HOMEPAGE="http://pragha.wikispaces.com/ http://github.com/matiasdelellis/pragha"
57 SRC_URI="http://dissonance.googlecode.com/files/${P}.tar.bz2"
58
59 LICENSE="GPL-3"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="debug +glyr lastfm +playlist"
63
64 COMMON_DEPEND="dev-db/sqlite:3
65 >=dev-libs/dbus-glib-0.100
66 >=dev-libs/glib-2.28
67 >=dev-libs/keybinder-0.2.2:0
68 dev-libs/libcdio-paranoia
69 media-libs/gst-plugins-base:0.10
70 >=media-libs/libcddb-1.3.2
71 >=media-libs/taglib-1.7.1
72 >=x11-libs/gtk+-2.24:2
73 x11-libs/libX11
74 >=x11-libs/libnotify-0.7
75 >=xfce-base/libxfce4ui-4.10
76 playlist? ( >=dev-libs/totem-pl-parser-2.26 )
77 glyr? ( >=media-libs/glyr-1.0.0 )
78 lastfm? ( >=media-libs/libclastfm-0.5 )"
79 RDEPEND="${COMMON_DEPEND}
80 media-plugins/gst-plugins-meta:0.10"
81 DEPEND="${COMMON_DEPEND}
82 dev-util/intltool
83 sys-devel/gettext
84 virtual/pkgconfig"
85
86 pkg_setup() {
87 XFCONF=(
88 --docdir="${EPREFIX}"/usr/share/doc/${PF}
89 $(use_enable debug)
90 $(use_enable lastfm libclastfm)
91 $(use_enable glyr libglyr)
92 $(use_enable playlist totem-plparser)
93 )
94 }
95
96 src_prepare() {
97 sed -i -e '/CFLAGS/s:-g -ggdb -O0::' configure || die
98 xfconf_src_prepare
99 }
100
101 src_configure() {
102 # This version should be fixed for libcdio-paranoia, but the ./configure
103 # check never adds this required -D flag
104 # http://github.com/matiasdelellis/pragha/issues/46
105 append-cppflags -DHAVE_PARANOIA_NEW_INCLUDES
106 xfconf_src_configure
107 }