Ticket #45584: Portfile

File Portfile, 1.6 KB (added by pgf, 10 years ago)
Line 
1# $Id: Portfile 114324 2013-12-05 08:44:51Z ryandesign@macports.org $
2
3PortSystem        1.0
4PortGroup         python 1.0
5
6name              py-matplotlib-basemap
7version           1.0.7
8categories-append graphics math
9license           LGPL-2.1
10platforms         darwin
11maintainers       nomaintainer
12
13description       matplotlib toolkit for plotting data on map projections
14long_description  Matplotlib basemap is a matplotlib toolkit python library \
15                  for plotting data on map projections
16
17homepage          http://matplotlib.org/basemap/
18master_sites      sourceforge:project/matplotlib/matplotlib-toolkits/basemap-${version}/
19distname          basemap-${version}
20dist_subdir       ${name}/${version}_${revision}
21
22checksums         rmd160 31ba295f21c3fb7c69499fdbb9e06fc4c27dd116 \
23                  sha256 e07ec2e0d63b24c9aed25a09fe8aff2598f82a85da8db74190bac81cbf104531
24
25python.versions   26 27
26
27build.env-append    GEOS_DIR="${prefix}"
28destroot.env-append GEOS_DIR="${prefix}"
29
30universal_variant no
31
32if {${name} ne ${subport}} {
33  depends_lib-append port:geos \
34                     port:py${python.version}-matplotlib \
35                     port:py${python.version}-httplib2 \
36                     port:py${python.version}-dap
37  post-destroot {
38    delete ${destroot}${python.pkgd}/mpl_toolkits/__init__.py
39    delete ${destroot}${python.pkgd}/mpl_toolkits/__init__.pyc
40  }
41}
42
43if {${name} eq ${subport}} {
44  livecheck.type     regex
45  livecheck.url      http://sourceforge.net/projects/matplotlib/files/matplotlib-toolkits
46  livecheck.regex    {basemap-(\d+(\.\d+)*)}
47} else {
48  livecheck.type     none
49}