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-libs/lastfmlib: lastfmlib-0.4.0.ebuild ChangeLog
Date: Tue, 05 Jan 2010 14:46:00
Message-Id: E1NSAfV-0005Pg-80@stork.gentoo.org
1 ssuominen 10/01/05 14:45:57
2
3 Modified: ChangeLog
4 Added: lastfmlib-0.4.0.ebuild
5 Log:
6 Version bump wrt #299686, thanks to BT for reporting.
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.8 media-libs/lastfmlib/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/lastfmlib/ChangeLog?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/lastfmlib/ChangeLog?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/lastfmlib/ChangeLog?r1=1.7&r2=1.8
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/lastfmlib/ChangeLog,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- ChangeLog 3 Nov 2009 19:32:35 -0000 1.7
23 +++ ChangeLog 5 Jan 2010 14:45:56 -0000 1.8
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-libs/lastfmlib
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/lastfmlib/ChangeLog,v 1.7 2009/11/03 19:32:35 fauli Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/lastfmlib/ChangeLog,v 1.8 2010/01/05 14:45:56 ssuominen Exp $
30 +
31 +*lastfmlib-0.4.0 (05 Jan 2010)
32 +
33 + 05 Jan 2010; Samuli Suominen <ssuominen@g.o>
34 + +lastfmlib-0.4.0.ebuild:
35 + Version bump wrt #299686, thanks to BT for reporting.
36
37 03 Nov 2009; Christian Faulhammer <fauli@g.o>
38 lastfmlib-0.3.0.ebuild:
39
40
41
42 1.1 media-libs/lastfmlib/lastfmlib-0.4.0.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/lastfmlib/lastfmlib-0.4.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/lastfmlib/lastfmlib-0.4.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: lastfmlib-0.4.0.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-libs/lastfmlib/lastfmlib-0.4.0.ebuild,v 1.1 2010/01/05 14:45:56 ssuominen Exp $
52
53 EAPI=2
54
55 DESCRIPTION="C++ library to scrobble tracks on Last.fm"
56 HOMEPAGE="http://code.google.com/p/lastfmlib/"
57 SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="debug syslog"
63
64 RDEPEND="net-misc/curl"
65 DEPEND="${RDEPEND}
66 dev-util/pkgconfig"
67
68 src_configure() {
69 econf \
70 --disable-dependency-tracking \
71 --disable-static \
72 $(use_enable debug) \
73 $(use_enable syslog logging) \
74 --disable-unittests
75 }
76
77 src_install() {
78 emake DESTDIR="${D}" install || die
79 dodoc AUTHORS ChangeLog
80 find "${D}"/usr -name '*.la' -delete
81 }