blob: 0b4aca9b60772d25a08d228bac649a87810caed3 (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmsysmon/wmsysmon-0.7.6-r2.ebuild,v 1.5 2004/09/02 18:22:40 pvdabeel Exp $
inherit eutils
IUSE=""
DESCRIPTION="WMaker DockUp to monitor: CPU, Memory, Swap usage, system uptime, hardware interrupts, paging and swap activity."
SRC_URI="http://www.gnugeneration.com/software/wmsysmon/src/${P}.tar.gz"
HOMEPAGE="http://www.gnugeneration.com/software/wmsysmon/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~sparc alpha ~amd64 ppc"
DEPEND="virtual/x11"
src_unpack()
{
unpack ${A}
cd ${S}
# bug #27499
# epatch ${FILESDIR}/fanta.diff
# this will be addressed in s4t4n.patch
# bug 48851
epatch ${FILESDIR}/${P}-s4t4n.patch
}
src_compile()
{
GENTOO_CFLAGS="${CFLAGS}" make -C src
}
src_install ()
{
dobin src/wmsysmon
dodoc COPYING ChangeLog FAQ README
}
|