blob: ec0bab7f271b676bd95df1460a2c6002453c5ff9 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmsensormon/wmsensormon-1.2.1.ebuild,v 1.6 2006/02/02 16:33:13 nelchael Exp $
IUSE=""
S=${WORKDIR}/${P/_/-}/${PN}
DESCRIPTION="WindowMaker DockApp: Monitors sensors using lm_sensors"
SRC_URI="mirror://sourceforge/wmsensormon/${P/_/-}.tar.gz"
HOMEPAGE="http://wmsensormon.sourceforge.net"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 amd64"
RDEPEND="|| ( (
x11-libs/libX11
x11-libs/libXext
x11-libs/libXpm )
virtual/x11 )"
DEPEND="${RDEPEND}
|| ( x11-proto/xextproto virtual/x11 )
>=sys-apps/lm_sensors-2.8.7"
src_compile() {
cd ${S}
mv Makefile Makefile.orig
sed 's/^CFLAGS/#CFLAGS/' Makefile.orig > Makefile
rm Makefile.orig
emake || die
}
src_install () {
cd ${S}
dobin wmsensormon
#unbzip manpage - Will be updated in 1.2 release
doman wmsensormon.1
cd ..
dodoc CHANGELOG README TODO
}
|