aboutsummaryrefslogtreecommitdiff
path: root/www/py-turbogears2/files/pkg-deinstall.in
blob: e184b62091c24972023eb31ee2c99bec81b5de7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
#
PKGNAME=$1
#
case $2 in
    DEINSTALL)
	for f in %%EGGS%%
	do easy_install -x -m -D "%%PYTHON_SITELIBDIR%%/${f}"
	done
	;;
    POST-DEINSTALL)
	exit 0
	;;
    *)
	echo "Unexpected Argument $2!!!"
	exit 1
	;;
esac
exit 0