forked from Lainports/freebsd-ports
- remove PgSQL84 support - make PgSQL90 the default database - make tomcat6 default, to prepare for tomcat55 removal - add tomcat7 as an option - remove plist_sub of PORTNAME from pkg-plist to support updates more easily for list - allow database name to be configurable - follow upstream support model with release Note: Jaspersoft did not release a 4.2.0 version of JasperReports Server Community Project. The version number progression goes from 4.1.0 to 4.2.1 directly. The recommended upgrade procedures are fully described in the Installation Guide. There are no database changes between 4.1.0 and 4.2.1. So, the upgrade from 4.1.0 to 4.2.1 is simpler than upgrading from earlier versions. PR: ports/162111 Submitted by: Jason Helfman <jhelfman@experts-exchange.com> (maintainer)
35 lines
969 B
Bash
35 lines
969 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 =================
|
|
|
|
You can upgrade directly to 4.2.1 if your instance is one of the following:
|
|
3.7.0
|
|
3.7.1
|
|
4.0.0
|
|
4.1.0
|
|
|
|
Note that Jaspersoft did not release a 4.2.0 version of JasperReports Server
|
|
Community Project. The version number progression goes from 4.1.0 to 4.2.1
|
|
directly. The recommended upgrade procedures are fully described in the
|
|
Installation Guide.
|
|
|
|
There are no database changes between 4.1.0, and 4.2.1. So, the upgrade from
|
|
4.1.0 to 4.2.1 is simpler than upgrading from earlier versions.
|
|
|
|
WWW: http://jasperforge.org/projects/jasperserver
|
|
|
|
============== 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
|