Ticket #2298: Portfile

File Portfile, 965 bytes (added by james@…, 20 years ago)

java/dom4j Portfile

Line 
1# $Id$
2
3PortSystem 1.0
4
5name                            dom4j
6version                         1.5
7
8categories                      java
9maintainers                     james@jberry.us
10platforms                       darwin
11
12description                     XML, XPATH, and XSLT support for Java.
13long_description        dom4j is an easy to use, open source library for working with XML, \
14                                        XPath and  XSLT on the Java platform using the Java Collections \
15                                        Framework and with full support for DOM, SAX and JAXP.
16homepage                        http://www.dom4j.org
17
18master_sites            sourceforge:dom4j/
19checksums                       md5 79598c3b2420a178ab19d62b2531feec
20
21depends_build           bin:ant:apache-ant
22depends_lib                     bin:java:kaffe \
23                                        lib:XXX:junit
24
25use_configure           no
26
27build.cmd                       ant
28build.target            all
29build.args                      -Djunit.jar=${prefix}/share/java/junit.jar
30
31destroot {
32        xinstall -m 755 -d ${destroot}${prefix}/share/java \
33                ${destroot}${prefix}/share/doc
34        xinstall -m 644 ${worksrcpath}/build/${name}.jar \
35                ${destroot}${prefix}/share/java/
36        file copy ${worksrcpath}/build/doc ${destroot}${prefix}/share/doc/${name}
37}