aballier 15/06/29 08:51:43 Modified: ChangeLog Added: eigen-3.2.5.ebuild Log: Version bump. Install FindEigen3.cmake as some packages started to use it since debian ships it. Signed-off-by: Alexis Ballier <[email protected]> (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path 1.89 dev-cpp/eigen/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/eigen/ChangeLog?rev=1.89&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/eigen/ChangeLog?rev=1.89&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/eigen/ChangeLog?r1=1.88&r2=1.89 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-cpp/eigen/ChangeLog,v retrieving revision 1.88 retrieving revision 1.89 diff -u -r1.88 -r1.89 --- ChangeLog 6 Feb 2015 18:19:16 -0000 1.88 +++ ChangeLog 29 Jun 2015 08:51:43 -0000 1.89 @@ -1,6 +1,12 @@ # ChangeLog for dev-cpp/eigen # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/eigen/ChangeLog,v 1.88 2015/02/06 18:19:16 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/eigen/ChangeLog,v 1.89 2015/06/29 08:51:43 aballier Exp $ + +*eigen-3.2.5 (29 Jun 2015) + + 29 Jun 2015; Alexis Ballier <[email protected]> +eigen-3.2.5.ebuild: + Version bump. Install FindEigen3.cmake as some packages started to use it + since debian ships it. *eigen-3.2.4 (06 Feb 2015) 1.1 dev-cpp/eigen/eigen-3.2.5.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/eigen/eigen-3.2.5.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/eigen/eigen-3.2.5.ebuild?rev=1.1&content-type=text/plain Index: eigen-3.2.5.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-cpp/eigen/eigen-3.2.5.ebuild,v 1.1 2015/06/29 08:51:43 aballier Exp $ EAPI=5 inherit cmake-utils DESCRIPTION="C++ template library for linear algebra: vectors, matrices, and related algorithms" HOMEPAGE="http://eigen.tuxfamily.org/" SRC_URI="http://bitbucket.org/eigen/eigen/get/${PV}.tar.bz2 -> ${P}.tar.bz2" LICENSE="LGPL-2 GPL-3" SLOT="3" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" IUSE="debug doc" DEPEND="doc? ( app-doc/doxygen[dot,latex] )" RDEPEND="!dev-cpp/eigen:0" src_unpack() { default mv ${PN}* ${P} || die } src_prepare() { sed -i CMakeLists.txt \ -e "/add_subdirectory(demos/d" \ -e "/add_subdirectory(blas/d" \ -e "/add_subdirectory(lapack/d" \ || die "sed disable unused bundles failed" cmake-utils_src_prepare } src_configure() { CMAKE_BUILD_TYPE="release" cmake-utils_src_configure } src_compile() { cmake-utils_src_compile if use doc; then cmake-utils_src_compile doc fi } src_test() { local mycmakeargs=( -DEIGEN_BUILD_TESTS=ON -DEIGEN_TEST_NO_FORTRAN=ON -DEIGEN_TEST_NO_OPENGL=ON ) cmake-utils_src_configure cmake-utils_src_compile buildtests cmake-utils_src_test } src_install() { cmake-utils_src_install if use doc; then cd "${BUILD_DIR}"/doc dohtml -r html/* fi # Debian installs it and some projects started using it. insinto /usr/share/cmake/Modules/ doins "${S}/cmake/FindEigen3.cmake" }
