summaryrefslogtreecommitdiff
blob: 5ea5b3f4307498818ca6f5db4a38037ff0968b4b (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
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/galib/galib-2.4.5.ebuild,v 1.3 2004/05/27 13:36:52 phosphan Exp $

inherit eutils

DESCRIPTION="library for using genetic algorithms in C++ programs"

HOMEPAGE="http://lancet.mit.edu/ga/"
SRC_URI="ftp://lancet.mit.edu/pub/ga/galib245.tar.gz"
LICENSE="GAlib"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=">=sys-apps/sed-4"

S=${WORKDIR}/galib245

src_unpack() {
	unpack ${A}
	cd ${S}
	epatch ${FILESDIR}/${P}-gcc3.3.patch
	for file in examples/*.C ga/gaconfig.h; do
		for thing in iostream fstream; do
			sed -e "s:${thing}.h:${thing}:" -i ${file};
		done
	done
}

src_compile() {
	make CXXFLAGS="${CXXFLAGS}" || die "make failed"
}

src_install() {
	dodir /usr/lib /usr/include
	make LIB_DEST_DIR=${D}/usr/lib/ HDR_DEST_DIR=${D}/usr/include/ install || die
	dohtml -r doc/*
	dodoc RELEASE-NOTES README
	cp -r examples ${D}/usr/share/doc/${PF}/
}