Ticket #2270: Portfile

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

java/xalanj Portfile

Line 
1# $Id$
2
3PortSystem 1.0
4
5name                    xalanj
6version                 2.6.0
7set ver2                        2_6_0
8
9categories              java
10maintainers             james@jberry.us
11platforms               darwin
12
13description             Apache Xerces 2 Java XML Parser
14long_description        Xalan-Java is an XSLT processor for transforming XML documents \
15                                        into HTML, text, or other XML document types. It implements \
16                                        XSL Transformations (XSLT) Version 1.0 and  XML Path Language \
17                                        (XPath) Version 1.0. It can be used from the command line, \
18                                        in an applet or a servlet, or as a module in other program.
19homepage                        http://xml.apache.org/xalan-j/
20
21distname                        xalan-j_${ver2}-src
22master_sites            apache:xml/xalan-j/source/
23checksums               md5 a210f7108e680ab60a11977ec99ab1f9
24
25depends_build           bin:ant:apache-ant
26depends_lib                     bin:java:kaffe \
27                                        lib:XXX:xercesj
28                                       
29worksrcdir                      xalan-j_${ver2}
30
31use_configure           no
32
33build.cmd                       ant
34build.target            jar docs javadocs
35
36destroot        {
37        xinstall -m 755 -d ${destroot}${prefix}/share/java \
38                ${destroot}${prefix}/share/doc
39        xinstall -m 644 \
40                ${worksrcpath}/build/xalan.jar \
41                ${destroot}${prefix}/share/java/
42        file copy ${worksrcpath}/build/docs ${destroot}${prefix}/share/doc/${name}
43}