blob: 1866640d2d58a3300de12f51c5ddd9f0079193ab (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/profiler/profiler-1.ebuild,v 1.11 2006/09/07 19:31:31 dang Exp $
inherit java-pkg
DESCRIPTION="provides 3D visual representation of file system statistics"
HOMEPAGE="http://visualversion.com/profiler/"
SRC_URI="http://visualversion.com/profiler/profiler.jar"
LICENSE="as-is"
SLOT="0"
IUSE=""
KEYWORDS="amd64 ppc x86"
RDEPEND=">=virtual/jre-1.3"
S=${WORKDIR}
src_unpack() {
cp ${DISTDIR}/${A} ${S}/
}
src_install() {
dobin ${FILESDIR}/profiler
java-pkg_dojar ${A}
}
|