mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
d44650cb1d
jvms on a machine. In a top-like manner, it displays JVM internal metrics (e.g. memory information) of running java processes. It's tested with different releases of Oracle JDK, IBM JDK and OpenJDK on Linux, Solaris and Windows hosts. Jvmtop requires a JDK - a JRE will not suffice. WWW: http://code.google.com/p/jvmtop/
29 lines
618 B
Makefile
29 lines
618 B
Makefile
# Created by: Jason Helfman <jgh@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= jvmtop
|
|
PORTVERSION= 0.6.0
|
|
CATEGORIES= sysutils java
|
|
MASTER_SITES= GOOGLE_CODE
|
|
|
|
MAINTAINER= jgh@FreeBSD.org
|
|
COMMENT= Lightweight console application to monitor running jvms
|
|
|
|
LICENSE= GPLv3
|
|
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.6+
|
|
|
|
PLIST_FILES= %%JAVAJARDIR%%/${PORTNAME}.jar \
|
|
bin/${PORTNAME}
|
|
SUB_LIST= JAVA_HOME=${JAVA_HOME}
|
|
SUB_FILES= ${PORTNAME}.sh
|
|
NO_BUILD= yes
|
|
|
|
do-install:
|
|
@${MKDIR} ${JAVAJARDIR}
|
|
${INSTALL_DATA} ${WRKDIR}/${PORTNAME}.jar ${JAVAJARDIR}
|
|
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh ${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|