Ticket #37569: Portfile.stub

File Portfile.stub, 1.8 KB (added by petrrr, 11 years ago)

Portfile (UPDATE)

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: Portfile 97743 2012-09-14 02:30:22Z jmr@macports.org $
3
4PortSystem          1.0
5PortGroup           python 1.0
6
7name                py-obspy-core
8replaced_by         py-obspy
9version             0.7.1
10revision            1
11categories-append   science
12platforms           darwin
13supported_archs     noarch
14maintainers         bo.ingv.it:Peter.Danecek openmaintainer
15
16license             LGPL-3
17
18description         Python framework for processing seismological data (core component)
19long_description    ObsPy is an open-source project dedicated to provide a Python \
20                    framework for processing seismological data. It provides \
21                    parsers for common file formats and seismological signal \
22                    processing routines which allow the manipulation of \
23                    seismological time series. The goal of the ObsPy project is \
24                    to facilitate rapid application development for seismology. \
25                    \
26                    This port installs the ObsPy package obspy.core. It contains \
27                    common classes and methods like UTCDateTime, Stats, Stream \
28                    and Trace  well as methods for reading and writing \
29                    seismograms which are required by other ObsPy packages.
30
31homepage            http://www.obspy.org/
32
33distfiles
34archive_sites
35livecheck.type      none
36
37use_configure       no
38build               {}
39
40python.versions     25 26 27
41
42if {${subport} != ${name}} {
43    replaced_by  py${python.version}-obspy
44}
45
46pre-configure {
47    ui_error "This port (${name}) has been replaced by ${replaced_by}. \
48    Please install ${replaced_by} instead." 
49    return -code error "obsolete port"
50}