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: ChangeLog ncmpcpp-0.2.4.ebuild
Date: Wed, 15 Oct 2008 16:50:54
Message-Id: E1Kq9aE-0006az-Gx@stork.gentoo.org
1 yngwin 08/10/15 16:50:50
2
3 Modified: ChangeLog
4 Added: ncmpcpp-0.2.4.ebuild
5 Log:
6 Version bump. Add message about new config files location.
7 (Portage version: 2.2_rc12_p11688/cvs/Linux 2.6.26-hh3 i686)
8
9 Revision Changes Path
10 1.2 media-sound/ncmpcpp/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/ncmpcpp/ChangeLog?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/ncmpcpp/ChangeLog?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/ncmpcpp/ChangeLog?r1=1.1&r2=1.2
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/ncmpcpp/ChangeLog,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- ChangeLog 23 Sep 2008 22:23:50 -0000 1.1
23 +++ ChangeLog 15 Oct 2008 16:50:50 -0000 1.2
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-sound/ncmpcpp
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/ncmpcpp/ChangeLog,v 1.1 2008/09/23 22:23:50 yngwin Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/ncmpcpp/ChangeLog,v 1.2 2008/10/15 16:50:50 yngwin Exp $
29 +
30 +*ncmpcpp-0.2.4 (15 Oct 2008)
31 +
32 + 15 Oct 2008; Ben de Groot <yngwin@g.o> +ncmpcpp-0.2.4.ebuild:
33 + Version bump. Add message about new config files location.
34
35 *ncmpcpp-0.2.3 (23 Sep 2008)
36
37
38
39
40 1.1 media-sound/ncmpcpp/ncmpcpp-0.2.4.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/ncmpcpp/ncmpcpp-0.2.4.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/ncmpcpp/ncmpcpp-0.2.4.ebuild?rev=1.1&content-type=text/plain
44
45 Index: ncmpcpp-0.2.4.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-sound/ncmpcpp/ncmpcpp-0.2.4.ebuild,v 1.1 2008/10/15 16:50:50 yngwin Exp $
50
51 inherit eutils
52
53 DESCRIPTION="An ncurses mpd client, ncmpc clone with some new features, written in C++"
54 HOMEPAGE="http://unkart.ovh.org/ncmpcpp"
55 SRC_URI="http://unkart.ovh.org/${PN}/${P}.tar.bz2"
56 LICENSE="GPL-2"
57 IUSE="curl taglib unicode"
58 SLOT="0"
59 KEYWORDS="~amd64 ~x86"
60
61 DEPEND="sys-libs/ncurses
62 curl? ( net-misc/curl )
63 taglib? ( media-libs/taglib )"
64 RDEPEND="${DEPEND}"
65
66 pkg_setup() {
67 if ! built_with_use sys-libs/ncurses unicode && use unicode ; then
68 eerror "Please recompile sys-libs/ncurses with the unicode useflag"
69 die
70 fi
71 }
72
73 src_compile() {
74 econf $(use_enable unicode) $(use_with curl) $(use_with taglib) \
75 || die "configure failed"
76 emake || die "make failed"
77 }
78
79 src_install() {
80 make install DESTDIR="${D}" docdir="${ROOT}/usr/share/doc/${PF}" \
81 || die "install failed"
82 prepalldocs
83 }
84
85 pkg_postinst() {
86 echo
87 elog "Example configuration files have been installed at"
88 elog "${ROOT}usr/share/doc/${PF}"
89 elog "${P} now uses ~/.ncmpcpp/config and ~/.ncmpcpp/keys"
90 elog "as configuration files. If you have used a previous version,"
91 elog "please move your configuration files to the new location."
92 echo
93 }