Ticket #41729: Portfile

File Portfile, 1011 bytes (added by gorticus (Jason Mitchell), 9 years ago)

Portfile updated to v1.3, released 2014/06/26

Line 
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
4PortSystem              1.0
5PortGroup               python 1.0
6PortGroup               github 1.0
7
8github.setup            brandon-rhodes python-sgp4 1.3 v
9fetch.type              git
10
11name                    py-sgp4
12revision                0
13categories-append       science
14platforms               darwin
15license                 MIT
16
17python.versions         26 27 31 32
18
19maintainers             maiar.org:jason-macports openmaintainer
20
21description             Most recent SGP4 satellite tracking algorithm in Python.
22
23long_description        This Python package computes the position and \
24                        velocity of an earth-orbiting satellite, given \
25                        the satellite's TLE orbital elements from a \
26                        source like Celestrak.  Algorithm described in \
27                        paper AIAA 2006-6753\; see http://goo.gl/OaVlLh
28
29supported_archs         noarch
30
31
32if {${name} ne ${subport}} {
33        depends_lib-append      port:py${python.version}-setuptools
34
35        livecheck.type          none
36}