aboutsummaryrefslogtreecommitdiffstats
path: root/databases/py-sqlalchemy06/Makefile
blob: ff074e77063e5d5239ff1a8069e45dd6bb0f078f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Ports collection makefile for:    py-sqlalchemy
# Date created:             12 Auguest 2004
# Whom:                 Dryice Dong Liu <dryice@dryice.name>
#
# $FreeBSD$
#

PORTNAME=   sqlalchemy
PORTVERSION=    0.2.8
CATEGORIES= databases python
MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE} \
        http://cheeseshop.python.org/packages/source/S/SQLAlchemy/ \
        http://dryice.name/computer/FreeBSD/distfiles/
DISTNAME=   SQLAlchemy-${PORTVERSION}

MAINTAINER= dryice@dryice.name
COMMENT=    A Python SQL toolkit and Object Relational Mapper

USE_PYTHON= 2.3+
PLIST_SUB+= PORTVERSION=${PORTVERSION} \
        PYTHONVERSION=${_PYTHON_VERSION} \
        EXAMPLEDIR=share/examples/${PORTNAME}
USE_PYDISTUTILS=    yes

BUILD_DEPENDS+=     easy_install:${PORTSDIR}/devel/py-setuptools

OPTIONS=    FIREBIRD "support FireBird" off
OPTIONS+=   MSSQL "support MS SQL Server" off
OPTIONS+=   MYSQL "support MySql" on
OPTIONS+=   POSTGRE "support PostGreSQL" on
OPTIONS+=   SQLITE "support Sqlite" on

.if !defined(NOPORTDOCS)
PORTDOCS=   adv_datamapping.html alphaapi.html \
        alphaimplementation.html datamapping.html \
        dbengine.html docs.css docstrings.html \
        documentation.html index.html metadata.html \
        plugins.html pooling.html scripts.js \
        sqlconstruction.html style.css syntaxhighlight.css \
        tutorial.html types.html unitofwork.html
.endif

.include <bsd.port.pre.mk>

.if defined(WITH_FIREBIRD)
RUN_DEPENDS+=   ${PYTHON_SITELIBDIR}/kinterbasdb/__init__.py:${PORTSDIR}/databases/kinterbasdb
.endif

.if defined(WITH_MSSQL)
RUN_DEPENDS+=   ${PYTHON_SITELIBDIR}/pymssql.py:${PORTSDIR}/databases/py-mssql
.endif

.if !defined(WITHOUT_MYSQL)
RUN_DEPENDS+=   ${PYTHON_SITELIBDIR}/MySQLdb/__init__.py:${PORTSDIR}/databases/py-MySQLdb
.endif

.if !defined(WITHOUT_POSTGRE)
RUN_DEPENDS+=   ${PYTHON_SITELIBDIR}/psycopg2/__init__.py:${PORTSDIR}/databases/py-psycopg2
.endif

.if !defined(WITHOUT_SQLITE)
RUN_DEPENDS+=   ${PYTHON_SITELIBDIR}/pysqlite2/__init__.py:${PORTSDIR}/databases/py-pysqlite23
.endif

post-install:
.if !defined(NOPORTDOCS)
    ${MKDIR} ${DOCSDIR}
.for i in ${PORTDOCS}
    ${INSTALL_DATA} ${WRKSRC}/doc/${i} ${DOCSDIR}
.endfor
.endif

    ${MKDIR} ${EXAMPLESDIR}
.for i in adjacencytree backref polymorph vertical
    ${CP} -r ${WRKSRC}/examples/${i} ${EXAMPLESDIR}
.endfor

.include <bsd.port.post.mk>