1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-14 03:10:47 +00:00
freebsd-ports/www/session2/Makefile
Sam Lawrance bbf67b84b1 Add session2 0.6, a quixote session manager with persistence support.
PR:		ports/88083
Submitted by:	Dryice Liu <dryice@liu.com.cn>
2005-11-13 17:10:37 +00:00

43 lines
1.0 KiB
Makefile

# New ports collection makefile for: quixote-session2
# Date created: 15 June 2005
# Whom: Dryice Liu <dryice@liu.com.cn>
#
# $FreeBSD$
#
PORTNAME= session2
PORTVERSION= 0.6
CATEGORIES= www python
MASTER_SITES= http://quixote.idyll.org/session2/ \
http://bsdchat.com/dist/dryice/
DISTNAME= session2-${PORTVERSION}
MAINTAINER= dryice@liu.com.cn
COMMENT= A quixote session manager with persistence support
USE_PYTHON= 2.3+
USE_PYDISTUTILS= yes
OPTIONS= MYSQL "MySQLdb support" on
OPTIONS+= POSTGRESQL "psycopg support" on
.include <bsd.port.pre.mk>
.if defined(WITH_MYSQL)
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/MySQLdb/__init__.py:${PORTSDIR}/databases/py-MySQLdb
.endif
.if defined(WITH_POSTGRESQL)
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/psycopgmodule.so:${PORTSDIR}/databases/py-psycopg
.endif
post-install:
.if !defined(NOPORTDOCS)
@ ${MKDIR} ${DOCSDIR}
.for docfile in CHANGES default.css README.html README.txt TODO
@ ${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.post.mk>