forked from Lainports/freebsd-ports
interacting with a PostgreSQL database. It supports version 3.0 of the protocol--the current primary version of protocol. The package also provides a basic protocol transaction class. This class keeps the state of the protocol in an interrupt safe manner, and validates the integrity of the communication as messages are received. In general, you probably will never use this package directly, unless you are writing a driver. WWW: http://python.projects.postgresql.org/ PR: ports/130252 Submitted by: Wen Heping <wenheping at gmail.com>
29 lines
646 B
Makefile
29 lines
646 B
Makefile
# Ports collection makefile for: py-pg_pqueue
|
|
# Date created: 07 Jan 2009
|
|
# Whom: Wen Heping <wenheping@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pg_pqueue
|
|
PORTVERSION= 1.0.2
|
|
CATEGORIES= databases python
|
|
MASTER_SITES= http://python.projects.postgresql.org/files/ \
|
|
CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= wenheping@gmail.com
|
|
COMMENT= PostgreSQL PQ Protocol Modules
|
|
|
|
USE_PYTHON= 2.4+
|
|
USE_PYDISTUTILS= easy_install
|
|
PYEASYINSTALL_ARCHDEP= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/changes.txt ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|