1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name tomcat5-api |
---|
6 | version 5.0.28 |
---|
7 | |
---|
8 | categories java |
---|
9 | maintainers james@jberry.us |
---|
10 | platforms darwin |
---|
11 | |
---|
12 | description Servlet API and JSP API for Tomcat 5 servlet container. |
---|
13 | long_description Tomcat is the servlet container that is used in the official \ |
---|
14 | Reference Implementation for the Java Servlet and JavaServer Pages \ |
---|
15 | technologies. The Java Servlet and JavaServer Pages specifications \ |
---|
16 | are developed by Sun under the Java Community Process. \ |
---|
17 | This project provides the servlet and jsp api jars from Tomcat 5. |
---|
18 | homepage http://jakarta.apache.org/tomcat/ |
---|
19 | |
---|
20 | distname jakarta-tomcat-${version}-src |
---|
21 | master_sites apache:jakarta/tomcat-5/v${version}/src/ |
---|
22 | checksums md5 8115f86558aef8a17543397e7f9d9469 |
---|
23 | |
---|
24 | depends_build bin:ant:apache-ant |
---|
25 | depends_lib bin:java:kaffe |
---|
26 | |
---|
27 | worksrcdir ${distname}/jakarta-tomcat-5 |
---|
28 | |
---|
29 | use_configure no |
---|
30 | |
---|
31 | build.cmd ant |
---|
32 | build.target build-depends |
---|
33 | build.args -Dbase.path=${worksrcpath}/../repository |
---|
34 | |
---|
35 | destroot { |
---|
36 | xinstall -m 755 -d ${destroot}${prefix}/share/java \ |
---|
37 | ${destroot}${prefix}/share/doc |
---|
38 | xinstall -m 644 \ |
---|
39 | ${worksrcpath}/../repository/jsp-api-2.0/lib/jsp-api.jar \ |
---|
40 | ${worksrcpath}/../repository/servlet-api-2.4/lib/servlet-api.jar \ |
---|
41 | ${destroot}${prefix}/share/java/ |
---|
42 | } |
---|