1 | # $Id: Portfile,v 1.20 2005/04/29 16:17:45 jberry Exp $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name postgresql-jdbc |
---|
6 | version 8.0-311 |
---|
7 | categories database java |
---|
8 | maintainers decibel@decibel.org |
---|
9 | description PostgreSQL JDBC driver |
---|
10 | long_description Pure java JDBC driver for connecting to PostgreSQL databases. |
---|
11 | homepage http://jdbc.postgresql.org/ |
---|
12 | |
---|
13 | platforms darwin |
---|
14 | |
---|
15 | distname ${name}-${version}.src |
---|
16 | master_sites ${homepage}/download/ |
---|
17 | checksums md5 e31b6e68141883e5c89a3a9b0fb95c02 |
---|
18 | |
---|
19 | depends_build bin:ant:apache-ant |
---|
20 | |
---|
21 | set workTarget "" |
---|
22 | |
---|
23 | use_configure no |
---|
24 | |
---|
25 | build.cmd "ant" |
---|
26 | |
---|
27 | destroot { |
---|
28 | xinstall -m 755 -d ${destroot}${prefix}/share/java |
---|
29 | file copy ${worksrcpath}${workTarget}/jars/postgresql.jar \ |
---|
30 | ${destroot}${prefix}/share/java/ |
---|
31 | } |
---|