blob: 5a90ed1694548429321b538bd8d0d759fa98d8b4 (
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
67
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/lcd4linux/lcd4linux-0.9.11.ebuild,v 1.11 2006/10/31 22:20:25 jokey Exp $
WANT_AUTOCONF="latest"
WANT_AUTOMAKE="latest"
inherit eutils autotools
DESCRIPTION="Shows system and ISDN information on an external display or in a X11 window"
HOMEPAGE="http://lcd4linux.sourceforge.net/"
SRC_URI="mirror://sourceforge/lcd4linux/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE="kde pda png X usb"
RDEPEND="sys-libs/ncurses
x11-libs/libX11
png? ( media-libs/libpng )"
DEPEND="${RDEPEND}
x11-libs/libXt"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-modular-x.patch"
eautoreconf
}
src_compile() {
local myconf
use png || myconf=",!PNG"
use pda || myconf="${myconf},!PalmPilot"
use X || myconf="${myconf},!X11"
use usb || myconf="${myconf},!USBLCD"
econf \
--sysconfdir=/etc/lcd4linux \
--with-drivers="all${myconf}" || die "econf failed"
emake || die
}
src_install() {
CONFIG_PROTECT="${CONFIG_PROTECT} /etc/lcd4linux"
einstall
insinto /etc/lcd4linux
newins lcd4linux.conf.sample lcd4linux.conf
insopts -o root -g root -m 0600
dodoc README* NEWS TODO CREDITS FAQ
dodoc lcd4linux.conf.sample lcd4linux.kdelnk lcd4linux.xpm
if use kde ; then
insinto /etc/lcd4linux
insopts -o root -g root -m 0600
doins lcd4kde.conf
insinto /usr/share/applnk/apps/System
doins lcd4linux.kdelnk
insinto /usr/share/pixmaps
doins lcd4linux.xpm
touch ${D}/etc/lcd4linux/lcd4X11.conf
fi
}
|