#!/bin/sh # # $FreeBSD: head/sysutils/pacman/files/pkg-deinstall.in 454856 2017-11-24 23:17:50Z dbaio $ # case $2 in POST-DEINSTALL) if find /var/lib/pacman /var/cache/pacman %%PACMAN_ROOT%% -type f 2>/dev/null | head -1 | 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 " %%PACMAN_ROOT%%" echo " /var/cache/pacman" echo " /var/lib/pacman" echo "" fi ;; esac