blob: ea5810243b4590b50654c3311f44e4d6c05bcaef (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmgtemp/wmgtemp-0.6.ebuild,v 1.2 2002/10/20 18:55:34 vapier Exp $
IUSE=""
S="${WORKDIR}/${PN}"
DESCRIPTION="CPU and SYS temperature dockapp"
HOMEPAGE="http://www.fluxcode.net"
SRC_URI="http://www.fluxcode.net/${P}.tar.gz"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="x86 -ppc -sparc -sparc64"
DEPEND="sys-apps/lm_sensors"
src_compile() {
# Set compile optimizations
cd ${S}/src
cp Makefile Makefile.orig
sed -e "s:-Wall -g:\$(CFLAGS):" \
Makefile.orig > Makefile
emake || die "parallel make failed"
}
src_install() {
cd ${S}
dodoc BUGS CREDITS INSTALL README TODO
cd ${S}/src
dobin wmgtemp
}
|