freebsd-ports/www/py-formencode/files/pkg-deinstall.in
Nicola Vitale 512c81064a - Added another MASTER_SITE
- Added files/pkg-deinstall.in files/pkg-install.in
- Removed files/patch-setup.py (it now uses devel/setuptools)
- Taken maintainership by dryice@

PR:		106772
Approved by:	alexbl (mentor), dryice (maintainer)
2007-01-04 12:57:08 +00:00

17 lines
218 B
Bash

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