From 689fcb61efe1e0bcff652b253227ded5ddbe343b Mon Sep 17 00:00:00 2001 From: timcera Date: Sun, 24 Aug 2008 01:42:15 +0000 Subject: sci-misc/simpy-1.9.1.ebuild - Initial ebuild for simpy, a process and event simulation system for Python. git-svn-id: http://overlays.gentoo.org/svn/proj/science/overlay@1235 32389bae-6d03-0410-99cf-db05cde120eb --- sci-misc/simpy/simpy-1.9.1.ebuild | 40 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 sci-misc/simpy/simpy-1.9.1.ebuild (limited to 'sci-misc/simpy/simpy-1.9.1.ebuild') diff --git a/sci-misc/simpy/simpy-1.9.1.ebuild b/sci-misc/simpy/simpy-1.9.1.ebuild new file mode 100644 index 000000000..c3aa9cf9b --- /dev/null +++ b/sci-misc/simpy/simpy-1.9.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit distutils + +DESCRIPTION="Process and event simulation." +HOMEPAGE="http://simpy.sourceforge.net" + +MY_P="${P/simpy/SimPy}" +S="${WORKDIR}/${MY_P}" + +SRC_URI="mirror://sourceforge/simpy/${MY_P}.tar.gz" +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64" +IUSE="doc" +DEPEND="virtual/python + >=dev-lang/python-2.1" + + +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 +} -- cgit v1.2.3-65-gdbad