summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Shapovalov <george@gentoo.org>2002-11-02 09:09:36 +0000
committerGeorge Shapovalov <george@gentoo.org>2002-11-02 09:09:36 +0000
commitabd5d6ead82ce584c5cd12a1e354e3b314ccfdaf (patch)
treed7596ad7a61b9f75f8cfd1c8cc01026dfa8d0664 /dev-libs
parentdoc directory fix (diff)
downloadgentoo-2-abd5d6ead82ce584c5cd12a1e354e3b314ccfdaf.tar.gz
gentoo-2-abd5d6ead82ce584c5cd12a1e354e3b314ccfdaf.tar.bz2
gentoo-2-abd5d6ead82ce584c5cd12a1e354e3b314ccfdaf.zip
new package
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/quantlib/ChangeLog23
-rw-r--r--dev-libs/quantlib/files/digest-quantlib-0.3.01
-rw-r--r--dev-libs/quantlib/quantlib-0.3.0.ebuild28
3 files changed, 52 insertions, 0 deletions
diff --git a/dev-libs/quantlib/ChangeLog b/dev-libs/quantlib/ChangeLog
new file mode 100644
index 000000000000..ccef45abc6c4
--- /dev/null
+++ b/dev-libs/quantlib/ChangeLog
@@ -0,0 +1,23 @@
+# ChangeLog for dev-libs/quantalib
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/quantlib/ChangeLog,v 1.1 2002/11/02 09:09:36 george Exp $
+
+*quantlib-0.3.0 (01 Nov 2002)
+
+ 01 Nov 2002; George Shapovalov <george@gentoo.org> quantlib-0.3.0.ebuild :
+
+ new package
+
+ The QuantLib project is aimed to provide a
+ comprehensive software framework for quantitative finance.
+ The goal is to provide a standard free/open source
+ library to quantitative analysts and developers for modeling,
+ trading, and risk management in real-life.
+
+ QuantLib plans to offer tools that are useful for both
+ practical implementation, with features such as market
+ conventions, solvers, PDEs,etc.,
+ and advanced modeling,
+ e.g., exotic options and interest rate models.
+
+ ebuild submitted by Chen Jian-ding <dwight@ccns.ncku.edu.tw>
diff --git a/dev-libs/quantlib/files/digest-quantlib-0.3.0 b/dev-libs/quantlib/files/digest-quantlib-0.3.0
new file mode 100644
index 000000000000..93af3be28d2d
--- /dev/null
+++ b/dev-libs/quantlib/files/digest-quantlib-0.3.0
@@ -0,0 +1 @@
+MD5 6cee5e882ac5fea9e27f0d2c834f3e74 QuantLib-0.3.0-src.tar.gz 729735
diff --git a/dev-libs/quantlib/quantlib-0.3.0.ebuild b/dev-libs/quantlib/quantlib-0.3.0.ebuild
new file mode 100644
index 000000000000..5c8556a8cd32
--- /dev/null
+++ b/dev-libs/quantlib/quantlib-0.3.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/quantlib/quantlib-0.3.0.ebuild,v 1.1 2002/11/02 09:09:36 george Exp $
+
+IUSE="libtool"
+
+Name="QuantLib"
+S=${WORKDIR}/${Name}-${PV}
+DESCRIPTION="A comprehensive software framework for quantitative finance"
+SRC_URI="mirror://sourceforge/quantlib/${Name}-${PV}-src.tar.gz"
+HOMEPAGE="www.quantlib.org"
+
+DEPEND="libtool? ( sys-devel/libtool )"
+
+SLOT="0"
+LICENSE="BSD"
+KEYWORDS="~x86 ~ppc ~sparc ~sparc64"
+
+src_compile(){
+ econf || die "./configure failed"
+ emake || die
+}
+
+src_install(){
+ einstall || die "einstall failed"
+ dodoc Authors.txt ChangeLog.txt Contributors.txt History.txt \
+ INSTALL.txt LICENSE.txt News.txt Readme.txt TODO.txt
+}