summaryrefslogtreecommitdiff
blob: 4c74d092ff662b8b3ead167110101e96ed65dc48 (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
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=4

inherit cmake-utils

MY_P="EO-${PV}"

DESCRIPTION="Evolving Objects library: an Evolutionary Computation Framework"
HOMEPAGE="http://eodev.sourceforge.net/"
SRC_URI="mirror://sourceforge/eodev/${MY_P}.zip"

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

RDEPEND=""
DEPEND="${RDEPEND}
app-arch/unzip"

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

src_install() {
	cmake-utils_src_install

	dodoc "${S}"/{AUTHORS,CHANGELOG,NEWS,README,THANKS,ToDo}

	if use doc ; then
		dohtml "${S}"/tutorial/*
	fi
}