Ticket #2274: Portfile

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

java/commons-pool Portfile

Line 
1# $Id$
2
3PortSystem 1.0
4
5name                    commons-pool
6version                 1.2
7
8categories              java
9maintainers             james@jberry.us
10platforms               darwin
11
12description             Jakarta Commons-Pool
13long_description        Commons-Pool provides a generic object pooling interface, a toolkit \
14                                        for creating modular object pools and several general purpose pool \
15                                        implementations.
16homepage                        http://jakarta.apache.org/commons/pool/
17                               
18distname                        ${name}-${version}-src
19master_sites            apache:jakarta/commons/pool/source/
20checksums               md5 e7dc9f479c6a4260f84f6751b434295a
21
22depends_build           bin:ant:apache-ant
23depends_lib                     bin:java:kaffe \
24                                        lib:XXX:junit \
25                                        lib:XXX:commons-collections
26                                       
27use_configure           no
28
29worksrcdir                      ${name}-${version}
30
31build.cmd                       ant
32build.target            dist
33build.args                      -Djunit.jar=${prefix}/share/java/junit.jar \
34                                        -Dcommons-collections.jar=${prefix}/share/java/commons-collections.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-pool.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}