1 | # $Id: Portfile,v 1.2 2005/07/11 21:33:20 mww Exp $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name ncview |
---|
5 | version 1.93b |
---|
6 | maintainers m@nnutter.com |
---|
7 | platforms darwin |
---|
8 | categories science |
---|
9 | |
---|
10 | description X windows point'n'click NetCDF viewer. |
---|
11 | long_description Ncview is a visual browser for NetCDF format \ |
---|
12 | files. Typically you would use ncview to get \ |
---|
13 | a quick and easy, push-button look at your \ |
---|
14 | NetCDF files. You can view simple movies of \ |
---|
15 | the data, view along various dimensions, take \ |
---|
16 | a look at the actual data values, change color \ |
---|
17 | maps, invert the data, etc. |
---|
18 | |
---|
19 | homepage http://meteora.ucsd.edu/~pierce/ncview_home_page.html |
---|
20 | |
---|
21 | master_sites ftp://cirrus.ucsd.edu/pub/ncview/ |
---|
22 | checksums md5 48c99b2eda1bbc86d7fbe648977f1844 \ |
---|
23 | sha1 2b4d420b5431ec9e124e5d9472b9fe7cdbc7960f |
---|
24 | |
---|
25 | depends_lib port:netcdf |
---|
26 | |
---|
27 | configure.args --with-netcdf_incdir=${prefix}/include \ |
---|
28 | --with-netcdf_libdir=${prefix}/lib |
---|
29 | |
---|
30 | destroot.env XAPPLRESDIR=${destroot}/usr/lib/X11/app-defaults |
---|
31 | |
---|
32 | destroot.destdir BINDIR=${destroot}/${prefix}/bin \ |
---|
33 | MANDIR=${destroot}/${prefix}/man/man1 |
---|
34 | |
---|
35 | pre-destroot { |
---|
36 | file mkdir -p ${destroot}/usr/lib/X11/app-defaults |
---|
37 | } |
---|