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
|
# WMNut ebuild script for Gentoo Linux
# Copyright (c) 2003 Arnaud Quette arnaud.quette@free.fr
# Distributed under the terms of the GNU General Public License v2
S=${WORKDIR}/${P}
DESCRIPTION="WMNut is a wmaker dock app that displays UPS statistics from NUT's upsd."
SRC_URI="http://wmnut.tuxfamily.org/files/${P}.tar.bz2"
HOMEPAGE="http://wmnut.tuxfamily.org/"
KEYWORDS="x86 sparc "
LICENSE="GPL-2"
SLOT="0"
DEPEND="virtual/x11"
src_compile() {
econf || die "configure failed"
emake || die "parallel make failed"
}
src_install () {
einstall || die "make install failed"
}
|