blob: 91c503be163f55e3546b83bc05e811af1c1eccf9 (
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
81
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/freemat/freemat-3.6.ebuild,v 1.8 2009/08/07 17:07:14 bicatali Exp $
EAPI="2"
inherit eutils autotools fdo-mime virtualx
MY_PN=FreeMat
MY_P=${MY_PN}-${PV}
DESCRIPTION="Environment for rapid engineering and scientific processing"
HOMEPAGE="http://freemat.sourceforge.net/"
SRC_URI="mirror://sourceforge/freemat/${MY_P}.tar.gz"
IUSE="+arpack ffcall +fftw ncurses portaudio test +umfpack"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="|| ( ( x11-libs/qt-gui:4 x11-libs/qt-opengl:4 x11-libs/qt-svg:4 )
x11-libs/qt:4[opengl] )
dev-libs/libpcre
virtual/lapack
virtual/opengl
ncurses? ( >=sys-libs/ncurses-5.4 )
umfpack? ( sci-libs/umfpack )
arpack? ( sci-libs/arpack )
fftw? ( sci-libs/fftw:3.0 )
portaudio? ( media-libs/portaudio )
ffcall? ( dev-libs/ffcall )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
test? (
media-fonts/font-misc-misc
media-fonts/font-cursor-misc )"
S="${WORKDIR}/${MY_P}"
src_prepare() {
# allow enable/disable for configure
epatch "${FILESDIR}"/${P}-optional-deps.patch
epatch "${FILESDIR}"/${P}-includes.patch
epatch "${FILESDIR}"/${P}-gcc44.patch
eautoreconf
}
src_configure() {
econf \
--with-blas="$(pkg-config --libs blas)" \
--with-lapack="$(pkg-config --libs lapack)" \
$(use_with ncurses) \
$(use_enable umfpack) \
$(use_enable arpack) \
$(use_enable fftw) \
$(use_enable portaudio) \
$(use_enable ffcall)
}
src_test () {
Xemake check || die "emake check failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog || die "dodoc failed"
newicon images/freemat_small_mod_64.png ${PN}.png
make_desktop_entry FreeMat FreeMat
}
pkg_postinst() {
fdo-mime_desktop_database_update
elog "Before using ${MY_PN}, do (as a normal user)"
elog "FreeMat -i /usr/share/${MY_P}"
elog "Then start ${MY_PN}, choose Tools -> Path Tool,"
elog "select /usr/share/${MY_P}/toolbox and Add With Subfolders"
}
pkg_postrm() {
fdo-mime_desktop_database_update
}
|