Add mod_snake 0.5.0, a library to easily create flexible Apache
modules.
This commit is contained in:
parent
6c83717c9c
commit
a5a5208e21
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=41239
6 changed files with 42 additions and 0 deletions
|
@ -128,6 +128,7 @@
|
|||
SUBDIR += mod_python
|
||||
SUBDIR += mod_roaming
|
||||
SUBDIR += mod_ruby
|
||||
SUBDIR += mod_snake
|
||||
SUBDIR += mod_throttle
|
||||
SUBDIR += mod_zap
|
||||
SUBDIR += momspider
|
||||
|
|
27
www/mod_snake/Makefile
Normal file
27
www/mod_snake/Makefile
Normal file
|
@ -0,0 +1,27 @@
|
|||
# New ports collection makefile for: mod_snake
|
||||
# Date created: 10 April 2001
|
||||
# Whom: will
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= mod_snake
|
||||
PORTVERSION= 0.5.0
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= modsnake
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
|
||||
BUILD_DEPENDS= ${APXS}:${PORTSDIR}/www/apache13 \
|
||||
${PYTHON_CMD}:${PYTHON_PORTSDIR}
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
|
||||
USE_BZIP2= yes
|
||||
APXS?= ${LOCALBASE}/sbin/apxs
|
||||
USE_PYTHON= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --with-apxs="${APXS}"
|
||||
USE_GMAKE= yes
|
||||
|
||||
.include <bsd.port.mk>
|
1
www/mod_snake/distinfo
Normal file
1
www/mod_snake/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (mod_snake-0.5.0.tar.bz2) = d002432d88dc9f464ffd00d0c6363fe5
|
1
www/mod_snake/pkg-comment
Normal file
1
www/mod_snake/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
A library to easily create flexible Apache modules
|
9
www/mod_snake/pkg-descr
Normal file
9
www/mod_snake/pkg-descr
Normal file
|
@ -0,0 +1,9 @@
|
|||
mod_snake was created in an attempt to give Apache 1.3
|
||||
and 2.0 developers the power to create easy and flexible
|
||||
modules in the Python programming language. Aside from giving
|
||||
modules the same power as they have in C, mod_snake also
|
||||
provides APIs similar to that of mod_python and mod_perl
|
||||
for simple module creation, accelerated Python CGIs, and
|
||||
embedded Python.
|
||||
|
||||
WWW: http://modsnake.sourceforge.net/
|
3
www/mod_snake/pkg-plist
Normal file
3
www/mod_snake/pkg-plist
Normal file
|
@ -0,0 +1,3 @@
|
|||
libexec/apache/libmod_snake.so
|
||||
@exec %D/sbin/apxs -e -A -n snake %D/%F
|
||||
@unexec %D/sbin/apxs -e -A -n snake %D/%F
|
Loading…
Reference in a new issue