blob: ca857bdef13902821aff13fe4ada93ce56005bdc (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/quantlib/quantlib-0.3.9.ebuild,v 1.2 2005/05/29 20:04:57 ferdy Exp $
IUSE=""
MY_P=${P/q/Q}
MY_P=${MY_P/l/L}
S=${WORKDIR}/${MY_P}
DESCRIPTION="A comprehensive software framework for quantitative finance"
HOMEPAGE="http://www.quantlib.org"
SRC_URI="mirror://sourceforge/quantlib/${MY_P}.tar.gz"
DEPEND="sys-devel/libtool
dev-libs/boost"
SLOT="0"
LICENSE="BSD"
KEYWORDS="~alpha ~ppc ~sparc ~x86"
src_install(){
einstall || die "einstall failed"
dodoc *.txt
}
|