1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-13 07:34:50 +00:00
freebsd-ports/java/javavmwrapper/files/pkg-install.in
2006-06-03 17:32:24 +00:00

32 lines
858 B
Bash

#!/bin/sh
#
# $FreeBSD: /tmp/pcvs/ports/java/javavmwrapper/files/pkg-install.in,v 1.3 2006-06-03 17:32:24 glewis Exp $
LOCALBASE=%%LOCALBASE%%
# This script runs during post-install
if [ "x${2}" != "xPOST-INSTALL" ]; then
exit 0
fi
# The option configuration file
OPTION_CONF="${PKG_PREFIX}/etc/javavm_opts.conf"
# Install default javavm options configuration
if [ ! -e "${OPTION_CONF}" ]; then
cp "${OPTION_CONF}.dist" "${OPTION_CONF}"
else
echo "${OPTION_CONF} already exists - not installing."
echo "You may need to hand merge changes."
fi
# Ensure all JDKs and JREs are installed
for jvm in "${LOCALBASE}"/*jdk* "${LOCALBASE}"/*jre*; do
if [ -x "${jvm}/bin/java" ]; then
"${PKG_PREFIX}"/bin/registervm "${jvm}/bin/java" > /dev/null 2>&1
fi
done
# Ensure all VMs are configured correctly
"${PKG_PREFIX}"/bin/checkvms