1 | # $Id& |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name wview |
---|
6 | |
---|
7 | version 3.9.0 |
---|
8 | |
---|
9 | revision 1 |
---|
10 | |
---|
11 | categories science |
---|
12 | |
---|
13 | maintainers mac.com:mbrooksclark |
---|
14 | |
---|
15 | homepage http://wviewweather.com/ |
---|
16 | |
---|
17 | description Daemons that download and archive data from supported weather stations |
---|
18 | |
---|
19 | long_description \ |
---|
20 | wview is a unix application for weather stations. It archives weather \ |
---|
21 | data from the station. Generates full html web sites with graphics. \ |
---|
22 | ftp/ssh export capability. MySQL/PostgreSQL archiving. International. \ |
---|
23 | Weather alarms. Data feed. RSS feed. Stations currently supported include: \ |
---|
24 | Davis Vantage Pro/Pro2, Vaisala WXT-510, La Crosse WS-2300, and a \ |
---|
25 | weather station simulator. |
---|
26 | |
---|
27 | platforms darwin |
---|
28 | |
---|
29 | master_sites sourceforge:wview |
---|
30 | |
---|
31 | depends_lib port:gd2 port:radlib |
---|
32 | |
---|
33 | checksums md5 193ecb4b853340494897dc15609d995a \ |
---|
34 | sha1 f7a1565b839725c3a796d963baf3ae61a89769b7 \ |
---|
35 | rmd160 b62bfa853ec60cfea9a1e5d778267d32bd28ff1a |
---|
36 | |
---|
37 | configure.args --exec-prefix=${prefix} |
---|
38 | |
---|
39 | variant env description { Install config files and templates (first time install) } { |
---|
40 | destroot.target-append install-env |
---|
41 | } |
---|
42 | |
---|
43 | variant mysql5 description { Includes mySQL5 database support } { |
---|
44 | configure.args-append --enable-mysql |
---|
45 | configure.ldflags-append -L${prefix}/lib/mysql5/mysql |
---|
46 | depends_lib-append port:mysql5 |
---|
47 | } |
---|
48 | |
---|
49 | variant pgresql description { Includes Postgresql database support } { |
---|
50 | configure.args-append --enable-pgresql |
---|
51 | depends_lib-append port:postgresql83 |
---|
52 | } |
---|
53 | |
---|
54 | variant vpro description { Support for Davis Vantage Pro WX Station } { |
---|
55 | configure.args-append --enable-station-vp2 |
---|
56 | } |
---|
57 | |
---|
58 | variant wxt510 description { Support for Vaisala WXT-510 WX Station } { |
---|
59 | configure.args-append --enable-station-wxt510 |
---|
60 | } |
---|
61 | |
---|
62 | variant ws2300 description { Support for the La Crosse WS-2300 series stations } { |
---|
63 | configure.args-append --enable-station-ws2300 |
---|
64 | } |
---|
65 | |
---|
66 | variant wmr918 description { Support for the for the Oregon Scientific WMR918/968 WX Station} { |
---|
67 | configure.args-append --enable-station-wmr918 |
---|
68 | } |
---|
69 | |
---|
70 | variant sim description { Support for the Simulated WX Station } { |
---|
71 | configure.args-append --enable-station-sim |
---|
72 | } |
---|
73 | |
---|
74 | variant http description { Enable support for uploading data to Weather Underground } { |
---|
75 | configure.args-append --enable-http |
---|
76 | depends_lib-append port:curl |
---|
77 | } |
---|
78 | |
---|
79 | destroot.violate_mtree |
---|
80 | |
---|
81 | post-destroot { |
---|
82 | xinstall -d -o root -g wheel -m 755 \ |
---|
83 | ${worksrcpath}/examples/MacOSX/wview ${destroot}/Library/StartupItems/wview |
---|
84 | |
---|
85 | xinstall -o root -g wheel -m 755 ${worksrcpath}/examples/MacOSX/wview/wview \ |
---|
86 | ${destroot}/Library/StartupItems/wview/wview |
---|
87 | |
---|
88 | xinstall -o root -g wheel -m 644 \ |
---|
89 | ${worksrcpath}/examples/MacOSX/wview/StartupParameters.plist \ |
---|
90 | ${destroot}/Library/StartupItems/wview/StartupParameters.plist |
---|
91 | |
---|
92 | |
---|
93 | file mkdir ${destroot}${prefix}/share/doc/${name} |
---|
94 | |
---|
95 | file copy ${worksrcpath}/wview-Quick-Start-MacOSX.html \ |
---|
96 | ${destroot}${prefix}/share/doc/${name}/wview-Quick-Start-MacOSX.html |
---|
97 | |
---|
98 | file copy ${worksrcpath}/wview-Quick-Start.html \ |
---|
99 | ${destroot}${prefix}/share/doc/${name}/wview-Quick-Start.html |
---|
100 | |
---|
101 | file copy ${worksrcpath}/wview-User-Manual.html \ |
---|
102 | ${destroot}${prefix}/share/doc/${name}/wview-User-Manual.html |
---|
103 | |
---|
104 | file copy ${worksrcpath}/COPYING \ |
---|
105 | ${destroot}${prefix}/share/doc/${name}/COPYING |
---|
106 | |
---|
107 | file copy ${worksrcpath}/UPGRADE \ |
---|
108 | ${destroot}${prefix}/share/doc/${name}/UPGRADE |
---|
109 | |
---|
110 | |
---|
111 | } |
---|
112 | |
---|
113 | post-install { |
---|
114 | ui_msg "\n#####################################" |
---|
115 | ui_msg "Run\n" |
---|
116 | ui_msg "\tsudo ${prefix}/bin/wviewconfig and\n" |
---|
117 | ui_msg "\tsudo ${prefix}/bin/wviewhtmlconfig\n" |
---|
118 | ui_msg "before launching wview\n" |
---|
119 | ui_msg "\n#####################################" |
---|
120 | ui_msg "html templates and config files are stored in ${prefix}/etc/wview/\n" |
---|
121 | ui_msg "archive files are stored in ${prefix}/var/wview/\n" |
---|
122 | ui_msg "\n#####################################" |
---|
123 | ui_msg "Start the daemons with the command:\n" |
---|
124 | ui_msg "\tsudo /sbin/SystemStarter start wview\n" |
---|
125 | ui_msg "\n#####################################" |
---|
126 | } |
---|