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

commit:     5d6330cca352fe0ab24245e9e6f62d428bd840d8
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 16 19:45:39 2014 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Jan 18 07:38:34 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=5d6330cc

sci-chemistry/avogadro2: New package, written by me

Package-Manager: portage-2.2.8
RepoMan-Options: --force

---
 sci-chemistry/avogadro2/ChangeLog              | 10 ++++++
 sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild | 43 ++++++++++++++++++++++++++
 sci-chemistry/avogadro2/metadata.xml           | 11 +++++++
 3 files changed, 64 insertions(+)

diff --git a/sci-chemistry/avogadro2/ChangeLog b/sci-chemistry/avogadro2/ChangeLog
new file mode 100644
index 0000000..171dd46
--- /dev/null
+++ b/sci-chemistry/avogadro2/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for sci-chemistry/avogadro2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*avogadro2-0.7.2 (16 Jan 2014)
+
+  16 Jan 2014; Justin Lecher <jlec@gentoo.org> +avogadro2-0.7.2.ebuild,
+  +metadata.xml:
+  New package, written by me
+

diff --git a/sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild b/sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild
new file mode 100644
index 0000000..824b2f7
--- /dev/null
+++ b/sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/avogadrolibs/avogadrolibs-0.7.2.ebuild,v 1.1 2014/01/16 18:47:35 jlec Exp $
+
+EAPI=5
+
+inherit cmake-utils
+
+MY_PN=avogadroapp
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Advanced molecule editor and visualizer 2"
+HOMEPAGE="http://www.openchemistry.org/"
+SRC_URI="mirror://sourceforge/project/avogadro/avogadro2/${PV}/${MY_P}.tar.gz"
+
+SLOT="0"
+LICENSE="BSD GPL-2+"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc rpc test"
+
+RDEPEND="
+	>=dev-cpp/eigen-3.2.0-r1
+	dev-qt/qtcore:4
+	dev-qt/qtgui:4
+	dev-qt/qtopengl:4
+	~sci-libs/avogadrolibs-${PV}
+	sci-libs/hdf5
+	rpc? ( sci-chemistry/molequeue )
+"
+DEPEND="${DEPEND}"
+
+RESTRICT=test
+
+S="${WORKDIR}"/${MY_P}
+
+src_configure() {
+	local mycmakeargs=(
+		$(cmake-utils_use_build doc DOCUMENTATION)
+		$(cmake-utils_use rpc Avogadro_ENABLE_RPC)
+		$(cmake-utils_use_enable test TESTING)
+		)
+	cmake-utils_src_configure
+}

diff --git a/sci-chemistry/avogadro2/metadata.xml b/sci-chemistry/avogadro2/metadata.xml
new file mode 100644
index 0000000..807ce86
--- /dev/null
+++ b/sci-chemistry/avogadro2/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <herd>sci-chemistry</herd>
+  <maintainer>
+    <email>jlec@gentoo.org</email>
+  </maintainer>
+  <use>
+    <flag name="rpc">Enable RPC server</flag>
+  </use>
+</pkgmetadata>


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

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

commit:     a3ccb579465fac54bd0c186d58823bb02c4b3bcd
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 16 20:08:14 2014 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Jan 18 07:38:34 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=a3ccb579

sci-chemistry/avogadro2: fix USE deps; don't install license file

Package-Manager: portage-2.2.8
RepoMan-Options: --force

---
 sci-chemistry/avogadro2/ChangeLog              | 3 +++
 sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild | 7 ++++++-
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/sci-chemistry/avogadro2/ChangeLog b/sci-chemistry/avogadro2/ChangeLog
index 171dd46..e2e10ec 100644
--- a/sci-chemistry/avogadro2/ChangeLog
+++ b/sci-chemistry/avogadro2/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  16 Jan 2014; Justin Lecher <jlec@gentoo.org> avogadro2-0.7.2.ebuild:
+  fix USE deps; don't install license file
+
 *avogadro2-0.7.2 (16 Jan 2014)
 
   16 Jan 2014; Justin Lecher <jlec@gentoo.org> +avogadro2-0.7.2.ebuild,

