Gentoo Archives: gentoo-commits

From: "Christoph Mende (angelos)" <angelos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-plugins/gmpc-lastfm: ChangeLog gmpc-lastfm-0.16.1.ebuild gmpc-lastfm-0.16.0.ebuild
Date: Thu, 25 Sep 2008 12:04:04
Message-Id: E1KipZh-0004us-NO@stork.gentoo.org
1 angelos 08/09/25 12:04:01
2
3 Modified: ChangeLog
4 Added: gmpc-lastfm-0.16.1.ebuild
5 Removed: gmpc-lastfm-0.16.0.ebuild
6 Log:
7 Bug fix bump
8 (Portage version: 2.2_rc9/cvs/Linux 2.6.27-rc6 x86_64)
9
10 Revision Changes Path
11 1.15 media-plugins/gmpc-lastfm/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/gmpc-lastfm/ChangeLog?rev=1.15&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/gmpc-lastfm/ChangeLog?rev=1.15&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/gmpc-lastfm/ChangeLog?r1=1.14&r2=1.15
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-plugins/gmpc-lastfm/ChangeLog,v
20 retrieving revision 1.14
21 retrieving revision 1.15
22 diff -u -r1.14 -r1.15
23 --- ChangeLog 24 Sep 2008 19:02:20 -0000 1.14
24 +++ ChangeLog 25 Sep 2008 12:04:01 -0000 1.15
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-plugins/gmpc-lastfm
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/gmpc-lastfm/ChangeLog,v 1.14 2008/09/24 19:02:20 angelos Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/gmpc-lastfm/ChangeLog,v 1.15 2008/09/25 12:04:01 angelos Exp $
30 +
31 +*gmpc-lastfm-0.16.1 (25 Sep 2008)
32 +
33 + 25 Sep 2008; Christoph Mende <angelos@g.o>
34 + -gmpc-lastfm-0.16.0.ebuild, +gmpc-lastfm-0.16.1.ebuild:
35 + Bug fix bump
36
37 *gmpc-lastfm-0.16.0 (24 Sep 2008)
38
39
40
41
42 1.1 media-plugins/gmpc-lastfm/gmpc-lastfm-0.16.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/gmpc-lastfm/gmpc-lastfm-0.16.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/gmpc-lastfm/gmpc-lastfm-0.16.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gmpc-lastfm-0.16.1.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-plugins/gmpc-lastfm/gmpc-lastfm-0.16.1.ebuild,v 1.1 2008/09/25 12:04:01 angelos Exp $
52
53 inherit autotools eutils multilib
54
55 MY_PN="gmpc-last.fm"
56 MY_P=${MY_PN}-${PV}
57
58 DESCRIPTION="This plugin fetches artist art from last.fm"
59 HOMEPAGE="http://gmpcwiki.sarine.nl/index.php/Last.fm"
60 SRC_URI="http://download.sarine.nl/Programs/gmpc/${PV}/${MY_P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
65 IUSE=""
66
67 RDEPEND=">=media-sound/gmpc-${PV}
68 dev-libs/libxml2"
69 DEPEND="${RDEPEND}
70 dev-util/pkgconfig"
71
72 S="${WORKDIR}/${MY_P}"
73
74 pkg_setup() {
75 if ! built_with_use =x11-libs/gtk+-2* jpeg ; then
76 echo
77 eerror "x11-libs/gtk+-2 needs to be built with \"jpeg\" USE flag"
78 die "x11-libs/gtk+-2 needs to be built with \"jpeg\" USE flag"
79 fi
80 }
81
82 src_unpack() {
83 unpack ${A}
84 cd "${S}"
85
86 sed -i "/^libdir/s:/lib/:/$(get_libdir)/:" src/Makefile.am
87 eautoreconf
88 }
89
90 src_install () {
91 emake DESTDIR="${D}" install || die
92 }