Gentoo Archives: gentoo-commits

From: "Robert Buchholz (rbu)" <rbu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/lcd-stuff: ChangeLog lcd-stuff-0.1.6.ebuild
Date: Sun, 01 Nov 2009 16:14:22
Message-Id: E1N4d4N-0004rT-Ok@stork.gentoo.org
1 rbu 09/11/01 16:14:19
2
3 Modified: ChangeLog
4 Added: lcd-stuff-0.1.6.ebuild
5 Log:
6 Version bump (#288114) and migrate to EAPI=2.
7 Also fixes curl compile error (#286901).
8 (Portage version: 2.1.7.1/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.16 app-misc/lcd-stuff/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/lcd-stuff/ChangeLog?rev=1.16&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/lcd-stuff/ChangeLog?rev=1.16&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/lcd-stuff/ChangeLog?r1=1.15&r2=1.16
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-misc/lcd-stuff/ChangeLog,v
20 retrieving revision 1.15
21 retrieving revision 1.16
22 diff -u -r1.15 -r1.16
23 --- ChangeLog 31 May 2009 22:08:44 -0000 1.15
24 +++ ChangeLog 1 Nov 2009 16:14:19 -0000 1.16
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-misc/lcd-stuff
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-misc/lcd-stuff/ChangeLog,v 1.15 2009/05/31 22:08:44 maekke Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-misc/lcd-stuff/ChangeLog,v 1.16 2009/11/01 16:14:19 rbu Exp $
30 +
31 +*lcd-stuff-0.1.6 (01 Nov 2009)
32 +
33 + 01 Nov 2009; Robert Buchholz <rbu@g.o> +lcd-stuff-0.1.6.ebuild:
34 + Version bump (#288114) and migrate to EAPI=2.
35 + Also fixes curl compile error (#286901).
36
37 31 May 2009; Markus Meier <maekke@g.o> lcd-stuff-0.1.5.ebuild:
38 amd64 stable, bug #270722
39
40
41
42 1.1 app-misc/lcd-stuff/lcd-stuff-0.1.6.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/lcd-stuff/lcd-stuff-0.1.6.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/lcd-stuff/lcd-stuff-0.1.6.ebuild?rev=1.1&content-type=text/plain
46
47 Index: lcd-stuff-0.1.6.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-misc/lcd-stuff/lcd-stuff-0.1.6.ebuild,v 1.1 2009/11/01 16:14:19 rbu Exp $
52
53 EAPI=2
54 inherit eutils
55
56 DESCRIPTION="lcd-stuff is a client for lcdproc that displays RSS, Weather, MPD and new mail."
57 HOMEPAGE="http://lcd-stuff.berlios.de/"
58 SRC_URI="mirror://berlios/${PN}/${P}.tar.bz2"
59
60 KEYWORDS="~amd64 ~x86"
61 SLOT="0"
62 LICENSE="GPL-2" # and GPL-2 only
63
64 RDEPEND="app-misc/lcdproc
65 net-misc/curl
66 dev-libs/glib
67 imap? ( net-libs/libetpan )
68 mpd? ( >=media-libs/libmpd-0.12.0 )
69 mp3? ( media-libs/taglib )
70 xml? ( net-libs/libnxml )
71 rss? ( net-libs/libmrss net-libs/libnxml )"
72 DEPEND="${DEPEND}
73 dev-util/pkgconfig"
74
75 IUSE="imap mpd mp3 xml rss"
76
77 src_configure() {
78 local XMLRSSLIB="$(use_enable rss mrss)"
79 if use rss ; then
80 # If we want rss, we must also have xml
81 XMLRSSLIB="${XMLRSSLIB} --enable-nxml"
82 else
83 XMLRSSLIB="${XMLRSSLIB} $(use_enable xml nxml)"
84 fi
85
86 econf \
87 $(use_enable imap libetpan) \
88 $(use_enable mpd libmpd) \
89 $(use_enable mp3 taglib_c) \
90 $XMLRSSLIB \
91 || die "configure failed"
92 }
93
94 src_install() {
95 emake DESTDIR="${D}" install || die "make install failed"
96
97 insinto /etc
98 doins lcd-stuff.conf
99
100 newconfd "${FILESDIR}/${PN}.confd" ${PN}
101 newinitd "${FILESDIR}/${PN}-0.1.2-r1.initd" ${PN}
102
103 dodoc ChangeLog README
104 }