blob: c38852bb3928e89c4a445b70d52e7f51a452a291 (
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-2005 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.1 2005/06/20 12:20:03 ka0ttic 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="x86 ~sparc ppc alpha"
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 COPYING INSTALL INSTALL.orig
cd asmon
dobin ${PN}
}
|