freebsd-ports/graphics/mapyrus/files/mapyrus.in
Rong-En Fan 3445c6fa95 - Fix mapyrus script: removed quotes around the variable JAVA_AWT_HEADLESS,
otherwise mapyrus does not run under X.
- Removed an email address from pkg-descr

PR:		ports/103478
Submitted by:	Nicola Vitale <nivit at email.it> (maintainer)
2006-09-23 02:28:20 +00:00

9 lines
258 B
Bash

#!/bin/sh
# $FreeBSD$
if [ -z "${DISPLAY}" ]; then
JAVA_AWT_HEADLESS="-Djava.awt.headless=true"
else
JAVA_AWT_HEADLESS=""
fi
JAVA_VERSION="%%JAVA_VERSION%%" \
exec "%%LOCALBASE%%/bin/java" ${JAVA_AWT_HEADLESS} -jar "%%DATADIR%%/%%MAPYRUSJAR%%" "$@"