0460b5a6c1
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>
19 lines
271 B
Bash
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
|