freebsd-ports/devel/py-wsgiutils/files/pkg-install.in
Nicola Vitale 2019e4fa80 - Added devel/py-setuptools as dependency
- Bumped PORTREVISION
- Fixed the issue with packing list, when you have
  previously installed setuptools on the system
- Fixed a typo in pkg-descr
- Replaced pkg-plist with PLIST_FILES

PR:		ports/107613
Submitted by:	Nicola Vitale <nivit at email.it>
Approved by:	alexbl (mentor, implicit), maintainer timeout (15 days)
2007-01-21 20:19:19 +00:00

16 lines
207 B
Bash

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