1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name commons-launcher |
---|
6 | version 1.1 |
---|
7 | |
---|
8 | categories java |
---|
9 | maintainers james@jberry.us |
---|
10 | platforms darwin |
---|
11 | |
---|
12 | description Jakarta Commons-Launcher |
---|
13 | long_description The Launcher Component is designed to be a cross platform Java application \ |
---|
14 | launcher. Commons-launcher eliminates the need for a batch or shell script \ |
---|
15 | to launch a Java class. The original Java classes come from the Jakarta \ |
---|
16 | Tomcat 4.0 project. |
---|
17 | homepage http://jakarta.apache.org/commons/launcher/ |
---|
18 | |
---|
19 | distname ${name}-${version}-src |
---|
20 | master_sites apache:jakarta/commons/launcher/source/ |
---|
21 | checksums md5 99082b05bfc6f5ce452d179ee2871ef9 |
---|
22 | |
---|
23 | depends_build bin:ant:apache-ant |
---|
24 | depends_lib bin:java:kaffe \ |
---|
25 | lib:XXX:junit |
---|
26 | |
---|
27 | worksrcdir ${name} |
---|
28 | |
---|
29 | use_configure no |
---|
30 | |
---|
31 | build.cmd ant |
---|
32 | build.target jar javadoc |
---|
33 | build.args -Djunit.jar=${prefix}/share/java/junit.jar |
---|
34 | |
---|
35 | destroot { |
---|
36 | xinstall -m 755 -d ${destroot}${prefix}/share/java \ |
---|
37 | ${destroot}${prefix}/share/doc |
---|
38 | xinstall -m 644 \ |
---|
39 | ${worksrcpath}/dist/bin/commons-launcher.jar \ |
---|
40 | ${worksrcpath}/dist/bin/LauncherBootstrap.class \ |
---|
41 | ${destroot}${prefix}/share/java/ |
---|
42 | file copy ${worksrcpath}/dist/docs ${destroot}${prefix}/share/doc/${name} |
---|
43 | } |
---|