Ticket #2275: Portfile

File Portfile, 1.2 KB (added by james@…, 20 years ago)

java/commons-dbcp Portfile

Line 
1# $Id$
2
3PortSystem 1.0
4
5name                    commons-dbcp
6version                 1.2.1
7
8categories              java
9maintainers             james@jberry.us
10platforms               darwin
11
12description             Jakarta Commons-DBCP
13long_description        Commons-DBCP provides database connection pooling services.
14homepage                        http://jakarta.apache.org/commons/dbcp/
15                               
16distname                        ${name}-${version}-src
17master_sites            apache:jakarta/commons/dbcp/source/
18checksums               md5 b7336a1d34ea0e8e9c39b67af510c46d
19
20depends_build           bin:ant:apache-ant
21depends_lib                     bin:java:kaffe \
22                                        lib:XXX:junit \
23                                        lib:XXX:commons-collections \
24                                        lib:XXX:commons-pool
25
26use_configure           no
27
28worksrcdir                      ${name}-${version}
29
30build.cmd                       ant
31build.target            dist
32build.args                      -Djunit.jar=${prefix}/share/java/junit.jar \
33                                        -Dcommons-collections.jar=${prefix}/share/java/commons-collections.jar \
34                                        -Dcommons-pool.jar=${prefix}/share/java/commons-pool.jar
35
36destroot        {
37        xinstall -m 755 -d ${destroot}${prefix}/share/java \
38                ${destroot}${prefix}/share/doc
39        xinstall -m 644 \
40                ${worksrcpath}/dist/commons-dbcp.jar \
41                ${destroot}${prefix}/share/java/
42        file copy ${worksrcpath}/dist/docs ${destroot}${prefix}/share/doc/${name}
43        system "chmod -R 755 ${destroot}${prefix}/share/doc/${name}"
44}