aboutsummaryrefslogtreecommitdiff
blob: 652a8f904e499afb94bcc9a938d8e290375dc1c9 (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
37
38
39
40
41
42
43
44
45
46
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="2"

PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
PYTHON_USE_WITH="tk"
RESTRICT_PYTHON_ABIS="3.*"
PYTHON_MODNAME="SimPy"

inherit distutils

MY_P="${P/simpy/SimPy}"

DESCRIPTION="Process and event simulation."
HOMEPAGE="http://simpy.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"

S="${WORKDIR}/${MY_P}"

src_install() {
	distutils_src_install

	if use doc ; then
		dodoc SimPyDocs
		dodoc SimPyModels
		# Took the following from 'dodoc' in order to not compress
		# the pdf file.  'dodoc' always compresses.
		dir="${D}usr/share/doc/${PF}/${DOCDESTTREE}"
		if [ ! -d "${dir}" ] ; then
		        install -d "${dir}"
		fi
		for dname in `find SimPyDocs SimPyModels -type d`
		do
			install -d "${dir}/${dname}"
			install -m0644 "${dname}"/* "${dir}/${dname}"
		done
	fi
}