diff options
author | Michael Palimaka <kensington@gentoo.org> | 2015-10-28 00:59:17 +1100 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2015-10-28 01:00:32 +1100 |
commit | fe45934b8cc4479661e2996086fc82f2fd0f8db5 (patch) | |
tree | d36a604ad5d30a5ec21638ab348cf2cafdfeb688 /dev-cpp/eigen/eigen-3.2.6.ebuild | |
parent | kde-apps/kstars: remove old (diff) | |
download | gentoo-fe45934b8cc4479661e2996086fc82f2fd0f8db5.tar.gz gentoo-fe45934b8cc4479661e2996086fc82f2fd0f8db5.tar.bz2 gentoo-fe45934b8cc4479661e2996086fc82f2fd0f8db5.zip |
dev-cpp/eigen: version bump
Gentoo-bug: 564208
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'dev-cpp/eigen/eigen-3.2.6.ebuild')
-rw-r--r-- | dev-cpp/eigen/eigen-3.2.6.ebuild | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/dev-cpp/eigen/eigen-3.2.6.ebuild b/dev-cpp/eigen/eigen-3.2.6.ebuild new file mode 100644 index 000000000000..4c51aedddccc --- /dev/null +++ b/dev-cpp/eigen/eigen-3.2.6.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit cmake-utils + +DESCRIPTION="C++ template library for linear algebra: vectors, matrices, and related algorithms" +HOMEPAGE="http://eigen.tuxfamily.org/" +SRC_URI="https://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" + + sed -i -e "/Unknown build type/d" CMakeLists.txt || die + + cmake-utils_src_prepare +} + +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 + dohtml -r "${BUILD_DIR}"/doc/html/* + fi + + # Debian installs it and some projects started using it. + insinto /usr/share/cmake/Modules/ + doins "${S}/cmake/FindEigen3.cmake" +} |