512c81064a
- 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)
17 lines
218 B
Bash
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
|