Commits
David Strubbe authored 3ebbce71e06
1 + | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
1 2 | # $Id$ |
2 3 | |
3 4 | PortSystem 1.0 |
4 5 | name opendx-java40 |
5 6 | version 1999.11.15 |
6 7 | categories devel |
8 + | license Permissive |
9 + | # "IBM PUBLIC LICENSE", http://opendx.org/dlSource.html |
7 10 | maintainers nomaintainer |
8 11 | platforms darwin |
9 12 | supported_archs noarch |
10 13 | |
11 14 | description Java classes used by OpenDX |
12 15 | long_description \ |
13 16 | Classes to allow a Java applet access to Javascript objects |
14 17 | |
15 18 | homepage http://opendx.org/ |
16 19 | #master_sites http://opendx.informatics.jax.org/libs/ |
20 23 | |
21 24 | distname netscape-java40 |
22 25 | |
23 26 | configure { } |
24 27 | build { } |
25 28 | destroot { |
26 29 | set java_share_dir ${destroot}${prefix}/share/java |
27 30 | file mkdir ${java_share_dir} |
28 31 | file copy ${worksrcpath}/java40.jar ${java_share_dir} |
29 32 | } |
30 - | |