Ticket #2280: Portfile

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

java/commons-fileupload Portfile

Line 
1# $Id$
2
3PortSystem 1.0
4
5name                    commons-fileupload
6version                 1.0
7
8categories              java
9maintainers             james@jberry.us
10platforms               darwin
11
12description             Jakarta Commons-FileUpload
13long_description        FileUpload makes it easy to add robust, high-performance, file \
14                                        upload  capability to your servlets and web applications.
15homepage                        http://jakarta.apache.org/commons/fileupload/
16                               
17distname                        ${name}-${version}-src
18master_sites            apache:jakarta/commons/fileupload/source/
19checksums               md5 c6fa0cc10e18cffa8c479c6cb61914b8
20
21depends_build           bin:ant:apache-ant
22depends_lib                     bin:java:kaffe \
23                                        lib:XXX:junit
24
25use_configure           no
26
27worksrcdir                      ${name}-${version}
28
29build.cmd                       ant
30build.target            dist
31build.args                      -Dfinal.name=${name}
32
33destroot        {
34        xinstall -m 755 -d ${destroot}${prefix}/share/java \
35                ${destroot}${prefix}/share/doc
36        xinstall -m 644 \
37                ${worksrcpath}/dist/commons-fileupload.jar \
38                ${destroot}${prefix}/share/java/
39        file copy ${worksrcpath}/dist/docs ${destroot}${prefix}/share/doc/${name}
40}