freebsd-ports/databases/py-PyGreSQL/Makefile
Mark Linimon 15c98e8f3b Update PyGreSQL to 3.4. Previous version was packed with the
postgresql dist, and while postgresql was version 7.3.5, PyGreSQL's
own version just bumped from 3.3 to 3.4. Hence portepoch.

PR:		ports/61597
Submitted by:	 Palle Girgensohn <girgen@pingpong.net> (maintainer)
2004-01-30 04:28:20 +00:00

50 lines
1.3 KiB
Makefile

# Ports collection Makefile for: PyGreSQL
# Date created: 2/22/1999
# Whom: nectar@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= PyGreSQL
PORTVERSION= 3.4
PORTEPOCH= 1
CATEGORIES= databases python
MASTER_SITES= ftp://ftp.pygresql.org/pub/distrib/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
EXTRACT_SUFX= .tgz
MAINTAINER= girgen@pingpong.net
COMMENT= A Python interface to PostgreSQL, both classic interface and DP-API 2.0
BUILD_DEPENDS= ${DATETIME_DEP}:${PORTSDIR}/lang/py-mx-base
RUN_DEPENDS= ${DATETIME_DEP}:${PORTSDIR}/lang/py-mx-base
LIB_DEPENDS= pq:${PORTSDIR}/${POSTGRESQL_PORT}
POSTGRESQL_PORT?= databases/postgresql7
USE_PYTHON= yes
DATETIME_DEP= ${PYTHON_SITELIBDIR}/mx/DateTime/__init__.py
USE_REINPLACE=yes
pre-build:
@ cd ${WRKSRC} ; ${REINPLACE_CMD} -e 's,%%LOCALBASE%%,${LOCALBASE},g' setup.py
do-build:
@ cd ${WRKSRC} ; ${PYTHON_CMD} setup.py build
do-install:
@ cd ${WRKSRC} ; ${PYTHON_CMD} setup.py install
post-install:
@ ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py -lf \
${PYTHONPREFIX_SITELIBDIR}
@ ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py -lf \
${PYTHONPREFIX_SITELIBDIR}
.if !defined(NOPORTDOCS)
.for docfile in Announce ChangeLog
@ ${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/${docfile} \
${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>