blob: 0dbb5046c607fce4ad9c389916aaa9e573489a40 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmdf/wmdf-0.1.6.ebuild,v 1.4 2004/06/24 23:08:05 agriffis Exp $
IUSE=""
DESCRIPTION="An app to monitor disk space on partitions"
SRC_URI="http://dockapps.org/download.php/id/359/${P}.tar.gz"
HOMEPAGE="http://dockapps.org/file.php/id/175"
DEPEND="virtual/x11"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc"
src_compile() {
econf || die "Configure failed"
emake || die "Make failed"
}
src_install() {
einstall || die "Install failed"
dodoc README AUTHORS COPYING ChangeLog NEWS THANKS TODO INSTALL
}
|