blob: 0aef0179e7b4571a700c6fde69573cf30702dea9 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/quantlib/quantlib-0.3.14-r1.ebuild,v 1.1 2007/07/11 21:00:20 ulm Exp $
inherit autotools eutils elisp-common
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
MY_P=QuantLib-${PV}
DESCRIPTION="A comprehensive software framework for quantitative finance"
HOMEPAGE="http://www.quantlib.org"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
SLOT="0"
LICENSE="BSD"
IUSE="doc emacs examples"
RDEPEND="dev-libs/boost"
DEPEND="sys-devel/libtool
emacs? ( virtual/emacs )
doc? ( app-doc/doxygen )
${RDEPEND}"
SITEFILE=50${PN}-gentoo.el
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e 's/qlintro.tex quantlibheader.tex //' \
Docs/Makefile.in || die "sed failed"
eautoconf
}
src_compile() {
use emacs ||
sed -i -e "s/^EMACS=.*/EMACS=no/" configure || die "sed failed"
econf --with-lispdir="${SITELISP}/${PN}" || die "econf failed"
emake || die "emake failed"
if use doc ; then
cd "${S}/Docs"
emake docs-online || die "emake docs-html failed"
fi
}
src_install(){
emake DESTDIR="${D}" install || die "emake install failed"
dodoc *.txt
if use doc ; then
cd "${S}/Docs"
dohtml html-online/*
fi
if use examples ; then
cd "${S}/Examples"
insinto /usr/share/doc/${PF}/examples
doins *.txt
for example in $(ls -d */); do
doins ${example%%/}/*.{cpp,h,txt}
done
fi
if use emacs; then
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
fi
}
pkg_postinst() {
use emacs && elisp-site-regen
}
pkg_postrm() {
use emacs && elisp-site-regen
}
|