blob: dbabeb80a8b39413e4cc5d486eb8325cb4fab4a3 (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/ecell/ecell-3.1.102.ebuild,v 1.3 2005/01/02 17:26:33 chrb Exp $
inherit eutils
DESCRIPTION="Software suite for modelling biological cells"
HOMEPAGE="http://ecell.sourceforge.net/"
SRC_URI="mirror://sourceforge/ecell/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc gtk"
DEPEND="dev-libs/boost
dev-lang/python
dev-python/numeric
sci-libs/gsl
dev-python/empy
gtk? ( gnome-base/libglade )
doc? ( media-gfx/graphviz app-doc/doxygen )"
src_compile() {
econf `use_enable gtk`
emake
if use doc; then
emake doc
fi
}
src_install() {
einstall || die
if use doc; then
dohtml doc/refman/html
fi
}
|