blob: 93b27db4449c12a22cfc9ea3c09790e80bba85d7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# $FreeBSD$
#
# MAINTAINER: portmgr@FreeBSD.org
actions: []
post-deinstall: <<EOD
case "%@" in
/*) f="%@" ;;
*) f="%D/%@" ;;
esac
/bin/rm -f ${PKG_ROOTDIR}/$f 2>/dev/null || /usr/bin/true
EOD
|