public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/kde-sunset:master commit in: dev-cpp/eigen/
@ 2017-02-02 10:57 Johannes Huber
  0 siblings, 0 replies; 2+ messages in thread
From: Johannes Huber @ 2017-02-02 10:57 UTC (permalink / raw
  To: gentoo-commits

commit:     da60f7ad01c08876b564c58cc4d21904295148e7
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Thu Feb  2 10:48:02 2017 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Thu Feb  2 10:48:11 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=da60f7ad

dev-cpp/eigen: Import latest slot 2 from gentoo main tree

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-cpp/eigen/eigen-2.0.17.ebuild | 79 +++++++++++++++++++++++++++++++++++++++
 dev-cpp/eigen/metadata.xml        | 15 ++++++++
 2 files changed, 94 insertions(+)

diff --git a/dev-cpp/eigen/eigen-2.0.17.ebuild b/dev-cpp/eigen/eigen-2.0.17.ebuild
new file mode 100644
index 0000000..1414b45
--- /dev/null
+++ b/dev-cpp/eigen/eigen-2.0.17.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=4
+
+inherit cmake-utils
+
+DESCRIPTION="C++ template library for linear algebra"
+HOMEPAGE="http://eigen.tuxfamily.org/"
+SRC_URI="https://bitbucket.org/eigen/eigen/get/${PV}.tar.bz2 -> ${P}.tar.bz2"
+
+LICENSE="GPL-3"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
+SLOT="2"
+IUSE="debug doc examples"
+
+COMMON_DEPEND="
+	examples? (
+		dev-qt/qtgui:4
+		dev-qt/qtopengl:4
+	)"
+DEPEND="${COMMON_DEPEND}
+	doc? ( app-doc/doxygen )"
+RDEPEND="${COMMON_DEPEND}
+	!dev-cpp/eigen:0"
+
+MAKEOPTS+=" -j1"
+
+# bugs 426236, 455460, 467288
+RESTRICT="test"
+
+src_unpack() {
+	unpack ${A}
+	mv ${PN}* ${P} || die
+}
+
+src_configure() {
+	# benchmarks (BTL) brings up damn load of external deps including fortran
+	# compiler
+	# library hangs up complete compilation proccess, test later
+	mycmakeargs=(
+		-DEIGEN_BUILD_LIB=OFF
+		-DEIGEN_BUILD_BTL=OFF
+		-DEIGEN_BUILD_PKGCONFIG=ON
+		$(cmake-utils_use examples EIGEN_BUILD_DEMOS)
+	)
+	cmake-utils_src_configure
+}
+
+src_compile() {
+	cmake-utils_src_compile
+	if use doc; then
+		cd "${CMAKE_BUILD_DIR}"
+		emake doc
+	fi
+}
+
+src_install() {
+	cmake-utils_src_install
+	if use doc; then
+		cd "${CMAKE_BUILD_DIR}"/doc
+		dohtml -r html/*
+	fi
+	if use examples; then
+		cd "${CMAKE_BUILD_DIR}"/demos
+		dobin mandelbrot/mandelbrot opengl/quaternion_demo
+	fi
+}
+
+src_test() {
+	mycmakeargs=(
+		-DEIGEN_BUILD_TESTS=ON
+		-DEIGEN_TEST_NO_FORTRAN=ON
+	)
+	cmake-utils_src_configure
+	cmake-utils_src_compile
+	cmake-utils_src_test
+}

diff --git a/dev-cpp/eigen/metadata.xml b/dev-cpp/eigen/metadata.xml
new file mode 100644
index 0000000..cb1b3c3
--- /dev/null
+++ b/dev-cpp/eigen/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<!-- maintainer needed -->
+	<longdescription>
+		Eigen is a lightweight C++ template library for vector and matrix math,
+		a.k.a. linear algebra. Unlike most other linear algebra libraries, Eigen
+		focuses on the simple mathematical needs of applications: games and other
+		OpenGL apps, spreadsheets and other office apps, etc. Eigen is dedicated to
+		providing optimal speed with GCC.
+	</longdescription>
+	<upstream>
+		<remote-id type="bitbucket">eigen/eigen</remote-id>
+	</upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] proj/kde-sunset:master commit in: dev-cpp/eigen/
@ 2020-08-16 15:57 Andreas Sturmlechner
  0 siblings, 0 replies; 2+ messages in thread
From: Andreas Sturmlechner @ 2020-08-16 15:57 UTC (permalink / raw
  To: gentoo-commits

commit:     a154cd6603f661169e80b74098feeb87e53b1e2d
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 14 23:07:16 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Aug 16 15:52:07 2020 +0000
URL:        https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=a154cd66

dev-cpp/eigen: Import last state of slot 2 from Gentoo ebuild repo

Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 dev-cpp/eigen/eigen-2.0.17.ebuild | 58 ++++++++++++++-------------------------
 1 file changed, 21 insertions(+), 37 deletions(-)

diff --git a/dev-cpp/eigen/eigen-2.0.17.ebuild b/dev-cpp/eigen/eigen-2.0.17.ebuild
index 07b2c1cb..ab64e861 100644
--- a/dev-cpp/eigen/eigen-2.0.17.ebuild
+++ b/dev-cpp/eigen/eigen-2.0.17.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
+EAPI=6
 
 inherit cmake-utils
 
@@ -10,24 +10,20 @@ HOMEPAGE="http://eigen.tuxfamily.org/"
 SRC_URI="https://bitbucket.org/eigen/eigen/get/${PV}.tar.bz2 -> ${P}.tar.bz2"
 
 LICENSE="GPL-3"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
 SLOT="2"
-IUSE="debug doc examples"
+KEYWORDS="~alpha amd64 ~arm ~hppa ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
+IUSE="debug doc examples test"
+# bugs 426236, 455460, 467288
+RESTRICT="test"
 
-COMMON_DEPEND="
+RDEPEND="
 	examples? (
 		dev-qt/qtgui:4
 		dev-qt/qtopengl:4
-	)"
-DEPEND="${COMMON_DEPEND}
-	doc? ( app-doc/doxygen )"
-RDEPEND="${COMMON_DEPEND}
+	)
 	!dev-cpp/eigen:0"
-
-MAKEOPTS+=" -j1"
-
-# bugs 426236, 455460, 467288
-RESTRICT="test"
+DEPEND="${RDEPEND}
+	doc? ( app-doc/doxygen )"
 
 src_unpack() {
 	unpack ${A}
@@ -35,44 +31,32 @@ src_unpack() {
 }
 
 src_configure() {
-	# benchmarks (BTL) brings up damn load of external deps including fortran
-	# compiler
+	# benchmarks (BTL) brings up a damn load of external deps including fortran
 	# library hangs up complete compilation proccess, test later
-	mycmakeargs=(
+	local mycmakeargs=(
 		-DEIGEN_BUILD_LIB=OFF
 		-DEIGEN_BUILD_BTL=OFF
 		-DEIGEN_BUILD_PKGCONFIG=ON
-		$(cmake-utils_use examples EIGEN_BUILD_DEMOS)
+		-DEIGEN_BUILD_DEMOS=$(usex examples)
+		-DEIGEN_BUILD_TESTS=$(usex test)
 	)
 	cmake-utils_src_configure
 }
 
 src_compile() {
-	cmake-utils_src_compile
+	cmake-utils_src_compile -j1
+
 	if use doc; then
-		cd "${CMAKE_BUILD_DIR}"
-		emake doc
+		cmake-utils_src_compile -j1 doc
+		HTML_DOCS=( "${BUILD_DIR}"/html/. )
 	fi
 }
 
 src_install() {
-	cmake-utils_src_install
-	if use doc; then
-		cd "${CMAKE_BUILD_DIR}"/doc
-		dohtml -r html/*
-	fi
+	cmake-utils_src_install -j1
+
 	if use examples; then
-		cd "${CMAKE_BUILD_DIR}"/demos
+		cd "${BUILD_DIR}"/demos || die
 		dobin mandelbrot/mandelbrot opengl/quaternion_demo
 	fi
 }
-
-src_test() {
-	mycmakeargs=(
-		-DEIGEN_BUILD_TESTS=ON
-		-DEIGEN_TEST_NO_FORTRAN=ON
-	)
-	cmake-utils_src_configure
-	cmake-utils_src_compile
-	cmake-utils_src_test
-}


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-08-16 15:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-08-16 15:57 [gentoo-commits] proj/kde-sunset:master commit in: dev-cpp/eigen/ Andreas Sturmlechner
  -- strict thread matches above, loose matches on Subject: below --
2017-02-02 10:57 Johannes Huber

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox