mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
9c9765eb68
- Use newer plist practices
19 lines
377 B
Bash
19 lines
377 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
case $2 in
|
|
POST-DEINSTALL)
|
|
if find /var/lib/pacman /var/cache/pacman -type f 2>/dev/null | grep -q ''; then
|
|
echo ""
|
|
echo "To completely remove the port, please remove the following"
|
|
echo "directories and the content manualy if its no longer needed:"
|
|
echo ""
|
|
echo " /var/cache/pacman"
|
|
echo " /var/lib/pacman"
|
|
echo ""
|
|
fi
|
|
;;
|
|
esac
|