diff options
author | Matthias Maier <tamiko@gentoo.org> | 2014-12-01 00:26:34 +0000 |
---|---|---|
committer | Matthias Maier <tamiko@gentoo.org> | 2014-12-01 00:26:34 +0000 |
commit | bc708261123da41ba25fb5429e26a052fda54eb4 (patch) | |
tree | 79c058d14f775d65f26f780aa875f274af64d48c /sci-mathematics/freemat/freemat-4.2.ebuild | |
parent | Simplify openssl deps when ecdsa support is enabled. (diff) | |
download | gentoo-2-bc708261123da41ba25fb5429e26a052fda54eb4.tar.gz gentoo-2-bc708261123da41ba25fb5429e26a052fda54eb4.tar.bz2 gentoo-2-bc708261123da41ba25fb5429e26a052fda54eb4.zip |
version bump
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key BD3A97A3)
Diffstat (limited to 'sci-mathematics/freemat/freemat-4.2.ebuild')
-rw-r--r-- | sci-mathematics/freemat/freemat-4.2.ebuild | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/sci-mathematics/freemat/freemat-4.2.ebuild b/sci-mathematics/freemat/freemat-4.2.ebuild new file mode 100644 index 000000000000..00a825088007 --- /dev/null +++ b/sci-mathematics/freemat/freemat-4.2.ebuild @@ -0,0 +1,85 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/freemat/freemat-4.2.ebuild,v 1.1 2014/12/01 00:26:34 tamiko Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_7,3_{3,4}} ) + +inherit eutils cmake-utils fdo-mime python-r1 + +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}-Source.tar.gz" + +IUSE="volpack vtk" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-libs/libpcre + media-libs/portaudio + sci-libs/arpack + sci-libs/fftw:3.0 + sci-libs/matio + sci-libs/umfpack + sys-libs/ncurses + virtual/glu + virtual/lapack + virtual/libffi + virtual/opengl + dev-qt/qtgui:4 + dev-qt/qtopengl:4 + dev-qt/qtsvg:4 + volpack? ( media-libs/volpack ) + vtk? ( sci-libs/vtk )" + +DEPEND="${RDEPEND} + dev-lang/python + virtual/pkgconfig" + +S="${WORKDIR}/${MY_P}-Source" + +src_prepare(){ + epatch \ + "${FILESDIR}"/${PN}-4.1-fixes.patch \ + "${FILESDIR}"/${PN}-4.1-use_llvm.patch \ + "${FILESDIR}"/${PN}-4.1-python3.patch + rm -f CMakeCache.txt + find . -type f -name '*.moc.cpp' -exec rm -f {} \; + find . -type f -name 'add.so' -exec rm -f {} \; +} + +src_configure() { + mycmakeargs+=( + -DFORCE_SYSTEM_LIBS=ON + -DUSE_LLVM=OFF + -DUSE_ITK=OFF + -DFFI_INCLUDE_DIR="$(pkg-config --cflags-only-I libffi | sed -e s/-I//)" + $(cmake-utils_use_with volpack VOLPACK) + $(cmake-utils_use_with vtk VTK) + ) + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install -j1 + dodoc ChangeLog + 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 ${EROOT}usr/share/${MY_P}" + elog "Then start ${MY_PN}, choose Tools -> Path Tool," + elog "select ${EROOT}usr/share/${MY_P}/toolbox and Add With Subfolders" +} + +pkg_postrm() { + fdo-mime_desktop_database_update +} |