freebsd-ports/java/jmp/Makefile
Ade Lovett 3f651573ad Whoa there, boy, that's a mighty big commit y'all have there...
Begin autotools sanitization sequence by requiring ports to explicitly
specify which version of {libtool,autoconf,automake} they need, erasing
the concept of a "system default".

For ports-in-waiting:

	USE_LIBTOOL=YES		->	USE_LIBTOOL_VER=13
	USE_AUTOCONF=YES	->	USE_AUTOCONF_VER=213
	USE_AUTOMAKE=YES	->	USE_AUTOMAKE_VER=14

Ports attempting to use the old style system after June 1st 2004 will be
sorely disappointed.
2004-03-14 06:17:56 +00:00

47 lines
963 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.40
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
OPTIONS= X11 "Enable X11 support" on
OPTIONS+= DEBUG "Enable extra debug output" off
CONFIGURE_ARGS= --with-includes="${JAVA_HOME}/include ${LOCALBASE}/include"
USE_GETTEXT= yes
.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_VER=13
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>