Ticket #2273: Portfile

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

java/commons-beanutils Portfile

Line 
1# $Id: Portfile,v 1.1 2004/02/16 14:53:07 olegb Exp $
2
3PortSystem 1.0
4
5name                    commons-beanutils
6version                 1.7.0
7
8categories              java
9maintainers             james@jberry.us
10platforms               darwin
11
12description             Jakarta Commons-BeanUtils
13long_description        Commons-BeanUtils provides easy-to-use wrappers around the Java \
14                                        reflection and introspection APIs.
15homepage                        http://jakarta.apache.org/commons/beanutils/
16                               
17distfiles                       ${distname}-src${extract.suffix}
18
19master_sites            apache:jakarta/commons/beanutils/source/
20                               
21checksums               md5 3fd5cbdf70363b151de5cd538f726e67
22
23depends_build           bin:ant:apache-ant
24depends_lib                     bin:java:kaffe \
25                                        lib:XXX:junit \
26                                        lib:XXX:commons-logging \
27                                        lib:XXX:commons-collections
28
29worksrcdir                      ${distname}-src
30
31use_configure           no
32
33build.cmd                       ant
34build.target            jar javadoc
35build.args                      -Dcommons-collections.jar=${prefix}/share/java/commons-collections.jar \
36                                        -Dcommons-logging.jar=${prefix}/share/java/commons-logging.jar \
37                                        -Djunit.jar=${prefix}/share/java/junit.jar
38
39destroot        {
40        xinstall -m 755 -d ${destroot}${prefix}/share/java \
41                ${destroot}${prefix}/share/doc
42        xinstall -m 644 \
43                ${worksrcpath}/dist/commons-beanutils-core.jar \
44                ${worksrcpath}/dist/commons-beanutils.jar \
45                ${destroot}${prefix}/share/java/
46        file copy ${worksrcpath}/dist/docs ${destroot}${prefix}/share/doc/${name}
47}