blob: 39b7c43423b75be529213d173b82e049eecd66db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/lcd-stuff/lcd-stuff-0.1.2-r1.ebuild,v 1.4 2007/08/08 20:43:02 rbu Exp $
inherit eutils
DESCRIPTION="lcd-stuff is a client for lcdproc that displays RSS, Weather, MPD and new mail."
HOMEPAGE="http://lcd-stuff.berlios.de/"
SRC_URI="mirror://berlios/${PN}/${P}.tar.bz2"
KEYWORDS="amd64 x86"
SLOT="0"
LICENSE="GPL-2" # and GPL-2 only
RDEPEND="app-misc/lcdproc
net-misc/curl
dev-libs/glib
imap? ( net-libs/libetpan )
mpd? ( >=media-libs/libmpd-0.12.0 )
mp3? ( media-libs/taglib )
xml? ( net-libs/libnxml )
rss? ( net-libs/libmrss net-libs/libnxml )"
DEPEND="${DEPEND}
dev-util/pkgconfig"
IUSE="imap mpd mp3 xml rss"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-mpd.patch"
epatch "${FILESDIR}/${PN}-0.1.3-socket-h.patch"
}
src_compile() {
local XMLRSSLIB="$(use_enable rss mrss)"
if use rss ; then
# If we want rss, we must also have xml
XMLRSSLIB="${XMLRSSLIB} --enable-nxml"
else
XMLRSSLIB="${XMLRSSLIB} $(use_enable xml nxml)"
fi
econf \
$(use_enable imap libetpan) \
$(use_enable mpd libmpd) \
$(use_enable mp3 taglib_c) \
$XMLRSSLIB \
|| die "configure failed"
emake || die "make failed"
}
src_install()
{
emake DESTDIR="${D}" install || die "make install failed"
insinto /etc
doins lcd-stuff.conf
newconfd "${FILESDIR}/${PN}.confd" ${PN}
newinitd "${FILESDIR}/${PF}.initd" ${PN}
dodoc ChangeLog README
}
|