mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
b959d3d904
- Change WITH_PCAP_PORT to LIB_DEPENDS, not BUILD_DEPENDS - add stopdaemon to pkg-plist - need chown in pkg-plist so that .tbz (package building) works - clean up install message (patch-Makefile.am) - add test in pkg-deinstall.in to test for DBDIR PR: ports/163682 Submitted by: scheidell@
26 lines
419 B
Bash
26 lines
419 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
case $2 in
|
|
DEINSTALL)
|
|
;;
|
|
POST-DEINSTALL)
|
|
if [ -d %%DBDIR%%/ntop ];then
|
|
echo "===> post-deinstallation information for $1"
|
|
echo ""
|
|
echo " Please note that ntop was not completely removed"
|
|
echo " from this system:"
|
|
echo ""
|
|
echo " %%DBDIR%%/ntop can be removed if this port will not be"
|
|
echo " reinstalled."
|
|
echo ""
|
|
fi
|
|
;;
|
|
*)
|
|
exit 64
|
|
;;
|
|
esac
|
|
exit 0
|