1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-05 06:27:37 +00:00
freebsd-ports/java/jmp/Makefile
Ade Lovett 54a0b86543 Mass-conversion to the USE_AUTOTOOLS New World Order. The code present
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.

Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.

Preliminary documentation can be found at:
	http://people.FreeBSD.org/~ade/autotools.txt

which is in the process of being SGMLized before introduction into the
Porters Handbook.

Light blue touch-paper.  Run.
2005-11-15 06:52:12 +00:00

61 lines
1.2 KiB
Makefile

# New ports collection makefile for: jmp
# Date created: 11 January 2003
# Whom: Ronald Klop <ronald@cs.vu.nl>
#
# $FreeBSD$
#
PORTNAME= jmp
PORTVERSION= 0.48
CATEGORIES= java devel
MASTER_SITES= http://www.khelekore.org/jmp/
MAINTAINER= ronald@cs.vu.nl
COMMENT= Java Memory Profiler
OPTIONS= X11 "Enable X11 support" on
OPTIONS+= DEBUG "Enable extra debug output" off
OPTIONS+= OPTIMIZED_CFLAGS "Compile with -O3" off
CONFIGURE_ARGS= --with-includes="${JAVA_HOME}/include ${LOCALBASE}/include" \
--with-libintl-prefix="${LOCALBASE}"
USE_BISON= yes
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
.if defined(WITH_OPTIMIZED_CFLAGS)
CFLAGS+= -O3
.endif
USE_AUTOTOOLS= libtool:15
USE_GMAKE= yes
USE_JAVA= yes
JAVA_VERSION= 1.2+
JAVA_OS= native
JAVA_BUILD= jdk
NEED_JAVAC= yes
USE_JIKES= no
MAKE_FLAGS= JAVAC=${JAVAC} JAVAH=${JAVAH}
GNU_CONFIGURE= yes
CONFIGURE_ENV= JAVA_HOME="${JAVA_HOME}"
INSTALLS_SHLIB= yes
PLIST_FILES= lib/libjmp.so lib/libjmp.so.0 \
share/locale/de/LC_MESSAGES/jmp.mo \
share/locale/sv/LC_MESSAGES/jmp.mo
.include <bsd.port.mk>