tamiko 14/12/01 00:26:34 Modified: ChangeLog Added: freemat-4.2.ebuild Log: version bump (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key BD3A97A3)
Revision Changes Path 1.30 sci-mathematics/freemat/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/freemat/ChangeLog?rev=1.30&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/freemat/ChangeLog?rev=1.30&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/freemat/ChangeLog?r1=1.29&r2=1.30 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/freemat/ChangeLog,v retrieving revision 1.29 retrieving revision 1.30 diff -u -r1.29 -r1.30 --- ChangeLog 2 Mar 2013 23:24:49 -0000 1.29 +++ ChangeLog 1 Dec 2014 00:26:34 -0000 1.30 @@ -1,6 +1,11 @@ # ChangeLog for sci-mathematics/freemat -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/freemat/ChangeLog,v 1.29 2013/03/02 23:24:49 hwoarang Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/freemat/ChangeLog,v 1.30 2014/12/01 00:26:34 tamiko Exp $ + +*freemat-4.2 (01 Dec 2014) + + 01 Dec 2014; Matthias Maier <tam...@gentoo.org> +freemat-4.2.ebuild: + version bump 02 Mar 2013; Markos Chandras <hwoar...@gentoo.org> freemat-4.0.ebuild, freemat-4.1.ebuild: 1.1 sci-mathematics/freemat/freemat-4.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/freemat/freemat-4.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/freemat/freemat-4.2.ebuild?rev=1.1&content-type=text/plain Index: freemat-4.2.ebuild =================================================================== # 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 }