mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
887f3f38c3
- Changlog here: http://initd.org/pub/software/psycopg/ChangeLog
60 lines
1.4 KiB
Makefile
60 lines
1.4 KiB
Makefile
# New ports collection makefile for: py-psycopg2
|
|
# Date created: 1 August 2006
|
|
# Whom: Martin Wilke <miwi@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= psycopg2
|
|
PORTVERSION= 2.0.5.1
|
|
CATEGORIES= databases python
|
|
MASTER_SITES= http://initd.org/pub/software/psycopg/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= psycopg2-${PORTVERSION}
|
|
|
|
MAINTAINER= miwi@FreeBSD.org
|
|
COMMENT= The high performance Python adapter for PostgreSQL
|
|
|
|
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/mx/DateTime:${PORTSDIR}/lang/py-mx-base
|
|
|
|
USE_PGSQL= yes
|
|
USE_GMAKE= yes
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
do-build:
|
|
@(cd ${WRKSRC}; ${PYTHON_CMD} setup.py build)
|
|
|
|
do-install:
|
|
@(cd ${WRKSRC}; ${PYTHON_CMD} setup.py install)
|
|
|
|
.if ${OSVERSION} < 500000
|
|
BROKEN= Does not compile on 4.x
|
|
.endif
|
|
|
|
DOCSDIR= ${TARGETDIR}/share/doc/py-psycopg2
|
|
EXAMPLESDIR= ${TARGETDIR}/share/examples/py-psycopg2
|
|
|
|
EXAMPLES= binary.py cursor.py dt.py lastrowid.py notify.py threads.py \
|
|
whereareyou.jpg copy_from.py dialtone.py encoding.py \
|
|
mogrify.py simple.py tz.py copy_to.py dict.py fetch.py \
|
|
myfirstrecipe.py somehackers.jpg usercast.py
|
|
|
|
DOCS= AUTHORS ChangeLog INSTALL README PKG-INFO
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
.for f in ${EXAMPLES}
|
|
@${INSTALL_DATA} ${WRKSRC}/examples/${f} ${EXAMPLESDIR}
|
|
.endfor
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for f in ${DOCS}
|
|
@${INSTALL_MAN} ${WRKSRC}/${f} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|