summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2003-07-10 04:25:44 +0000
committerMike Frysinger <vapier@gentoo.org>2003-07-10 04:25:44 +0000
commit8c7cd078724e2f8e9f56b7dd5dfe7ba7e187a246 (patch)
tree23ac91475b82d77fadeb32f97fdf6dd4e4858b6f /app-admin/profiler
parentinitial ebuild (diff)
downloadgentoo-2-8c7cd078724e2f8e9f56b7dd5dfe7ba7e187a246.tar.gz
gentoo-2-8c7cd078724e2f8e9f56b7dd5dfe7ba7e187a246.tar.bz2
gentoo-2-8c7cd078724e2f8e9f56b7dd5dfe7ba7e187a246.zip
initial ebuild
Diffstat (limited to 'app-admin/profiler')
-rw-r--r--app-admin/profiler/ChangeLog8
-rw-r--r--app-admin/profiler/Manifest4
-rw-r--r--app-admin/profiler/files/digest-profiler-11
-rw-r--r--app-admin/profiler/files/profiler2
-rw-r--r--app-admin/profiler/profiler-1.ebuild24
5 files changed, 38 insertions, 1 deletions
diff --git a/app-admin/profiler/ChangeLog b/app-admin/profiler/ChangeLog
new file mode 100644
index 000000000000..c6232e2c4693
--- /dev/null
+++ b/app-admin/profiler/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for app-admin/profiler
+# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/profiler/ChangeLog,v 1.1 2003/07/10 04:25:39 vapier Exp $
+
+*profiler-1 (10 Jul 2003)
+
+ 10 Jul 2003; Mike Frysinger <vapier@gentoo.org> :
+ Initial import. Ebuild submitted by me.
diff --git a/app-admin/profiler/Manifest b/app-admin/profiler/Manifest
index 6cbff178e388..a9caf25762a7 100644
--- a/app-admin/profiler/Manifest
+++ b/app-admin/profiler/Manifest
@@ -1,2 +1,4 @@
-MD5 baac1fca9821b10314d0d7105247466c profiler-1.ebuild 446
+MD5 883f9b80abe86443a4b9708f6f471ccc profiler-1.ebuild 587
MD5 6c35ed2bdc409eb3e192074a62d4b126 files/digest-profiler-1 57
+MD5 a4eec5d25436a57dbd0c09113f27f2a4 files/profiler 62
+MD5 7c4a2dedd1dd20a3c479a36b845fc5c8 ChangeLog 340
diff --git a/app-admin/profiler/files/digest-profiler-1 b/app-admin/profiler/files/digest-profiler-1
new file mode 100644
index 000000000000..5318f7cd4649
--- /dev/null
+++ b/app-admin/profiler/files/digest-profiler-1
@@ -0,0 +1 @@
+MD5 04fe310f3426e6b83691b984960de782 profiler.jar 297273
diff --git a/app-admin/profiler/files/profiler b/app-admin/profiler/files/profiler
new file mode 100644
index 000000000000..2d2ef3df5dd1
--- /dev/null
+++ b/app-admin/profiler/files/profiler
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec java -jar /usr/share/profiler/lib/profiler.jar
diff --git a/app-admin/profiler/profiler-1.ebuild b/app-admin/profiler/profiler-1.ebuild
new file mode 100644
index 000000000000..cb7aac48f1a9
--- /dev/null
+++ b/app-admin/profiler/profiler-1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/profiler/profiler-1.ebuild,v 1.1 2003/07/10 04:25:39 vapier Exp $
+
+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"
+KEYWORDS="~x86"
+
+RDEPEND="virtual/jre"
+
+S=${WORKDIR}
+
+src_unpack() {
+ cp ${DISTDIR}/${A} ${S}/
+}
+
+src_install() {
+ dobin ${FILESDIR}/profiler
+ dojar ${A}
+}