blob: ef0b13479778ac52b50ff6f38e90b1c90cced37d (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmcms/wmcms-0.3.5-r1.ebuild,v 1.6 2004/10/19 08:53:14 absinthe Exp $
inherit eutils
IUSE=""
DESCRIPTION="WindowMaker CPU and Memory Usage Monitor Dock App."
SRC_URI="http://orbita.starmedia.com/~neofpo/files/${P}.tar.bz2"
HOMEPAGE="http://orbita.starmedia.com/~neofpo/wmcms.html"
DEPEND="virtual/x11
>=x11-libs/libdockapp-0.4.0-r1"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc amd64 ppc ppc64"
src_unpack()
{
unpack ${A}
epatch ${FILESDIR}/wmcms-0.3.5-s4t4n.patch
}
src_compile()
{
emake CFLAGS="${CFLAGS}" || die "Compilation failed."
}
src_install ()
{
dobin wmcms
}
|