Ticket #2290: Portfile

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

java/jakarto-oro Portfile

Line 
1# $Id$
2
3PortSystem 1.0
4
5name                    jakarta-oro
6version                 2.0.8
7
8categories              java
9maintainers             james@jberry.us
10platforms               darwin
11
12description             Jakarta ORO
13long_description        The Jakarta-ORO Java classes are a set of text-processing Java \
14                                        classes that provide Perl5 compatible regular expressions,  \
15                                        AWK-like regular expressions, glob expressions, and utility \
16                                        classes for performing substitutions, splits, filtering \
17                                        filenames, etc. This library is the successor to the OROMatcher, \
18                                        AwkTools, PerlTools, and TextTools libraries originally  from ORO, Inc.
19homepage                        http://jakarta.apache.org/oro/
20                               
21master_sites            apache:jakarta/oro/source/
22checksums               md5 6f7690c6ba9750e3cbb8ebd10078a79a
23
24depends_build           bin:ant:apache-ant
25depends_lib                     bin:java:kaffe
26
27use_configure           no
28
29build.cmd                       ant
30build.target            package
31build.args                      -Dfinal.name=${name} \
32                                        -Dfinal.dir=${worksrcpath}/dist
33
34destroot        {
35        xinstall -m 755 -d ${destroot}${prefix}/share/java \
36                ${destroot}${prefix}/share/doc
37        xinstall -m 644 \
38                ${worksrcpath}/dist/${name}.jar \
39                ${destroot}${prefix}/share/java/
40        file copy ${worksrcpath}/dist/docs ${destroot}${prefix}/share/doc/${name}
41}