Ticket #2284: Portfile

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

java/commons-httpclient Portfile

Line 
1# $Id$
2
3PortSystem 1.0
4
5name                    commons-httpclient
6version                 2.0.1
7
8categories              java
9maintainers             james@jberry.us
10platforms               darwin
11
12description             Jakarta Commons-HttpClient
13long_description        Commons-HttpClient provides a framework for working with the \
14                                        client-side  of the HTTP protocol.
15homepage                        http://jakarta.apache.org/commons/httpclient/
16                               
17distname                        ${name}-${version}-src
18master_sites            apache:jakarta/commons/httpclient/source/
19checksums               md5 b74f527e2eee22f1212cf2689b7a3761
20
21depends_build           bin:ant:apache-ant
22depends_lib                     bin:java:kaffe \
23                                        lib:XXX:junit \
24                                        lib:XXX:commons-logging
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-logging.jar=${prefix}/share/java/commons-logging.jar
34                                       
35post-extract {
36        file mkdir ${worksrcpath}/lib
37}
38
39destroot        {
40        xinstall -m 755 -d ${destroot}${prefix}/share/java \
41                ${destroot}${prefix}/share/doc
42        xinstall -m 644 \
43                ${worksrcpath}/dist/commons-httpclient.jar \
44                ${destroot}${prefix}/share/java/
45        file copy ${worksrcpath}/dist/docs ${destroot}${prefix}/share/doc/${name}
46}