mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-06 06:30:19 +00:00
4e00b737b2
- Add many fixes and tweaks - Use pkg-plist - Pass maintainership to submitter PR: ports/121161 Submitted by: J.R. Oldroyd <fbsd@opal.com> Approved by: alecn2002 <alecn2002@yandex.ru>
18 lines
400 B
Bash
18 lines
400 B
Bash
#!/bin/sh
|
|
|
|
case "$2" in
|
|
POST-DEINSTALL)
|
|
if [ -d %%WWWDIR%%/index ]; then
|
|
cat <<!
|
|
=======================================
|
|
There is a PhpGedView database in %%WWWDIR%%/index.
|
|
If you are completely uninstalling PhpGedView, please delete this directory
|
|
and %%WWWDIR%% by hand.
|
|
You may want to save your GEDCOM file(s) from this directory first.
|
|
=======================================
|
|
!
|
|
fi
|
|
;;
|
|
esac
|
|
|