1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-22 00:35:15 +00:00
freebsd-ports/net/ntop/files/pkg-deinstall.in
Sylvio Cesar Teixeira b959d3d904 - Fix RUN_DEPENDS (:=), mostly for portlint
- 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@
2012-01-14 18:00:18 +00:00

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