summaryrefslogtreecommitdiff
blob: 3017df0660af8313294d42cc905dd7d14dad42a5 (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
29
30
31
32
33
34
35
36
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

NEED_PYTHON=2.4

EGIT_REPO_URI="git://glorfindel.mavrinac.com/${PN}.git"
EGIT_BRANCH="master"

inherit distutils eutils git

DESCRIPTION="PyDSSCC - Calibration Software for Distributed Smart Stereo
Cameras"
HOMEPAGE="http://www.mavrinac.com/index.cgi?page=pydsscc"
SRC_URI=""

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~sparc ~x86"
IUSE="doc"

RDEPEND="virtual/python
		 >=dev-python/numpy-1.0.4"
DEPEND="${RDEPEND}
		dev-python/setuptools
		doc? ( dev-python/epydoc )"

DOCS="AUTHORS README TODO"

src_install() {
	distutils_src_install
	if use doc; then
		./gendoc.sh
		dohtml -r doc/
	fi
}