Gentoo Archives: gentoo-commits

From: "Ben de Groot (yngwin)" <yngwin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/ncmpcpp: metadata.xml ChangeLog ncmpcpp-0.4.1.ebuild
Date: Wed, 07 Oct 2009 10:18:34
Message-Id: E1MvTbL-0006wc-QH@stork.gentoo.org
1 yngwin 09/10/07 10:18:31
2
3 Modified: metadata.xml ChangeLog
4 Added: ncmpcpp-0.4.1.ebuild
5 Log:
6 Version bump, adding visualizer and fftw useflags, bug 285890
7 (Portage version: 2.2_rc44/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 media-sound/ncmpcpp/metadata.xml
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/ncmpcpp/metadata.xml?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/ncmpcpp/metadata.xml?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/ncmpcpp/metadata.xml?r1=1.3&r2=1.4
15
16 Index: metadata.xml
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/ncmpcpp/metadata.xml,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- metadata.xml 28 Jun 2009 11:26:07 -0000 1.3
23 +++ metadata.xml 7 Oct 2009 10:18:31 -0000 1.4
24 @@ -8,6 +8,10 @@
25 </maintainer>
26 <use>
27 <flag name='clock'>Enable clock screen</flag>
28 - <flag name='outputs'>Enable outputs screen</flag>
29 + <flag name='fftw'>Build the visualizer plugin that pulls in
30 + <pkg>sci-libs/fftw</pkg></flag>
31 + <flag name='outputs'>Enable outputs screen</flag>
32 + <flag name='visualizer'>Enable visualizer screen with sound wave/frequency
33 + spectrum modes</flag>
34 </use>
35 </pkgmetadata>
36
37
38
39 1.20 media-sound/ncmpcpp/ChangeLog
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/ncmpcpp/ChangeLog?rev=1.20&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/ncmpcpp/ChangeLog?rev=1.20&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/ncmpcpp/ChangeLog?r1=1.19&r2=1.20
44
45 Index: ChangeLog
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/media-sound/ncmpcpp/ChangeLog,v
48 retrieving revision 1.19
49 retrieving revision 1.20
50 diff -u -r1.19 -r1.20
51 --- ChangeLog 1 Oct 2009 19:51:42 -0000 1.19
52 +++ ChangeLog 7 Oct 2009 10:18:31 -0000 1.20
53 @@ -1,6 +1,12 @@
54 # ChangeLog for media-sound/ncmpcpp
55 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
56 -# $Header: /var/cvsroot/gentoo-x86/media-sound/ncmpcpp/ChangeLog,v 1.19 2009/10/01 19:51:42 beandog Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/media-sound/ncmpcpp/ChangeLog,v 1.20 2009/10/07 10:18:31 yngwin Exp $
58 +
59 +*ncmpcpp-0.4.1 (07 Oct 2009)
60 +
61 + 07 Oct 2009; Ben de Groot <yngwin@g.o> +ncmpcpp-0.4.1.ebuild,
62 + metadata.xml:
63 + Version bump, adding visualizer and fftw useflags
64
65 01 Oct 2009; Steve Dibb <beandog@g.o> ncmpcpp-0.3.5.ebuild:
66 amd64 stable, bug 285872
67
68
69
70 1.1 media-sound/ncmpcpp/ncmpcpp-0.4.1.ebuild
71
72 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/ncmpcpp/ncmpcpp-0.4.1.ebuild?rev=1.1&view=markup
73 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/ncmpcpp/ncmpcpp-0.4.1.ebuild?rev=1.1&content-type=text/plain
74
75 Index: ncmpcpp-0.4.1.ebuild
76 ===================================================================
77 # Copyright 1999-2009 Gentoo Foundation
78 # Distributed under the terms of the GNU General Public License v2
79 # $Header: /var/cvsroot/gentoo-x86/media-sound/ncmpcpp/ncmpcpp-0.4.1.ebuild,v 1.1 2009/10/07 10:18:31 yngwin Exp $
80
81 EAPI="2"
82 inherit eutils
83
84 DESCRIPTION="An ncurses mpd client, ncmpc clone with some new features, written in C++"
85 HOMEPAGE="http://unkart.ovh.org/ncmpcpp"
86 SRC_URI="http://unkart.ovh.org/${PN}/${P}.tar.bz2"
87 LICENSE="GPL-2"
88 IUSE="clock curl fftw iconv outputs taglib +threads unicode visualizer"
89 SLOT="0"
90 KEYWORDS="~amd64 ~hppa ~x86"
91
92 DEPEND="sys-libs/ncurses[unicode?]
93 curl? ( net-misc/curl )
94 fftw? ( sci-libs/fftw )
95 iconv? ( virtual/libiconv )
96 taglib? ( media-libs/taglib )"
97 RDEPEND="$DEPEND"
98
99 src_configure() {
100 econf $(use_enable clock) \
101 $(use_enable outputs) \
102 $(use_enable unicode) \
103 $(use_enable visualizer) \
104 $(use_with curl) \
105 $(use_with fftw) \
106 $(use_with iconv) \
107 $(use_with threads) \
108 $(use_with taglib)
109 }
110
111 src_install() {
112 emake install DESTDIR="${D}" docdir="/usr/share/doc/${PF}" \
113 || die "install failed"
114 }
115
116 pkg_postinst() {
117 echo
118 elog "Example configuration files have been installed at"
119 elog "${ROOT}usr/share/doc/${PF}"
120 elog "${P} uses ~/.ncmpcpp/config and ~/.ncmpcpp/keys"
121 elog "as user configuration files."
122 echo
123 if use visualizer; then
124 elog "If you want to use the visualizer, you need mpd with fifo enabled."
125 echo
126 fi
127 }