blob: 0d52fa5d72fe4ed3ea25c045fcdfa7d8afe0aaaa (
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/wmupmon/wmupmon-0.1.3.ebuild,v 1.5 2006/03/27 12:19:06 corsair Exp $
DESCRIPTION="wmUpMon is a program to monitor your Uptime"
HOMEPAGE="http://j-z-s.com/projects/index.php?project=wmupmon"
SRC_URI="http://j-z-s.com/projects/downloads/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ppc ppc64 ~sparc x86"
IUSE=""
RDEPEND="|| ( (
x11-libs/libX11
x11-libs/libXext
x11-libs/libXt
x11-libs/libXpm )
virtual/x11 )"
DEPEND="${RDEPEND}
|| ( x11-proto/xextproto virtual/x11 )"
src_compile()
{
econf || die "configure failed"
emake || die "parallel make failed"
}
src_install()
{
einstall || die "make install failed"
dodoc AUTHORS README THANKS ChangeLog
}
|