1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name libdbi-drivers |
---|
6 | version 0.8.3-1 |
---|
7 | categories databases devel |
---|
8 | maintainers mta@umich.edu |
---|
9 | description Drivers for libdbi |
---|
10 | long_description $description |
---|
11 | homepage http://libdbi.sourceforge.net/ |
---|
12 | platforms darwin |
---|
13 | master_sites sourceforge |
---|
14 | |
---|
15 | checksums md5 4de79b323162a5a7652b65b608eca6cd \ |
---|
16 | sha1 599fbab115419e8fc88b3b31a38031584ee213b5 \ |
---|
17 | rmd160 e0aa9e67f6560fb44018b1d35d90d4ac21b48597 |
---|
18 | |
---|
19 | depends_lib port:libdbi |
---|
20 | |
---|
21 | configure.args --with-dbi-incdir=/opt/local/include --with-dbi-libdir=/opt/local/lib \ |
---|
22 | --disable-docs |
---|
23 | |
---|
24 | variant mysql description "Include drivers for MySQL" { |
---|
25 | configure.args-append "--with-mysql --with-mysql-dir=/opt/local" |
---|
26 | } |
---|
27 | |
---|
28 | variant postgresql description "Include drivers for PostgreSQL" { |
---|
29 | configure.args-append "--with-pgsql --with-pgsql-dir=/opt/local" |
---|
30 | } |
---|
31 | |
---|
32 | variant sqlite description "Include drivers for SQLite" { |
---|
33 | configure.args-append "--with-sqlite --with-sqlite-dir=/opt/local" |
---|
34 | } |
---|
35 | |
---|
36 | variant sqlite3 description "Include drivers for SQLite3" { |
---|
37 | configure.args-append "--with-sqlite3 --with-sqlite3-dir=/opt/local" |
---|
38 | } |
---|
39 | |
---|
40 | variant msql description "Include drivers for mSQL" { |
---|
41 | configure.args-append "--with-msql --with-msql-dir=/opt/local" |
---|
42 | } |
---|
43 | |
---|
44 | variant docs description "Build the documentation" { |
---|
45 | configure.args-delete --disable-docs |
---|
46 | |
---|
47 | depends_build port:openjade |
---|
48 | } |
---|