blob: b34618ab5a93426f5bfd8a59348cb715efb877ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author: Michael Gayeski <gayeski@cae.wisc.edu>
# $Header: /var/cvsroot/gentoo-x86/x11-misc/wmbattery/wmbattery-1.2.1-r1.ebuild,v 1.2 2002/04/27 23:34:21 bangert Exp $
S=${WORKDIR}/wmbattery
DESCRIPTION="A dockable app to report APM battery stats."
SRC_URI="http://kitenet.net/programs/code/wmbattery/wmbattery.tar.gz"
HOMEPAGE="http://kitenet.net/programs/wmbattery"
DEPEND="x11-base/xfree virtual/glibc"
src_install () {
dobin wmbattery
doman wmbattery.1x
dodoc README COPYING TODO
#install the icons.
insinto /usr/share/icons/wmbattery
doins *.xpm
}
|