blob: f523ecb723acdb24e0eb06c11c925f1be374162f (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/asmon/asmon-0.65.ebuild,v 1.3 2006/06/06 22:54:22 weeve Exp $
inherit eutils
DESCRIPTION="WindowMaker/AfterStep system monitor dockapp"
HOMEPAGE="http://rio.vg/asmon/"
SRC_URI="http://www.tigr.net/afterstep/download/asmon/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
KEYWORDS="alpha ppc sparc x86"
DEPEND="virtual/x11"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/asmon-cflags.diff
}
src_compile() {
cd ${S}/asmon
make clean
emake || die
}
src_install() {
dodoc AUTHOR CHANGES
cd asmon
dobin ${PN}
}
|