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.5.ebuild lcd-stuff-0.1.3.ebuild lcd-stuff-0.1.4.ebuild
Date: Sun, 29 Jun 2008 12:26:40
Message-Id: E1KCvzG-0007f1-Kb@stork.gentoo.org
1 rbu 08/06/29 12:26:34
2
3 Modified: ChangeLog
4 Added: lcd-stuff-0.1.5.ebuild
5 Removed: lcd-stuff-0.1.3.ebuild lcd-stuff-0.1.4.ebuild
6 Log:
7 Version bump, drop old versions.
8 (Portage version: 2.1.4.4)
9
10 Revision Changes Path
11 1.12 app-misc/lcd-stuff/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/lcd-stuff/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/lcd-stuff/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/lcd-stuff/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-misc/lcd-stuff/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 9 Sep 2007 22:13:52 -0000 1.11
24 +++ ChangeLog 29 Jun 2008 12:26:34 -0000 1.12
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-misc/lcd-stuff
27 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-misc/lcd-stuff/ChangeLog,v 1.11 2007/09/09 22:13:52 rbu Exp $
29 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-misc/lcd-stuff/ChangeLog,v 1.12 2008/06/29 12:26:34 rbu Exp $
31 +
32 +*lcd-stuff-0.1.5 (29 Jun 2008)
33 +
34 + 29 Jun 2008; Robert Buchholz <rbu@g.o> -lcd-stuff-0.1.3.ebuild,
35 + -lcd-stuff-0.1.4.ebuild, +lcd-stuff-0.1.5.ebuild:
36 + Version bump, drop old versions.
37
38 *lcd-stuff-0.1.4 (09 Sep 2007)
39
40
41
42
43 1.1 app-misc/lcd-stuff/lcd-stuff-0.1.5.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/lcd-stuff/lcd-stuff-0.1.5.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/lcd-stuff/lcd-stuff-0.1.5.ebuild?rev=1.1&content-type=text/plain
47
48 Index: lcd-stuff-0.1.5.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-misc/lcd-stuff/lcd-stuff-0.1.5.ebuild,v 1.1 2008/06/29 12:26:34 rbu Exp $
53
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_compile() {
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 emake || die "make failed"
94 }
95
96 src_install()
97 {
98 emake DESTDIR="${D}" install || die "make install failed"
99
100 insinto /etc
101 doins lcd-stuff.conf
102
103 newconfd "${FILESDIR}/${PN}.confd" ${PN}
104 newinitd "${FILESDIR}/${PN}-0.1.2-r1.initd" ${PN}
105
106 dodoc ChangeLog README
107 }
108
109
110
111 --
112 gentoo-commits@l.g.o mailing list