107e0e0189
- Remove FTP master site - Remove leading article from COMMENT - Add license(s) (GPLv3) - Remove DEPRECATED, EXPIRATION_DATE - USES gmake instead of USE_GMAKE, remove gettext - Add libmux.so, strip library and USE_LDCONFIG=yes - Support STAGEDIR and add OPTIONS_SUB - Simplify DOCS installation handling - Add FIRANMUX MEMORY_BASED REALITY_LVLS SELFCHECK SSL WOD_REALMS Options - Add ASYNCHRONOUS_SQL SSL REALITY_LVLS WOD_REALMS to default Options - Add OPTIONS_RADIO=MYSQL and ASYNCHRONOUS_SQL INLINE_SQL - Add tinymux pkg-deinstall pkg-message - Add IGNORE when is used FIRANMUX with WOD_REALMS or REALITY_LVLS - Simplify REINPLACE and install installation handling, use %%DATADIR%% instead of %%DATADIR%%/game/netmux - Recreate pkg-plist with make makeplist and proper use configuration handling
20 lines
530 B
Bash
20 lines
530 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
if [ "$2" = "POST-DEINSTALL" ]; then
|
|
echo ""
|
|
echo ""
|
|
echo "==============================================================================="
|
|
echo ""
|
|
echo "After deinstallation, some files may stay in %%DATADIR%% and"
|
|
echo "%%ETCDIR%%, you can delete them with"
|
|
echo ""
|
|
echo " /bin/rm -fr %%DATADIR%%"
|
|
echo ""
|
|
echo " /bin/rm -fr %%ETCDIR%%"
|
|
echo ""
|
|
echo "==============================================================================="
|
|
echo ""
|
|
fi
|