# Special messages with regards to Java sources.
#
message "\n${MESSAGE_COLOR}" \
        "For ${SPELL} you have to agree to the DLJ license.\n\n" \
        "Available at http://dlc.sun.com/dlj/DLJ-v1.1.txt${DEFAULT_COLOR}\n" &&

config_query DLJ_AGREE "Do you agree to the DLJ License?" n &&

if [[ "$DLJ_AGREE" != "y" ]] ; then
  return 1
else 
  message "${MESSAGE_COLOR}Agreed to license, proceeding with install.\n${DEFAULT_COLOR}"
fi

