mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
21ffff3ac9
PR: 60100 Submitted by: ronald@cs.vu.nl (maintainer)
45 lines
901 B
Makefile
45 lines
901 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.37
|
|
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
|
|
|
|
CONFIGURE_ARGS= --with-includes="${JAVA_HOME}/include ${LOCALBASE}/include"
|
|
|
|
.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+
|
|
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>
|