diff --git a/sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild b/sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild
index 824b2f7..3192fe5 100644
--- a/sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild
+++ b/sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild
@@ -23,7 +23,7 @@ RDEPEND="
 	dev-qt/qtcore:4
 	dev-qt/qtgui:4
 	dev-qt/qtopengl:4
-	~sci-libs/avogadrolibs-${PV}
+	~sci-libs/avogadrolibs-${PV}[qt4,opengl]
 	sci-libs/hdf5
 	rpc? ( sci-chemistry/molequeue )
 "
@@ -33,6 +33,11 @@ RESTRICT=test
 
 S="${WORKDIR}"/${MY_P}
 
+src_prepare() {
+	sed '/COPYING/d' -i CMakeLists.txt || die
+	cmake-utils_src_prepare
+}
+
 src_configure() {
 	local mycmakeargs=(
 		$(cmake-utils_use_build doc DOCUMENTATION)


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

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

commit:     9c5721325c105e8ff983ca1e8f14a4d82d33c519
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 16 19:45:39 2014 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Thu Jan 16 19:45:39 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=9c572132

sci-chemistry/avogadro2: New package, written by me

Package-Manager: portage-2.2.8
RepoMan-Options: --force

---
 sci-chemistry/avogadro2/ChangeLog              | 10 ++++++
 sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild | 43 ++++++++++++++++++++++++++
 sci-chemistry/avogadro2/metadata.xml           | 11 +++++++
 3 files changed, 64 insertions(+)

diff --git a/sci-chemistry/avogadro2/ChangeLog b/sci-chemistry/avogadro2/ChangeLog
new file mode 100644
index 0000000..171dd46
--- /dev/null
+++ b/sci-chemistry/avogadro2/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for sci-chemistry/avogadro2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*avogadro2-0.7.2 (16 Jan 2014)
+
+  16 Jan 2014; Justin Lecher <jlec@gentoo.org> +avogadro2-0.7.2.ebuild,
+  +metadata.xml:
+  New package, written by me
+

diff --git a/sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild b/sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild
new file mode 100644
index 0000000..824b2f7
--- /dev/null
+++ b/sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/avogadrolibs/avogadrolibs-0.7.2.ebuild,v 1.1 2014/01/16 18:47:35 jlec Exp $
+
+EAPI=5
+
+inherit cmake-utils
+
+MY_PN=avogadroapp
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Advanced molecule editor and visualizer 2"
+HOMEPAGE="http://www.openchemistry.org/"
+SRC_URI="mirror://sourceforge/project/avogadro/avogadro2/${PV}/${MY_P}.tar.gz"
+
+SLOT="0"
+LICENSE="BSD GPL-2+"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc rpc test"
+
+RDEPEND="
+	>=dev-cpp/eigen-3.2.0-r1
+	dev-qt/qtcore:4
+	dev-qt/qtgui:4
+	dev-qt/qtopengl:4
+	~sci-libs/avogadrolibs-${PV}
+	sci-libs/hdf5
+	rpc? ( sci-chemistry/molequeue )
+"
+DEPEND="${DEPEND}"
+
+RESTRICT=test
+
+S="${WORKDIR}"/${MY_P}
+
+src_configure() {
+	local mycmakeargs=(
+		$(cmake-utils_use_build doc DOCUMENTATION)
+		$(cmake-utils_use rpc Avogadro_ENABLE_RPC)
+		$(cmake-utils_use_enable test TESTING)
+		)
+	cmake-utils_src_configure
+}

diff --git a/sci-chemistry/avogadro2/metadata.xml b/sci-chemistry/avogadro2/metadata.xml
new file mode 100644
index 0000000..807ce86
--- /dev/null
+++ b/sci-chemistry/avogadro2/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <herd>sci-chemistry</herd>
+  <maintainer>
+    <email>jlec@gentoo.org</email>
+  </maintainer>
+  <use>
+    <flag name="rpc">Enable RPC server</flag>
+  </use>
+</pkgmetadata>


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

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

commit:     dbfc46b43aeafefa483426cb4c1902f5aa30393b
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 16 20:08:14 2014 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Jan 17 20:10:48 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=dbfc46b4

sci-chemistry/avogadro2: fix USE deps; don't install license file

Package-Manager: portage-2.2.8
RepoMan-Options: --force

---
 sci-chemistry/avogadro2/ChangeLog              | 3 +++
 sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild | 7 ++++++-
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/sci-chemistry/avogadro2/ChangeLog b/sci-chemistry/avogadro2/ChangeLog
index 171dd46..e2e10ec 100644
--- a/sci-chemistry/avogadro2/ChangeLog
+++ b/sci-chemistry/avogadro2/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  16 Jan 2014; Justin Lecher <jlec@gentoo.org> avogadro2-0.7.2.ebuild:
+  fix USE deps; don't install license file
+
 *avogadro2-0.7.2 (16 Jan 2014)
 
   16 Jan 2014; Justin Lecher <jlec@gentoo.org> +avogadro2-0.7.2.ebuild,

diff --git a/sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild b/sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild
index 824b2f7..3192fe5 100644
--- a/sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild
+++ b/sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild
@@ -23,7 +23,7 @@ RDEPEND="
 	dev-qt/qtcore:4
 	dev-qt/qtgui:4
 	dev-qt/qtopengl:4
-	~sci-libs/avogadrolibs-${PV}
+	~sci-libs/avogadrolibs-${PV}[qt4,opengl]
 	sci-libs/hdf5
 	rpc? ( sci-chemistry/molequeue )
 "
@@ -33,6 +33,11 @@ RESTRICT=test
 
 S="${WORKDIR}"/${MY_P}
 
+src_prepare() {
+	sed '/COPYING/d' -i CMakeLists.txt || die
+	cmake-utils_src_prepare
+}
+
 src_configure() {
 	local mycmakeargs=(
 		$(cmake-utils_use_build doc DOCUMENTATION)


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

* [gentoo-commits] proj/sci:master commit in: sci-chemistry/avogadro2/
@ 2015-12-28 16:11 Justin Lecher
  0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher @ 2015-12-28 16:11 UTC (permalink / raw
  To: gentoo-commits

commit:     883b50a22487ffc223d8acbe10fb1446363c2d8b
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 28 16:11:41 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Dec 28 16:11:41 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=883b50a2

sci-chemistry/avogadro2: Version Bump

Package-Manager: portage-2.2.26
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 sci-chemistry/avogadro2/avogadro2-0.8.0.ebuild | 53 ++++++++++++++++++++++++++
 sci-chemistry/avogadro2/metadata.xml           |  1 +
 2 files changed, 54 insertions(+)

diff --git a/sci-chemistry/avogadro2/avogadro2-0.8.0.ebuild b/sci-chemistry/avogadro2/avogadro2-0.8.0.ebuild
new file mode 100644
index 0000000..0ff1c1b
--- /dev/null
+++ b/sci-chemistry/avogadro2/avogadro2-0.8.0.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-utils
+
+MY_PN=avogadroapp
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Advanced molecule editor and visualizer 2"
+HOMEPAGE="http://www.openchemistry.org/"
+SRC_URI="mirror://sourceforge/project/avogadro/avogadro2/${PV}/${MY_P}.tar.gz"
+
+SLOT="0"
+LICENSE="BSD GPL-2+"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc rpc test vtk"
+
+RDEPEND="
+	dev-qt/qtconcurrent:5
+	dev-qt/qtcore:5
+	dev-qt/qtgui:5
+	dev-qt/qtnetwork:5
+	dev-qt/qtopengl:5
+	dev-qt/qtwidgets:5
+	~sci-libs/avogadrolibs-${PV}[qt5,opengl]
+	sci-libs/hdf5
+	rpc? ( sci-chemistry/molequeue )
+"
+DEPEND="${DEPEND}
+	>=dev-cpp/eigen-3.2.0-r1
+	test? ( dev-qt/qttest:5 )"
+
+RESTRICT=test
+
+S="${WORKDIR}"/${MY_P}
+
+src_prepare() {
+	sed '/COPYING/d' -i CMakeLists.txt || die
+	cmake-utils_src_prepare
+}
+
+src_configure() {
+	local mycmakeargs=(
+		$(cmake-utils_use_build doc DOCUMENTATION)
+		$(cmake-utils_use rpc Avogadro_ENABLE_RPC)
+		$(cmake-utils_use_enable test TESTING)
+		$(cmake-utils_use_use vtk)
+		)
+	cmake-utils_src_configure
+}

diff --git a/sci-chemistry/avogadro2/metadata.xml b/sci-chemistry/avogadro2/metadata.xml
index 9a5ff7d..0c84b64 100644
--- a/sci-chemistry/avogadro2/metadata.xml
+++ b/sci-chemistry/avogadro2/metadata.xml
@@ -7,6 +7,7 @@
   </maintainer>
   <use>
     <flag name="rpc">Enable RPC server</flag>
+    <flag name="vtk">include vtk support</flag>
   </use>
   <upstream>
     <remote-id type="sourceforge">avogadro</remote-id>


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

* [gentoo-commits] proj/sci:master commit in: sci-chemistry/avogadro2/
@ 2015-12-29 10:46 Justin Lecher
  0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher @ 2015-12-29 10:46 UTC (permalink / raw
  To: gentoo-commits

commit:     9c6542dbafb3907d9e97273cc1ee510a7ad8bd43
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 29 10:45:48 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Dec 29 10:45:48 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=9c6542db

Moved to tree

Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 sci-chemistry/avogadro2/ChangeLog              | 15 --------
 sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild | 48 -----------------------
 sci-chemistry/avogadro2/avogadro2-0.8.0.ebuild | 53 --------------------------
 sci-chemistry/avogadro2/metadata.xml           | 15 --------
 4 files changed, 131 deletions(-)

diff --git a/sci-chemistry/avogadro2/ChangeLog b/sci-chemistry/avogadro2/ChangeLog
deleted file mode 100644
index bc89749..0000000
--- a/sci-chemistry/avogadro2/ChangeLog
+++ /dev/null
@@ -1,15 +0,0 @@
-# ChangeLog for sci-chemistry/avogadro2
-# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Id$
-
-  08 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
-  sci-chemistry/avogadro2: Updating remote-id in metadata.xml
-
-  16 Jan 2014; Justin Lecher <jlec@gentoo.org> avogadro2-0.7.2.ebuild:
-  fix USE deps; don't install license file
-
-*avogadro2-0.7.2 (16 Jan 2014)
-
-  16 Jan 2014; Justin Lecher <jlec@gentoo.org> +avogadro2-0.7.2.ebuild,
-  +metadata.xml:
-  New package, written by me

diff --git a/sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild b/sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild
deleted file mode 100644
index 46f695d..0000000
--- a/sci-chemistry/avogadro2/avogadro2-0.7.2.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit cmake-utils
-
-MY_PN=avogadroapp
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Advanced molecule editor and visualizer 2"
-HOMEPAGE="http://www.openchemistry.org/"
-SRC_URI="mirror://sourceforge/project/avogadro/avogadro2/${PV}/${MY_P}.tar.gz"
-
-SLOT="0"
-LICENSE="BSD GPL-2+"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc rpc test"
-
-RDEPEND="
-	>=dev-cpp/eigen-3.2.0-r1
-	dev-qt/qtcore:4
-	dev-qt/qtgui:4
-	dev-qt/qtopengl:4
-	~sci-libs/avogadrolibs-${PV}[qt4,opengl]
-	sci-libs/hdf5
-	rpc? ( sci-chemistry/molequeue )
-"
-DEPEND="${DEPEND}"
-
-RESTRICT=test
-
-S="${WORKDIR}"/${MY_P}
-
-src_prepare() {
-	sed '/COPYING/d' -i CMakeLists.txt || die
-	cmake-utils_src_prepare
-}
-
-src_configure() {
-	local mycmakeargs=(
-		$(cmake-utils_use_build doc DOCUMENTATION)
-		$(cmake-utils_use rpc Avogadro_ENABLE_RPC)
-		$(cmake-utils_use_enable test TESTING)
-		)
-	cmake-utils_src_configure
-}

diff --git a/sci-chemistry/avogadro2/avogadro2-0.8.0.ebuild b/sci-chemistry/avogadro2/avogadro2-0.8.0.ebuild
deleted file mode 100644
index 0ff1c1b..0000000
--- a/sci-chemistry/avogadro2/avogadro2-0.8.0.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit cmake-utils
-
-MY_PN=avogadroapp
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Advanced molecule editor and visualizer 2"
-HOMEPAGE="http://www.openchemistry.org/"
-SRC_URI="mirror://sourceforge/project/avogadro/avogadro2/${PV}/${MY_P}.tar.gz"
-
-SLOT="0"
-LICENSE="BSD GPL-2+"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc rpc test vtk"
-
-RDEPEND="
-	dev-qt/qtconcurrent:5
-	dev-qt/qtcore:5
-	dev-qt/qtgui:5
-	dev-qt/qtnetwork:5
-	dev-qt/qtopengl:5
-	dev-qt/qtwidgets:5
-	~sci-libs/avogadrolibs-${PV}[qt5,opengl]
-	sci-libs/hdf5
-	rpc? ( sci-chemistry/molequeue )
-"
-DEPEND="${DEPEND}
-	>=dev-cpp/eigen-3.2.0-r1
-	test? ( dev-qt/qttest:5 )"
-
-RESTRICT=test
-
-S="${WORKDIR}"/${MY_P}
-
-src_prepare() {
-	sed '/COPYING/d' -i CMakeLists.txt || die
-	cmake-utils_src_prepare
-}
-
-src_configure() {
-	local mycmakeargs=(
-		$(cmake-utils_use_build doc DOCUMENTATION)
-		$(cmake-utils_use rpc Avogadro_ENABLE_RPC)
-		$(cmake-utils_use_enable test TESTING)
-		$(cmake-utils_use_use vtk)
-		)
-	cmake-utils_src_configure
-}

diff --git a/sci-chemistry/avogadro2/metadata.xml b/sci-chemistry/avogadro2/metadata.xml
deleted file mode 100644
index 0c84b64..0000000
--- a/sci-chemistry/avogadro2/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-  <herd>sci-chemistry</herd>
-  <maintainer>
-    <email>jlec@gentoo.org</email>
-  </maintainer>
-  <use>
-    <flag name="rpc">Enable RPC server</flag>
-    <flag name="vtk">include vtk support</flag>
-  </use>
-  <upstream>
-    <remote-id type="sourceforge">avogadro</remote-id>
-  </upstream>
-</pkgmetadata>


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

end of thread, other threads:[~2015-12-29 10:46 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-18  7:38 [gentoo-commits] proj/sci:master commit in: sci-chemistry/avogadro2/ Justin Lecher
  -- strict thread matches above, loose matches on Subject: below --
2014-01-18  7:38 Justin Lecher
2014-01-18  7:39 Justin Lecher
2014-01-18  7:39 Justin Lecher
2015-12-28 16:11 Justin Lecher
2015-12-29 10:46 Justin Lecher

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