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-sound/gmpc: gmpc-11.8.16-r1.ebuild ChangeLog
Date: Fri, 27 Jun 2014 16:17:16
Message-Id: 20140627161601.A24402004F@flycatcher.gentoo.org
1 angelos 14/06/27 16:16:01
2
3 Modified: ChangeLog
4 Added: gmpc-11.8.16-r1.ebuild
5 Log:
6 Fix missing playback icons (bug #509798), thanks to Philip L.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 84F20B43)
9
10 Revision Changes Path
11 1.91 media-sound/gmpc/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmpc/ChangeLog?rev=1.91&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmpc/ChangeLog?rev=1.91&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmpc/ChangeLog?r1=1.90&r2=1.91
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/gmpc/ChangeLog,v
20 retrieving revision 1.90
21 retrieving revision 1.91
22 diff -u -r1.90 -r1.91
23 --- ChangeLog 11 May 2013 17:56:43 -0000 1.90
24 +++ ChangeLog 27 Jun 2014 16:16:01 -0000 1.91
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-sound/gmpc
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/gmpc/ChangeLog,v 1.90 2013/05/11 17:56:43 angelos Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-sound/gmpc/ChangeLog,v 1.91 2014/06/27 16:16:01 angelos Exp $
31 +
32 +*gmpc-11.8.16-r1 (27 Jun 2014)
33 +
34 + 27 Jun 2014; Christoph Mende <angelos@g.o>
35 + +files/gmpc-11.8.16-icons.patch, +gmpc-11.8.16-r1.ebuild:
36 + Fix missing playback icons (bug #509798), thanks to Philip L.
37
38 11 May 2013; Christoph Mende <angelos@g.o> gmpc-11.8.16.ebuild:
39 Add gnome-doc-utils dependency (bug #469278), fix AM_CONFIG_HEADER failure
40
41
42
43 1.1 media-sound/gmpc/gmpc-11.8.16-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmpc/gmpc-11.8.16-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/gmpc/gmpc-11.8.16-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: gmpc-11.8.16-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-sound/gmpc/gmpc-11.8.16-r1.ebuild,v 1.1 2014/06/27 16:16:01 angelos Exp $
53
54 EAPI=4
55 VALA_MIN_API_VERSION=0.12
56
57 inherit autotools eutils gnome2-utils vala
58
59 DESCRIPTION="A GTK+2 client for the Music Player Daemon"
60 HOMEPAGE="http://gmpc.wikia.com/wiki/Gnome_Music_Player_Client"
61 SRC_URI="http://download.sarine.nl/Programs/gmpc/11.8/${P}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~x86"
66 IUSE="nls xspf +unique"
67
68 RDEPEND="dev-db/sqlite:3
69 >=dev-libs/glib-2.16:2
70 dev-libs/libxml2:2
71 >=media-libs/libmpd-11.8
72 net-libs/libsoup:2.4
73 >=x11-libs/gtk+-2.18:2
74 x11-libs/libX11
75 x11-themes/hicolor-icon-theme
76 unique? ( dev-libs/libunique:1 )
77 xspf? ( >=media-libs/libxspf-1.2 )"
78 DEPEND="${RDEPEND}
79 $(vala_depend)
80 app-text/gnome-doc-utils
81 >=dev-util/gob-2.0.17
82 virtual/pkgconfig
83 nls? ( dev-util/intltool
84 sys-devel/gettext )"
85
86 DOCS=( AUTHORS README )
87
88 src_prepare() {
89 epatch "${FILESDIR}"/${P}-underlinking.patch \
90 "${FILESDIR}"/${P}-icons.patch
91 sed -i -e "s:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:" configure.ac || die
92 eautoreconf
93 vala_src_prepare
94 }
95
96 src_configure() {
97 econf \
98 --disable-static \
99 --disable-libspiff \
100 --disable-appindicator \
101 --enable-mmkeys \
102 $(use_enable nls) \
103 $(use_enable unique) \
104 $(use_enable xspf libxspf)
105 }
106
107 pkg_preinst() { gnome2_icon_savelist; }
108 pkg_postinst() { gnome2_icon_cache_update; }
109 pkg_postrm() { gnome2_icon_cache_update; }