freebsd-ports/www/openbravoerp/pkg-install
Martin Wilke ef1a2fc264 Openbravo ERP is a Web based ERP for SME, built on proven MVC & MDD framework
that facilitate its customization. Already in production, Openbravo ERP
encompasses a broad range of functionalities such as finance, supply chain,
manufacturing & much more.

WWW: http://www.openbravo.com/

PR:		ports/129175
Submitted by:	loader at freebsdmall.com
2009-01-14 12:48:36 +00:00

40 lines
788 B
Bash

#!/bin/sh
# $FreeBSD$
PATH=/bin:/usr/bin:/usr/sbin
dbwarning() { echo "
===============================================
Openbravo ERP requires a superuser \"postgres\",
please issue following command to create it:
# createuser -s -W postgres
This is not done by the port. And use
\"/usr/local/tomcat5.5\" as the Tomcat
directory when you are prompted to enter
the location.
Press Ctrl-C now if you need to create it.
===============================================
"
sleep 5
}
case $2 in
PRE-INSTALL)
dbwarning
;;
POST-INSTALL)
if [ -f ${PKG_PREFIX}/OpenbravoERP2.40/uninstaller_standard ]; then
rm -f ${PKG_PREFIX}/OpenbravoERP2.40/uninstaller_standard
fi
;;
DBWARNING)
dbwarning
;;
esac