openbsd-ports/databases/sharedance/Makefile
jasper b2e44ccb2a import sharedance 6.0
Sharedance is a high-performance server that centralize ephemeral
KEY/DATA Pairs on remote hosts, without the overhead and the complexity
of an SQL database.
It was mainly designed to share caches and sessions between a pool of
web servers. Access to a sharedance server is trivial through a simple
PHP API and it is compatible with the expectations of PHP 4 and PHP 5
session handlers.

from William Yodlowsky with some tweaks by me
2008-09-17 14:27:53 +00:00

38 lines
949 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2008/09/17 14:27:53 jasper Exp $
COMMENT= high-performance server that centralizes key/data pairs
DISTNAME= sharedance-0.6
CATEGORIES= databases
HOMEPAGE= http://sharedance.pureftpd.org/project/sharedance
MAINTAINER= William Yodlowsky <bsd@openbsd.rutgers.edu>
# BSD
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= c event
MASTER_SITES= http://download.pureftpd.org/pub/sharedance/
CONFIGURE_STYLE= simple
REGRESS_TARGET= check
EXAMPLESDIR= ${PREFIX}/share/examples/sharedance
PHP_SCRIPTS= session_handler.php sharedance.php \
test_session.php test_sharedance.php
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/sharedance
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/sharedance
${INSTALL_DATA_DIR} ${EXAMPLESDIR}
.for i in ${PHP_SCRIPTS}
${INSTALL_DATA} ${WRKSRC}/php/${i} ${EXAMPLESDIR}
.endfor
.include <bsd.port.mk>