blob: 986249d705a8b23507abc0adc53232edc1484723 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit distutils
DESCRIPTION="A modular machine learning library for Python"
HOMEPAGE="http://www.pybrain.org/"
SRC_URI="https://github.com/pybrain/pybrain/tarball/${PV} -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND=""
DEPEND="${RDEPEND}"
S=${WORKDIR}/pybrain-pybrain-87c7ac3
src_install() {
distutils_src_install
cp -r docs "${D}"usr/share/doc/${PF}/ || die
dodir /usr/share/${PN}/
cp -r examples "${D}"usr/share/${PN}/ || die
}
|