mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-21 08:42:23 +00:00
1497f10ee4
- Follow upstream support of MySQL 5.5 - Follow upstream dropping support of Java 1.5 Approved by: crees (mentor)
23 lines
563 B
Bash
23 lines
563 B
Bash
#!/bin/sh
|
|
|
|
# $FreeBSD$
|
|
|
|
BATCH=${BATCH:=no}
|
|
|
|
if [ "$2" = "PRE-INSTALL" ]; then
|
|
cat << _EOF
|
|
============== W A R N I N G I M P O R T A N T N O T E =================
|
|
|
|
To upgrade, it is recommended to refer to the Installation Guide found here:
|
|
http://jasperforge.org/projects/jasperserver/downloads
|
|
|
|
============== W A R N I N G I M P O R T A N T N O T E =================
|
|
|
|
_EOF
|
|
if [ -z "${PACKAGE_BUILDING}" -a "${BATCH}" = "no" ]; then
|
|
read -p "Hit ^c now to stop, any key to continue: " -t 20 a || true
|
|
echo
|
|
echo
|
|
fi
|
|
fi
|