Use customary framework for INSTALL/DEINSTALL scripts; fixes INSTALL.

This commit is contained in:
naddy 2000-12-15 17:36:22 +00:00
parent ea7363fc4f
commit 6556d19311
2 changed files with 41 additions and 12 deletions

View File

@ -1,12 +1,12 @@
#!/bin/sh
#
# $OpenBSD: DEINSTALL,v 1.1.1.1 2000/09/03 11:55:00 jakob Exp $
# $OpenBSD: DEINSTALL,v 1.2 2000/12/15 17:36:22 naddy Exp $
#
# php4 de-installation
CONF=`/usr/sbin/apxs -q SYSCONFDIR`/httpd.conf
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
CONF=`apxs -q SYSCONFDIR`/httpd.conf
rm -f /usr/lib/apache/modules/libphp4.so

View File

@ -1,18 +1,47 @@
#!/bin/sh
#
# $OpenBSD: INSTALL,v 1.1.1.1 2000/09/03 11:55:00 jakob Exp $
# $OpenBSD: INSTALL,v 1.2 2000/12/15 17:36:22 naddy Exp $
#
# php4 installation
# exit on errors, use a sane path and install prefix
#
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
echo
echo "+---------------"
echo "| To finish the install, you need to enable the php4"
echo "| module using the following command"
echo "|"
echo "| ${PKG_PREFIX}/sbin/php4-enable"
echo "+---------------"
echo
do_notice()
{
echo
echo "+---------------"
echo "| To finish the install, you need to enable the php4"
echo "| module using the following command"
echo "|"
echo "| $PREFIX/sbin/php4-enable"
echo "+---------------"
echo
}
# verify proper execution
#
if [ $# -ne 2 ]; then
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
exit 1
fi
# Verify/process the command
#
case $2 in
PRE-INSTALL)
: nothing to pre-install for this port
;;
POST-INSTALL)
do_notice $1
;;
*)
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
exit 1
;;
esac
exit 0