modular session management system across HTTP requests. Persistency is a key feature for such applications as shopping carts, login/authentication routines, and application that need to carry data across HTTP requests. CGI::Session does that and many more. from Jason Crawford <jasonrcrawford@gmail.com>
29 lines
620 B
Makefile
29 lines
620 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2007/06/01 22:00:35 aanriot Exp $
|
|
|
|
COMMENT= "persistent session data in CGI applications"
|
|
|
|
MODULES= cpan
|
|
DISTNAME= CGI-Session-4.20
|
|
CATEGORIES= www
|
|
|
|
MAINTAINER= Jason Crawford <jasonrcrawford@gmail.com>
|
|
|
|
# Perl
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
RUN_DEPENDS= ::converters/p5-JSON \
|
|
::databases/p5-DBI \
|
|
::databases/p5-DBD-SQLite \
|
|
::databases/p5-DBD-mysql \
|
|
::databases/p5-DBD-Pg \
|
|
::devel/p5-FreezeThaw \
|
|
::devel/p5-YAML-Syck \
|
|
::www/p5-CGI-Simple
|
|
|
|
REGRESS_DEPENDS=${RUN_DEPENDS}
|
|
|
|
.include <bsd.port.mk>
|