summaryrefslogtreecommitdiff
blob: ac245262b06e18d4503450d164a5d9c4f2eab3a8 (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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

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
}