ports/devel/py-ruledispatch/files/pkg-deinstall.in
Nicola Vitale 20a3ee6f8d Rule-based Dispatching and Generic Functions
Author:	Phillip J. Eby <peak@eby-sarna.com>

PR:		ports/106767
Submitted by:	Dryice Liu	<dryice at dryice.name>
Approved by:	alexbl (mentor)
2007-01-04 14:15:45 +00:00

17 lines
221 B
Bash

#!/bin/sh
# $FreeBSD$
PKGNAME=$1
#
case $2 in
DEINSTALL)
easy_install -q -N -m -x -S %%PYTHON_SITELIBDIR%% %%EGG%%
;;
POST-DEINSTALL)
exit 0
;;
*)
echo "Unexpected Argument $2!!!"
exit 1
;;
esac
exit 0