Gentoo Archives: gentoo-commits

From: "Bernard Cafarelli (voyageur)" <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnustep-apps/cdplayer: ChangeLog cdplayer-0.6.0.ebuild
Date: Fri, 07 Feb 2014 18:24:36
Message-Id: 20140207182431.8D6792004C@flycatcher.gentoo.org
1 voyageur 14/02/07 18:24:31
2
3 Modified: ChangeLog
4 Added: cdplayer-0.6.0.ebuild
5 Log:
6 Version bump, new homepage, updated dependencies
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key C74525F2)
9
10 Revision Changes Path
11 1.4 gnustep-apps/cdplayer/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-apps/cdplayer/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-apps/cdplayer/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-apps/cdplayer/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/gnustep-apps/cdplayer/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 28 Jun 2011 15:40:38 -0000 1.3
24 +++ ChangeLog 7 Feb 2014 18:24:31 -0000 1.4
25 @@ -1,6 +1,11 @@
26 # ChangeLog for gnustep-apps/cdplayer
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/cdplayer/ChangeLog,v 1.3 2011/06/28 15:40:38 voyageur Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/cdplayer/ChangeLog,v 1.4 2014/02/07 18:24:31 voyageur Exp $
31 +
32 +*cdplayer-0.6.0 (07 Feb 2014)
33 +
34 + 07 Feb 2014; Bernard Cafarelli <voyageur@g.o> +cdplayer-0.6.0.ebuild:
35 + Version bump, new homepage, updated dependencies
36
37 *cdplayer-0.5.1 (28 Jun 2011)
38
39
40
41
42 1.1 gnustep-apps/cdplayer/cdplayer-0.6.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-apps/cdplayer/cdplayer-0.6.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-apps/cdplayer/cdplayer-0.6.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: cdplayer-0.6.0.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/gnustep-apps/cdplayer/cdplayer-0.6.0.ebuild,v 1.1 2014/02/07 18:24:31 voyageur Exp $
52
53 EAPI=5
54 inherit gnustep-2
55
56 DESCRIPTION="Small CD Audio Player for GNUstep"
57 HOMEPAGE="https://github.com/schik/cdplayer"
58 SRC_URI="https://github.com/schik/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
59
60 KEYWORDS="~amd64 ~x86"
61 LICENSE="GPL-2"
62 SLOT="0"
63
64 IUSE="dbus"
65 DEPEND="dev-libs/libcdio
66 dev-libs/libcdio-paranoia
67 gnustep-apps/cynthiune
68 dbus? ( gnustep-libs/dbuskit )"
69 RDEPEND="${DEPEND}
70 !gnustep-libs/cddb"
71
72 src_prepare() {
73 sed -e "s#cdda.h#paranoia/cdda.h#" \
74 -e "s#paranoia.h#paranoia/paranoia.h#" \
75 -i AudioCD/AudioCD.h || die "AudioCD.h sed failed"
76 }
77
78 src_compile() {
79 local myconf=""
80 use dbus || myconf="${myconf} notifications=no"
81
82 egnustep_env
83 egnustep_make ${myconf}
84 }