freebsd-ports/finance/frontaccounting/files/pkg-deinstall.in
Chris Rees 0460b5a6c1 FrontAccounting is a simple, but powerful, system for the
entire ERP chain and covers:

Purchase Orders
Goods Receivable Notes
Supplier Invoices/Credit Notes
Payments
Allocations
Accounts Payable
Items and Inventory
Stock
Manufacturing
Sales Orders
Customer Invoices/Credit Notes
Deposits
Allocations
Accounts Receivable
Among many others...

FrontAccounting is free and released under the GNU General
Public License.

WWW: http://www.frontaccounting.com/

PR:		ports/174601
Submitted by:	Janky Jay <ek@purplehat.org>
2012-12-24 21:49:21 +00:00

19 lines
271 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
FAWEB=%%WWWDIR%%
case $2 in
POST-DEINSTALL)
if [ -e ${FAWEB} ]; then
echo ""
echo "If you do not plan on re-installing this port, "
echo "you should manually remove the \"${FAWEB}\" directory."
echo ""
fi
;;
*)
;;
esac