Add py-fcgi 0.1, python FastCGI interface library.
PR: 40722 Submitted by: JunSeon Oh <hollywar@mail.holywar.net>
This commit is contained in:
parent
edc3c16a0a
commit
5f6e596f1c
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=63176
6 changed files with 44 additions and 0 deletions
|
@ -323,6 +323,7 @@
|
|||
SUBDIR += pruby
|
||||
SUBDIR += publicfile
|
||||
SUBDIR += py-HTMLgen
|
||||
SUBDIR += py-fcgi
|
||||
SUBDIR += py-websvcs
|
||||
SUBDIR += pyweblib
|
||||
SUBDIR += qdecoder
|
||||
|
|
33
www/py-fcgi/Makefile
Normal file
33
www/py-fcgi/Makefile
Normal file
|
@ -0,0 +1,33 @@
|
|||
# New ports collection makefile for: py-fcgi
|
||||
# Date created: 18 July 2002
|
||||
# Whom: JunSeon Oh <hollywar@mail.holywar.net>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= fcgi
|
||||
PORTVERSION= 0.1
|
||||
CATEGORIES= www python
|
||||
MASTER_SITES= http://alldunn.com/python/ \
|
||||
ftp://ftp.holywar.net/pub/FreeBSD/
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
DISTNAME= ${PORTNAME}
|
||||
EXTRACT_SUFX= .py
|
||||
EXTRACT_ONLY= #
|
||||
|
||||
MAINTAINER= hollywar@mail.holywar.net
|
||||
|
||||
USE_PYTHON= yes
|
||||
NO_WRKSUBDIR= yes
|
||||
|
||||
post-extract:
|
||||
@${INSTALL_DATA} ${DISTDIR}/fcgi.py ${WRKSRC}
|
||||
|
||||
do-build:
|
||||
@${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}
|
||||
@${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}
|
||||
|
||||
do-install:
|
||||
@${INSTALL_DATA} ${WRKSRC}/fcgi.py* ${PYTHON_SITELIBDIR}
|
||||
|
||||
.include <bsd.port.mk>
|
1
www/py-fcgi/distinfo
Normal file
1
www/py-fcgi/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (fcgi.py) = f350337bb73c65a8d3626b581af0fe39
|
1
www/py-fcgi/pkg-comment
Normal file
1
www/py-fcgi/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
Python FastCGI interface library
|
5
www/py-fcgi/pkg-descr
Normal file
5
www/py-fcgi/pkg-descr
Normal file
|
@ -0,0 +1,5 @@
|
|||
The fcgi.py Python module handles communication with the FastCGI module of the
|
||||
Apache or Stronghold web server. You can make a pyton fastcgi script very easy
|
||||
with this module.
|
||||
|
||||
WWW: http://alldunn.com/python/
|
3
www/py-fcgi/pkg-plist
Normal file
3
www/py-fcgi/pkg-plist
Normal file
|
@ -0,0 +1,3 @@
|
|||
%%PYTHON_SITELIBDIR%%/fcgi.py
|
||||
%%PYTHON_SITELIBDIR%%/fcgi.pyc
|
||||
%%PYTHON_SITELIBDIR%%/fcgi.pyo
|
Loading…
Reference in a new issue