aboutsummaryrefslogtreecommitdiff
path: root/www/py-turbogears2/files/pkg-deinstall.in
blob: 2d0f147f3ccf84abe01b2ed7286f0b275179d0ce (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 -q -x -m "%%PYTHON_SITELIBDIR%%/${f}"
	done
	;;
    POST-DEINSTALL)
	exit 0
	;;
    *)
	echo "Unexpected Argument $2!!!"
	exit 1
	;;
esac
exit 0