public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/ball/
@ 2012-04-03 18:07 Justin Lecher
  0 siblings, 0 replies; 7+ messages in thread
From: Justin Lecher @ 2012-04-03 18:07 UTC (permalink / raw
  To: gentoo-commits

commit:     673d558f7618947a06ea7c77970c6c877c9ccf6d
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 25 11:28:39 2012 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Mar 25 11:28:39 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=673d558f

New addition, written by me, #406401

(Portage version: 2.2.0_alpha95/git/Linux x86_64, unsigned Manifest commit)

---
 sci-chemistry/ball/ChangeLog        |   10 ++++++
 sci-chemistry/ball/ball-9999.ebuild |   62 +++++++++++++++++++++++++++++++++++
 sci-chemistry/ball/metadata.xml     |   32 ++++++++++++++++++
 3 files changed, 104 insertions(+), 0 deletions(-)

diff --git a/sci-chemistry/ball/ChangeLog b/sci-chemistry/ball/ChangeLog
new file mode 100644
index 0000000..c93b22c
--- /dev/null
+++ b/sci-chemistry/ball/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for sci-chemistry/ball
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*ball-9999 (25 Mar 2012)
+
+  25 Mar 2012; Justin Lecher <jlec@gentoo.org> +ball-9999.ebuild,
+  +metadata.xml:
+  New addition, written by me, #406401
+

diff --git a/sci-chemistry/ball/ball-9999.ebuild b/sci-chemistry/ball/ball-9999.ebuild
new file mode 100644
index 0000000..fc7306d
--- /dev/null
+++ b/sci-chemistry/ball/ball-9999.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+PYTHON_DEPEND="python? 2"
+
+inherit cmake-utils git-2 python
+
+DESCRIPTION="Biochemical Algorithms Library"
+HOMEPAGE="http://www.ball-project.org/"
+SRC_URI=""
+EGIT_REPO_URI="http://ball-git.bioinf.uni-sb.de/BALL.git"
+
+SLOT="0"
+LICENSE="LGPL-2 GPL-3"
+KEYWORDS=""
+IUSE="cuda mpi +python sql +threads +webkit"
+
+RDEPEND="
+	dev-cpp/eigen:3
+	dev-libs/boost
+	media-libs/glew
+	sci-libs/fftw:3.0[threads?]
+	sci-libs/gsl
+	sci-libs/libsvm
+	sci-mathematics/lpsolve
+	virtual/opengl
+	x11-libs/libX11
+	x11-libs/qt-core
+	x11-libs/qt-gui
+	x11-libs/qt-opengl
+	x11-libs/qt-test
+	x11-libs/qt-webkit
+	cuda? ( dev-util/nvidia-cuda-toolkit )
+	mpi? ( virtual/mpi )
+	sql? ( x11-libs/qt-sql )
+	webkit? ( x11-libs/qt-webkit )"
+DEPEND="${RDEPEND}
+	dev-python/sip
+	sys-devel/bison
+	virtual/yacc"
+
+src_prepare() {
+	sed \
+		-e '/INSTALL_DIRECTORY/s:"lib":${CMAKE_INSTALL_LIBDIR}:g' \
+		-i CMakeLists.txt || die
+	base_src_prepare
+}
+
+src_configure() {
+	local mycmakeargs=(
+		$(cmake-utils_use_use threads FFTW_THREADS)
+		$(cmake-utils_use cuda MT_ENABLE_CUDA)
+		$(cmake-utils_use mpi MT_ENABLE_MPI)
+		$(cmake-utils_use sql BALL_HAS_QTSQL)
+		$(cmake-utils_use_use webkit USE_QTWEBKIT)
+		$(cmake-utils_use python BALL_PYTHON_SUPPORT)
+	)
+	cmake-utils_src_configure
+}

diff --git a/sci-chemistry/ball/metadata.xml b/sci-chemistry/ball/metadata.xml
new file mode 100644
index 0000000..8c954a2
--- /dev/null
+++ b/sci-chemistry/ball/metadata.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<herd>sci</herd>
+	<maintainer>
+		<email>jlec@gentoo.org</email>
+	</maintainer>
+	<longdescription>
+Rapid Software Prototyping can significantly reduce development times in the 
+field of Computational Molecular Biology and Molecular Modeling. 
+BALL (Biochemical Algorithms Library) is an application framework in C++ that 
+has been specifically designed for this purpose. It provides an extensive set 
+of data structures as well as classes for Molecular Mechanics, advanced 
+solvation methods, comparison and analysis of protein structures, file 
+import/export, and visualization .
+
+BALL has been carefully designed to be robust, easy to use, and open to 
+extensions. Especially its extensibility which results from an object-oriented 
+and generic programming approach distinguishes it from other software packages.
+BALL is well suited to serve as a public repository for reliable data 
+structures and algorithms.
+
+Based on BALL we have developed a stand-alone tool for molecular visualization,
+BALLView . BALLView makes the broad functionality available through an 
+integrated user-friendly GUI.
+</longdescription>
+	<use>
+		<flag name="sql">Include SQL database support</flag>
+		<flag name="cuda">Include cuda support</flag>
+		<flag name="webkit">Uses <pkg>x11-libs/qt-webkit</pkg> for drawing</flag>
+	</use>
+</pkgmetadata>



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

* [gentoo-commits] proj/sci:master commit in: sci-chemistry/ball/
@ 2012-04-03 18:07 Justin Lecher
  0 siblings, 0 replies; 7+ messages in thread
From: Justin Lecher @ 2012-04-03 18:07 UTC (permalink / raw
  To: gentoo-commits

commit:     eef9396c5e4e63d9746154a556c73f0968568d71
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 25 11:32:25 2012 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Mar 25 11:32:25 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=eef9396c

Correct usage of python.eclass

(Portage version: 2.2.0_alpha95/git/Linux x86_64, unsigned Manifest commit)

---
 sci-chemistry/ball/ChangeLog        |    3 +++
 sci-chemistry/ball/ball-9999.ebuild |    6 ++++++
 2 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/sci-chemistry/ball/ChangeLog b/sci-chemistry/ball/ChangeLog
index c93b22c..dfe1c65 100644
--- a/sci-chemistry/ball/ChangeLog
+++ b/sci-chemistry/ball/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  25 Mar 2012; Justin Lecher <jlec@gentoo.org> ball-9999.ebuild:
+  Correct usage of python.eclass
+
 *ball-9999 (25 Mar 2012)
 
   25 Mar 2012; Justin Lecher <jlec@gentoo.org> +ball-9999.ebuild,

diff --git a/sci-chemistry/ball/ball-9999.ebuild b/sci-chemistry/ball/ball-9999.ebuild
index fc7306d..1689676 100644
--- a/sci-chemistry/ball/ball-9999.ebuild
+++ b/sci-chemistry/ball/ball-9999.ebuild
@@ -42,6 +42,12 @@ DEPEND="${RDEPEND}
 	sys-devel/bison
 	virtual/yacc"
 
+pkg_setup() {
+	use python \
+		&& python_set_active_version 2 \
+		&& python_pkg_setup
+}
+
 src_prepare() {
 	sed \
 		-e '/INSTALL_DIRECTORY/s:"lib":${CMAKE_INSTALL_LIBDIR}:g' \



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

* [gentoo-commits] proj/sci:master commit in: sci-chemistry/ball/
@ 2013-06-12 20:04 Justin Lecher
  0 siblings, 0 replies; 7+ messages in thread
From: Justin Lecher @ 2013-06-12 20:04 UTC (permalink / raw
  To: gentoo-commits

commit:     592d63f17085e0b35fb96e760491795320f50d9d
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 12 20:03:53 2013 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Jun 12 20:03:53 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=592d63f1

sci-chemistry/ball: Bump EAPI and python eclass

Package-Manager: portage-2.2.0_alpha179

---
 sci-chemistry/ball/ChangeLog        |  3 +++
 sci-chemistry/ball/ball-9999.ebuild | 11 +++++------
 sci-chemistry/ball/metadata.xml     |  2 +-
 3 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/sci-chemistry/ball/ChangeLog b/sci-chemistry/ball/ChangeLog
index 7e0be39..303026f 100644
--- a/sci-chemistry/ball/ChangeLog
+++ b/sci-chemistry/ball/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  12 Jun 2013; Justin Lecher <jlec@gentoo.org> ball-9999.ebuild, metadata.xml:
+  Bump EAPI and python eclass
+
   03 Mar 2013; Justin Lecher <jlec@gentoo.org> ball-9999.ebuild, metadata.xml:
   Update to new qt deps names
 

diff --git a/sci-chemistry/ball/ball-9999.ebuild b/sci-chemistry/ball/ball-9999.ebuild
index 8cab073..d1f7750 100644
--- a/sci-chemistry/ball/ball-9999.ebuild
+++ b/sci-chemistry/ball/ball-9999.ebuild
@@ -2,11 +2,11 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI=4
+EAPI=5
 
-PYTHON_DEPEND="python? 2"
+PYTHON_COMPAT=( python{2_6,2_7} )
 
-inherit cmake-utils git-2 python
+inherit cmake-utils git-2 python-single-r1
 
 DESCRIPTION="Biochemical Algorithms Library"
 HOMEPAGE="http://www.ball-project.org/"
@@ -36,6 +36,7 @@ RDEPEND="
 	cuda? ( dev-util/nvidia-cuda-toolkit )
 	mpi? ( virtual/mpi )
 	sql? ( dev-qt/qtsql )
+	python? ( ${PYTHON_DEPS} )
 	webkit? ( dev-qt/qtwebkit )"
 DEPEND="${RDEPEND}
 	dev-python/sip
@@ -48,9 +49,7 @@ PATCHES=(
 	)
 
 pkg_setup() {
-	use python \
-		&& python_set_active_version 2 \
-		&& python_pkg_setup
+	use python && python-single-r1_pkg_setup
 }
 
 src_configure() {

diff --git a/sci-chemistry/ball/metadata.xml b/sci-chemistry/ball/metadata.xml
index 95b1541..a607b9e 100644
--- a/sci-chemistry/ball/metadata.xml
+++ b/sci-chemistry/ball/metadata.xml
@@ -27,6 +27,6 @@ integrated user-friendly GUI.
   <use>
     <flag name="sql">Include SQL database support</flag>
     <flag name="cuda">Include cuda support</flag>
-    <flag name="webkit">Uses <pkg>x11-libs/qt-webkit</pkg> for drawing</flag>
+    <flag name="webkit">Uses <pkg>dev-qt/qt-webkit</pkg> for drawing</flag>
   </use>
 </pkgmetadata>


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

* [gentoo-commits] proj/sci:master commit in: sci-chemistry/ball/
@ 2013-09-16 18:17 Nicolas Bock
  0 siblings, 0 replies; 7+ messages in thread
From: Nicolas Bock @ 2013-09-16 18:17 UTC (permalink / raw
  To: gentoo-commits

commit:     3a0811a3a25193bfee0a01b48a8249b2dde4c0f6
Author:     ustcscgy <ustcscgy <AT> 163 <DOT> com>
AuthorDate: Sun Sep 15 13:27:01 2013 +0000
Commit:     Nicolas Bock <nicolasbock <AT> gmail <DOT> com>
CommitDate: Sun Sep 15 13:27:01 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=3a0811a3

fix ball-9999.ebuild upstream git uri and qt dependencies

---
 sci-chemistry/ball/ball-9999.ebuild | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/sci-chemistry/ball/ball-9999.ebuild b/sci-chemistry/ball/ball-9999.ebuild
index d1f7750..0008868 100644
--- a/sci-chemistry/ball/ball-9999.ebuild
+++ b/sci-chemistry/ball/ball-9999.ebuild
@@ -11,7 +11,7 @@ inherit cmake-utils git-2 python-single-r1
 DESCRIPTION="Biochemical Algorithms Library"
 HOMEPAGE="http://www.ball-project.org/"
 SRC_URI=""
-EGIT_REPO_URI="http://ball-git.bioinf.uni-sb.de/BALL.git"
+EGIT_REPO_URI="https://bitbucket.org/ball/ball.git"
 
 SLOT="0"
 LICENSE="LGPL-2 GPL-3"
@@ -28,16 +28,15 @@ RDEPEND="
 	sci-mathematics/lpsolve
 	virtual/opengl
 	x11-libs/libX11
-	dev-qt/qtcore
-	dev-qt/qtgui
-	dev-qt/qtopengl
-	dev-qt/qttest
-	dev-qt/qtwebkit
+	dev-qt/qtcore:4
+	dev-qt/qtgui:4
+	dev-qt/qtopengl:4
+	dev-qt/qttest:4
 	cuda? ( dev-util/nvidia-cuda-toolkit )
 	mpi? ( virtual/mpi )
-	sql? ( dev-qt/qtsql )
+	sql? ( dev-qt/qtsql:4 )
 	python? ( ${PYTHON_DEPS} )
-	webkit? ( dev-qt/qtwebkit )"
+	webkit? ( dev-qt/qtwebkit:4 )"
 DEPEND="${RDEPEND}
 	dev-python/sip
 	sys-devel/bison


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

* [gentoo-commits] proj/sci:master commit in: sci-chemistry/ball/
@ 2014-01-06 18:48 Justin Lecher
  0 siblings, 0 replies; 7+ messages in thread
From: Justin Lecher @ 2014-01-06 18:48 UTC (permalink / raw
  To: gentoo-commits

commit:     ae84cad26e4e732120a82d10b055820a13087f89
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Jan  6 18:47:31 2014 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Jan  6 18:47:31 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=ae84cad2

sci-chemistry/ball: Switch from git-2 to git-r3

Package-Manager: portage-2.2.8

---
 sci-chemistry/ball/ChangeLog        | 5 ++++-
 sci-chemistry/ball/ball-9999.ebuild | 4 ++--
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/sci-chemistry/ball/ChangeLog b/sci-chemistry/ball/ChangeLog
index 303026f..d90512f 100644
--- a/sci-chemistry/ball/ChangeLog
+++ b/sci-chemistry/ball/ChangeLog
@@ -1,7 +1,10 @@
 # ChangeLog for sci-chemistry/ball
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  06 Jan 2014; Justin Lecher <jlec@gentoo.org> ball-9999.ebuild:
+  Switch from git-2 to git-r3
+
   12 Jun 2013; Justin Lecher <jlec@gentoo.org> ball-9999.ebuild, metadata.xml:
   Bump EAPI and python eclass
 

diff --git a/sci-chemistry/ball/ball-9999.ebuild b/sci-chemistry/ball/ball-9999.ebuild
index dd1cc56..9c8c921 100644
--- a/sci-chemistry/ball/ball-9999.ebuild
+++ b/sci-chemistry/ball/ball-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
@@ -6,7 +6,7 @@ EAPI=5
 
 PYTHON_COMPAT=( python{2_6,2_7} )
 
-inherit cmake-utils git-2 python-single-r1
+inherit cmake-utils git-r3 python-single-r1
 
 DESCRIPTION="Biochemical Algorithms Library"
 HOMEPAGE="http://www.ball-project.org/"


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

* [gentoo-commits] proj/sci:master commit in: sci-chemistry/ball/
@ 2014-03-27  6:42 Justin Lecher
  0 siblings, 0 replies; 7+ messages in thread
From: Justin Lecher @ 2014-03-27  6:42 UTC (permalink / raw
  To: gentoo-commits

commit:     4b4e19cbc59b4108251e0613aaefe16f72768539
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 27 06:41:39 2014 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Thu Mar 27 06:41:39 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=4b4e19cb

sci-chemistry/ball: Import tree changes

Package-Manager: portage-2.2.10

---
 sci-chemistry/ball/ChangeLog        |  3 +++
 sci-chemistry/ball/ball-9999.ebuild | 35 ++++++++++++++++++++++++-----------
 2 files changed, 27 insertions(+), 11 deletions(-)

diff --git a/sci-chemistry/ball/ChangeLog b/sci-chemistry/ball/ChangeLog
index d90512f..3a9a297 100644
--- a/sci-chemistry/ball/ChangeLog
+++ b/sci-chemistry/ball/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  27 Mar 2014; Justin Lecher <jlec@gentoo.org> ball-9999.ebuild:
+  Import tree changes
+
   06 Jan 2014; Justin Lecher <jlec@gentoo.org> ball-9999.ebuild:
   Switch from git-2 to git-r3
 

diff --git a/sci-chemistry/ball/ball-9999.ebuild b/sci-chemistry/ball/ball-9999.ebuild
index 9c8c921..e39865c 100644
--- a/sci-chemistry/ball/ball-9999.ebuild
+++ b/sci-chemistry/ball/ball-9999.ebuild
@@ -11,16 +11,23 @@ inherit cmake-utils git-r3 python-single-r1
 DESCRIPTION="Biochemical Algorithms Library"
 HOMEPAGE="http://www.ball-project.org/"
 SRC_URI=""
-EGIT_REPO_URI="https://bitbucket.org/ball/ball.git"
+EGIT_REPO_URI="http://bitbucket.org/ball/ball.git"
 
 SLOT="0"
 LICENSE="LGPL-2 GPL-3"
 KEYWORDS=""
-IUSE="cuda mpi +python sql +threads +webkit"
+IUSE="cuda mpi +python sql test +threads +webkit"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
 RDEPEND="
 	dev-cpp/eigen:3
 	dev-libs/boost
+	dev-qt/qtcore:4
+	dev-qt/qtgui:4
+	dev-qt/qtopengl:4
+	dev-qt/qttest:4
+	dev-qt/qtwebkit:4
 	media-libs/glew
 	sci-libs/fftw:3.0[threads?]
 	sci-libs/gsl
@@ -28,14 +35,10 @@ RDEPEND="
 	sci-mathematics/lpsolve
 	virtual/opengl
 	x11-libs/libX11
-	dev-qt/qtcore:4
-	dev-qt/qtgui:4
-	dev-qt/qtopengl:4
-	dev-qt/qttest:4
 	cuda? ( dev-util/nvidia-cuda-toolkit )
 	mpi? ( virtual/mpi )
-	sql? ( dev-qt/qtsql:4 )
 	python? ( ${PYTHON_DEPS} )
+	sql? ( dev-qt/qtsql:4 )
 	webkit? ( dev-qt/qtwebkit:4 )"
 DEPEND="${RDEPEND}
 	dev-python/sip
@@ -53,11 +56,21 @@ pkg_setup() {
 src_configure() {
 	local mycmakeargs=(
 		$(cmake-utils_use_use threads FFTW_THREADS)
-		$(cmake-utils_use_use cuda CUDA)
-		$(cmake-utils_use_use mpi MPI)
-		$(cmake-utils_use_use sql QTSQL)
-		$(cmake-utils_use_use webkit QTWEBKIT)
+		$(cmake-utils_use cuda MT_ENABLE_CUDA)
+		$(cmake-utils_use mpi MT_ENABLE_MPI)
+		$(cmake-utils_use sql BALL_HAS_QTSQL)
+		$(cmake-utils_use_use webkit USE_QTWEBKIT)
 		$(cmake-utils_use python BALL_PYTHON_SUPPORT)
 	)
 	cmake-utils_src_configure
+	local i
+	for i in "${S}"/data/*; do
+		ln -sf "${i}" "${BUILD_DIR}"/source/TEST/ || die
+		ln -sf "${i}" "${S}"/source/TEST/ || die
+	done
+}
+
+src_compile() {
+	cmake-utils_src_compile
+	use test && cmake-utils_src_make build_tests
 }


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

* [gentoo-commits] proj/sci:master commit in: sci-chemistry/ball/
@ 2017-01-29 14:20 Justin Lecher
  0 siblings, 0 replies; 7+ messages in thread
From: Justin Lecher @ 2017-01-29 14:20 UTC (permalink / raw
  To: gentoo-commits

commit:     ddb7187a1baabf21f2b398cd807e4353cf833d6d
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 29 14:20:17 2017 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Jan 29 14:20:17 2017 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=ddb7187a

sci-chemistry/ball: QA fixes

Bump to EAPI 6
add slot operator

Package-Manager: Portage-2.3.3, Repoman-2.3.1
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 sci-chemistry/ball/ball-9999.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sci-chemistry/ball/ball-9999.ebuild b/sci-chemistry/ball/ball-9999.ebuild
index c28754b..4ef9837 100644
--- a/sci-chemistry/ball/ball-9999.ebuild
+++ b/sci-chemistry/ball/ball-9999.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
 PYTHON_COMPAT=( python2_7 )
 
@@ -28,7 +28,7 @@ RDEPEND="
 	dev-qt/qtopengl:4
 	dev-qt/qttest:4
 	dev-qt/qtwebkit:4
-	media-libs/glew
+	media-libs/glew:0=
 	sci-libs/fftw:3.0[threads?]
 	sci-libs/gsl
 	sci-libs/libsvm


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

end of thread, other threads:[~2017-01-29 14:20 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-27  6:42 [gentoo-commits] proj/sci:master commit in: sci-chemistry/ball/ Justin Lecher
  -- strict thread matches above, loose matches on Subject: below --
2017-01-29 14:20 Justin Lecher
2014-01-06 18:48 Justin Lecher
2013-09-16 18:17 Nicolas Bock
2013-06-12 20:04 Justin Lecher
2012-04-03 18:07 Justin Lecher
2012-04-03 18:07 Justin Lecher

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