forked from Lainports/freebsd-ports
- Update databases/phpmyadmin to 4.0.0
Version 4.0.0 is the first release of a new major version, and
involves some significant changes in functionality. In particular it
now requires Javascript in order to operate.
Provide a new phpmyadmin35 port to track the 3.5.x branch for those
not wishing to upgrade yet. Note that you will have to adjust your
httpd.conf if you switch to this port, as it installs the application to
${LOCALBASE}/www/phpMyAdmin35
26 lines
440 B
Bash
26 lines
440 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
case $2 in
|
|
POST-DEINSTALL)
|
|
cat <<EOMSG
|
|
The phpMyAdmin-suphp port has been deleted.
|
|
If you are not upgrading and don't intend to use
|
|
phpMyAdmin any more then you may wish to delete
|
|
the %%PMA_USR%% account, which can be done with
|
|
the following command:
|
|
|
|
# pw userdel %%PMA_USR%%
|
|
EOMSG
|
|
if [ -d %%WWWDIR%% ] ; then
|
|
echo " # rm -rf %%WWWDIR%%/"
|
|
fi
|
|
echo
|
|
;;
|
|
esac
|
|
|
|
#
|
|
# That's All Folks!
|
|
#
|