mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
e5413cf277
- Added files/pkg-deinstall files/pkg-install - Added another MASTER_SITE - Added optional MSSQL support - Removed files/patch-setup.py - Taken maintainership by dryice@ PR: 106775 Submitted by: dryice@dryice.name Approved by: alexbl (mentor), dryice (maintainer)
18 lines
218 B
Bash
18 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
|