38 lines
1003 B
Makefile
38 lines
1003 B
Makefile
# $OpenBSD: Makefile,v 1.4 2007/10/08 08:22:39 steven Exp $
|
|
|
|
SHARED_ONLY= Yes
|
|
|
|
COMMENT= PostgreSQL database adapter for Python
|
|
|
|
DISTNAME= psycopg2-2.0.5.1
|
|
PKGNAME= py-${DISTNAME}p0
|
|
CATEGORIES= databases lang/python
|
|
|
|
HOMEPAGE= http://initd.org/projects/psycopg2
|
|
|
|
MAINTAINER= Martynas Venckus <martynas@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
WANTLIB= pq
|
|
|
|
MASTER_SITES= http://initd.org/pub/software/psycopg/
|
|
|
|
MODULES= lang/python
|
|
RUN_DEPENDS= :postgresql-client-*:databases/postgresql
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/py-psycopg2
|
|
cd ${WRKSRC}/doc && \
|
|
find . -type d -exec ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/py-psycopg2/{} \; && \
|
|
find . ! -type d -exec ${INSTALL_DATA} {} ${PREFIX}/share/doc/py-psycopg2/{} \;
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/py-psycopg2
|
|
${INSTALL_DATA} ${WRKSRC}/examples/* ${PREFIX}/share/examples/py-psycopg2/
|
|
|
|
.include <bsd.port.mk>
|