mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
785d56e4e7
- Use USE_ANT - Use SUB_FILES to configure launcher shell script - Use javavmwrapper in launcher shell script - Bumped PORTREVISION to let users take advantage of javavmwrapper - Use %%JAVAJARDIR%% in pkg-plist PR: 97684 Submitted by: hq Approved by: maintainer
11 lines
199 B
Bash
11 lines
199 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
cd "%%DATADIR%%"
|
|
JAVA_VERSION="%%JAVA_VERSION%%" \
|
|
exec "%%LOCALBASE%%/bin/java" \
|
|
-classpath $(%%LOCALBASE%%/bin/classpath) \
|
|
com.bbn.openmap.app.OpenMap "%@"
|