blob: 0a52ab11fe3dc4d95c14e4a982b1ad5eb545ddba (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/asmon/asmon-0.64.ebuild,v 1.3 2004/09/02 18:22:39 pvdabeel 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"
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}
}
|