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 | PortGroup python 1.0 |
---|
6 | PortGroup github 1.0 |
---|
7 | |
---|
8 | github.setup brandon-rhodes python-sgp4 1.3 v |
---|
9 | fetch.type git |
---|
10 | |
---|
11 | name py-sgp4 |
---|
12 | revision 0 |
---|
13 | categories-append science |
---|
14 | platforms darwin |
---|
15 | license MIT |
---|
16 | |
---|
17 | python.versions 26 27 31 32 |
---|
18 | |
---|
19 | maintainers maiar.org:jason-macports openmaintainer |
---|
20 | |
---|
21 | description Most recent SGP4 satellite tracking algorithm in Python. |
---|
22 | |
---|
23 | long_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 | |
---|
29 | supported_archs noarch |
---|
30 | |
---|
31 | |
---|
32 | if {${name} ne ${subport}} { |
---|
33 | depends_lib-append port:py${python.version}-setuptools |
---|
34 | |
---|
35 | livecheck.type none |
---|
36 | } |
---|