mirror of
https://git.freebsd.org/ports.git
synced 2025-06-01 02:46:27 -04:00
JMP is a profiler for java that can be used to trace objects usage and method timings. JMP uses the JVMPI interface to gather statistics and interact with the JVM. JMP uses a GTK+ interface to show the status. PR: 47151, 48474, 50325 Submitted by: Ronald Klop <ronald@cs.vu.nl>
43 lines
839 B
Makefile
43 lines
839 B
Makefile
# New ports collection makefile for: jmp
|
|
# Date created: 11 January 2003
|
|
# Whom: Ronald Klop <ronald@cs.vu.nl>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= jmp
|
|
PORTVERSION= 0.29
|
|
CATEGORIES= java devel
|
|
MASTER_SITES= http://www.khelekore.org/jmp/
|
|
|
|
MAINTAINER= ronald@cs.vu.nl
|
|
COMMENT= Java Memory Profiler
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/bin/bison:${PORTSDIR}/devel/bison
|
|
LIB_DEPENDS= intl:${PORTSDIR}/devel/gettext
|
|
|
|
.if defined(WITHOUT_X11)
|
|
CONFIGURE_ARGS= --enable-noui
|
|
.else
|
|
USE_XLIB= yes
|
|
LIB_DEPENDS+= gtk-x11-2.0:${PORTSDIR}/x11-toolkits/gtk20
|
|
.endif
|
|
|
|
.if defined(WITH_DEBUG)
|
|
CFLAGS+= -DJMPDEBUG -g
|
|
.endif
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_GMAKE= yes
|
|
#USE_JAVA= 1.2+
|
|
USE_JAVA= 1.3
|
|
NEED_JAVAC= yes
|
|
|
|
MAKE_FLAGS= JAVAC=${JAVAC} JAVAH=${JAVAH}
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ENV= JAVA_HOME="${JAVA_HOME}"
|
|
INSTALLS_SHLIB= yes
|
|
|
|
.include <bsd.port.mk>
|