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 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name webtoolkit-java-sdk |
---|
7 | version 2.7.0 |
---|
8 | categories java devel |
---|
9 | license Apache-2 BSD Permissive EPL-1 LGPL-2.1+ {NPL-1.1 GPL} |
---|
10 | maintainers gmail.com:nhoj.patrick openmaintainer |
---|
11 | platforms darwin |
---|
12 | supported_archs noarch |
---|
13 | |
---|
14 | description Google Web Toolkit SDK for Java |
---|
15 | |
---|
16 | long_description Google Web Toolkit (GWT) is a development toolkit for \ |
---|
17 | building and optimizing complex browser-based applications. |
---|
18 | |
---|
19 | homepage http://www.gwtproject.org/ |
---|
20 | master_sites http://storage.googleapis.com/gwt-releases/ |
---|
21 | distname gwt-${version} |
---|
22 | use_zip yes |
---|
23 | |
---|
24 | checksums sha256 aa65061b73836190410720bea422eb8e787680d7bc0c2b244ae6c9a0d24747b3 \ |
---|
25 | rmd160 4c730e3ca663f4e2d8dd61f40efd16b804cfe9a4 |
---|
26 | |
---|
27 | use_configure no |
---|
28 | |
---|
29 | livecheck.type regex |
---|
30 | livecheck.url ${homepage}release-notes.html |
---|
31 | livecheck.regex "Release Notes for (\\d+\\.\\d+(\\.\\d+)?)" |
---|
32 | |
---|
33 | build {} |
---|
34 | |
---|
35 | destroot { |
---|
36 | # Create the target java directory |
---|
37 | xinstall -d ${destroot}${prefix}/share/java/${name} |
---|
38 | |
---|
39 | # Copy over the needed elements of our directory tree |
---|
40 | copy {*}[glob ${worksrcpath}/*] ${destroot}${prefix}/share/java/${name} |
---|
41 | } |
---|