Ticket #13015: Portfile

File Portfile, 1.2 KB (added by antoine@…, 17 years ago)

java/servlet24-api Portfile

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