blob: 4f720dec9696b7b7066cffe146acc978db1c7983 (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4.ebuild,v 1.9 2006/11/21 20:49:42 dev-zero Exp $
WANT_AUTOMAKE="latest"
WANT_AUTOCONF="latest"
inherit autotools
DESCRIPTION="template based math library, written in C++, for symbolic and numeric calculus applications"
HOMEPAGE="http://rm-rf.in/libmath%2B%2B/"
SRC_URI="http://upstream.rm-rf.in/libmath%2B%2B/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="1"
KEYWORDS="ppc s390 x86 amd64"
IUSE="doc"
DEPEND="doc? ( app-doc/doxygen )"
RDEPEND=""
src_compile() {
eautoreconf
econf || die "configure failed"
emake || die "make filed"
if use doc ; then
emake -C doc api-doc
fi
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS README TODO
if use doc ; then
dohtml -r "${S}"/doc/user-api/*
fi
}
|