Ticket #2272: Portfile

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

java/commons-collections Portfile

Line 
1# $Id: Portfile,v 1.1 2004/02/16 14:53:07 olegb Exp $
2
3PortSystem 1.0
4
5name                    commons-collections
6version                 3.1
7
8categories              java
9maintainers             james@jberry.us
10platforms               darwin
11
12description             Jakarta Commons-Collections
13long_description        Commons-Collections provides a suite of classes that extend or augment \
14                                        the Java Collections Framework.
15homepage                        http://jakarta.apache.org/commons/collections/
16                               
17distfiles                       ${distname}-src${extract.suffix}
18master_sites            apache:jakarta/commons/collections/source/
19checksums               md5 2da710d9c81ae85ee3a386e7ed1b1fe8
20
21depends_build           bin:ant:apache-ant
22depends_lib                     bin:java:kaffe \
23                                        lib:XXX:junit
24                               
25use_configure           no
26
27build.cmd                       ant
28build.target            jar javadoc
29build.args                      -Djar.name=${name}.jar \
30                                        -Djunit.jar=${prefix}/share/java/junit.jar
31
32destroot        {
33        xinstall -m 755 -d ${destroot}${prefix}/share/java \
34                ${destroot}${prefix}/share/doc
35        xinstall -m 644 \
36                ${worksrcpath}/build/commons-collections.jar \
37                ${destroot}${prefix}/share/java/
38        file copy ${worksrcpath}/build/docs ${destroot}${prefix}/share/doc/${name}
39        system "chmod -R 755 ${destroot}${prefix}/share/doc/${name}"
40}