diff options
Diffstat (limited to 'app-admin/profiler/profiler-1-r1.ebuild')
-rw-r--r-- | app-admin/profiler/profiler-1-r1.ebuild | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/app-admin/profiler/profiler-1-r1.ebuild b/app-admin/profiler/profiler-1-r1.ebuild index d0b63b36ec74..b93df84639fb 100644 --- a/app-admin/profiler/profiler-1-r1.ebuild +++ b/app-admin/profiler/profiler-1-r1.ebuild @@ -1,12 +1,13 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/profiler/profiler-1-r1.ebuild,v 1.6 2010/03/08 08:33:58 sping Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/profiler/profiler-1-r1.ebuild,v 1.7 2012/11/27 22:59:18 sping Exp $ inherit java-pkg-2 DESCRIPTION="Provides 3D visual representation of file system statistics" HOMEPAGE="https://bugs.gentoo.org/show_bug.cgi?id=288717" # since visualversion.com died -SRC_URI="mirror://gentoo/profiler.jar" +SRC_URI="profiler.jar" +RESTRICT="fetch" LICENSE="as-is" SLOT="0" @@ -18,14 +19,14 @@ RDEPEND=">=virtual/jre-1.4" S=${WORKDIR} src_unpack() { + cp "${DISTDIR}"/${A} "${S}"/ || die +} - cp "${DISTDIR}"/${A} "${S}"/ - +src_compile() { + : } src_install() { - - dobin "${FILESDIR}"/profiler - java-pkg_dojar ${A} - + dobin "${FILESDIR}"/profiler || die + java-pkg_dojar ${A} || die } |