blob: a271a79eab72ea89fdaea29123d4c26d483462d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit distutils
MY_P="${P/scikits_/scikits.}"
DESCRIPTION="Provides classes and functions for manipulating, reporting, and
plotting time series of various frequencies."
HOMEPAGE="http://pytseries.sourceforge.net/index.html"
SRC_URI="mirror://sourceforge/pytseries/${MY_P}.tar.gz
doc? ( mirror://sourceforge/pytseries/${MY_P}-html_docs.zip )"
LICENSE="BSD eGenixPublic"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc"
DEPEND=">=dev-lang/python-2.4
>=dev-python/setuptools-0.6_rc9
>=dev-python/numpy-1.3.0
>=sci-libs/scipy-0.7.0
>=dev-python/matplotlib-0.98.0"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
|