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