8aba416409
- Update MASTER_SITES PR: ports/87774 Submitted by: Dryice Liu <dryice@hotpop.com> Approved by: Choe, Cheng-Dae <whitekid@gmail.com> (maintainer)
32 lines
890 B
Makefile
32 lines
890 B
Makefile
# Ports collection makefile for: py-sqlobject
|
|
# Date created: 24 June 2004
|
|
# Whom: "Choe, Cheng-Dae" whitekid
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sqlobject
|
|
PORTVERSION= 0.7.0
|
|
CATEGORIES= databases python
|
|
MASTER_SITES= http://cheeseshop.python.org/packages/source/S/SQLObject/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= SQLObject-${PORTVERSION}
|
|
|
|
MAINTAINER= whitekid@gmail.com
|
|
COMMENT= A python object for manipulation with SQL table row
|
|
|
|
# Someone will add SQLite, Firebird and DBMConnection support things.
|
|
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/MySQLdb/__init__.py:${PORTSDIR}/databases/py-MySQLdb \
|
|
${PYTHON_SITELIBDIR}/psycopgmodule.so:${PORTSDIR}/databases/py-psycopg
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_MAN} ${WRKSRC}/README.txt ${DOCSDIR}
|
|
${CP} -r ${WRKSRC}/docs/* ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|