* [gentoo-commits] proj/sci:master commit in: sys-cluster/ovis/
@ 2012-05-22 19:43 Justin Lecher
0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher @ 2012-05-22 19:43 UTC (permalink / raw
To: gentoo-commits
commit: 2fb1af4b831aed048d53d4e7b1831d672d65e4ed
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue May 22 19:24:04 2012 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue May 22 19:24:04 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=2fb1af4b
sys-cluster/ovis: Add missing eutils.eclass, bump to EAPI=4, remove usage of base.eclass; fix installation of envd file; correct leading spaces
(Portage version: 2.2.0_alpha107/git/Linux x86_64, unsigned Manifest commit)
---
sys-cluster/ovis/ChangeLog | 4 +++
sys-cluster/ovis/ovis-3.0.1.ebuild | 37 +++++++++++++++++------------------
2 files changed, 22 insertions(+), 19 deletions(-)
diff --git a/sys-cluster/ovis/ChangeLog b/sys-cluster/ovis/ChangeLog
index 5b09570..be9c325 100644
--- a/sys-cluster/ovis/ChangeLog
+++ b/sys-cluster/ovis/ChangeLog
@@ -2,6 +2,10 @@
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 22 May 2012; Justin Lecher <jlec@gentoo.org> ovis-3.0.1.ebuild:
+ Add missing eutils.eclass, bump to EAPI=4, remove usage of base.eclass; fix
+ installation of envd file; correct leading spaces
+
*ovis-3.0.1 (22 Apr 2012)
22 Apr 2012; Andrea Arteaga <andyspiros@gmail.com>
diff --git a/sys-cluster/ovis/ovis-3.0.1.ebuild b/sys-cluster/ovis/ovis-3.0.1.ebuild
index 0e1d948..6326f6b 100644
--- a/sys-cluster/ovis/ovis-3.0.1.ebuild
+++ b/sys-cluster/ovis/ovis-3.0.1.ebuild
@@ -2,31 +2,30 @@
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI="2"
+EAPI=4
+
inherit cmake-utils
DESCRIPTION="Tool for statistical analysis of large data sets"
-HOMEPAGE="http://ovis.ca.sandia.gov"
+HOMEPAGE="http://ovis.ca.sandia.gov/"
SRC_URI="http://ovis.ca.sandia.gov/mediawiki/downloads/OVIS-${PV}.tar.gz"
-KEYWORDS="~amd64 ~x86"
-
-LICENSE="BSD"
SLOT="0"
-
+LICENSE="BSD"
+KEYWORDS="~amd64 ~x86"
IUSE="avahi"
-RDEPEND=">=x11-libs/qt-gui-4.7.4
- >=x11-libs/qt-assistant-4.7.4[compat]
- >=dev-libs/qjson-0.7.1
+RDEPEND="
+ >=dev-db/mysql-5.0.77
>=dev-libs/boost-1.44
- avahi? ( >=net-dns/avahi-0.6.27 )
- >=dev-db/mysql-5.0.77
- dev-libs/libevent
- sys-libs/readline"
-
+ dev-libs/libevent
+ >=dev-libs/qjson-0.7.1
+ sys-libs/readline
+ >=x11-libs/qt-assistant-4.7.4[compat]
+ >=x11-libs/qt-gui-4.7.4
+ avahi? ( >=net-dns/avahi-0.6.27 )"
DEPEND="${RDEPEND}
- >=net-dns/avahi-0.6.27"
+ avahi? ( >=net-dns/avahi-0.6.27 )"
S="${WORKDIR}/OVIS-${PV}"
@@ -45,19 +44,19 @@ src_configure() {
src_install() {
cmake-utils_src_install
-
- echo "LDPATH=\"/usr/$(get_libdir)/vtk\"" > "${DISTDIR}/etc/env.d/91ovis"
+ echo "LDPATH=\"/usr/$(get_libdir)/vtk\"" > "${T}/91ovis"
+ doenvd "${T}/91ovis"
}
pkg_postinst() {
elog "Ovis requires a MySQL database and all privileges on it"
elog "in order to work. To do so, start the mysql client with:"
elog " mysql -u root -p"
- elog " "
+ echo ""
elog "and perform the following operations:"
elog " CREATE DATABASE OVIS_Cluster;"
elog " GRANT ALL PRIVILEGES ON OVIS_Cluster.* TO ovis@localhost;"
elog " flush-privileges;"
- elog " "
+ echo ""
einfo "Remember to start the mysql server before using Ovis!"
}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-cluster/ovis/
@ 2012-05-22 19:43 Justin Lecher
0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher @ 2012-05-22 19:43 UTC (permalink / raw
To: gentoo-commits
commit: a32bede7db6561a65f383286e9a6fb868b5910b2
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue May 22 19:24:04 2012 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue May 22 19:28:02 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=a32bede7
sys-cluster/ovis: Add missing eutils.eclass, bump to EAPI=4, remove usage of base.eclass; fix installation of envd file; correct leading spaces
(Portage version: 2.2.0_alpha107/git/Linux x86_64, unsigned Manifest commit)
---
sys-cluster/ovis/ovis-3.0.1.ebuild | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/sys-cluster/ovis/ovis-3.0.1.ebuild b/sys-cluster/ovis/ovis-3.0.1.ebuild
index 6326f6b..cf1aeda 100644
--- a/sys-cluster/ovis/ovis-3.0.1.ebuild
+++ b/sys-cluster/ovis/ovis-3.0.1.ebuild
@@ -4,7 +4,7 @@
EAPI=4
-inherit cmake-utils
+inherit cmake-utils eutils
DESCRIPTION="Tool for statistical analysis of large data sets"
HOMEPAGE="http://ovis.ca.sandia.gov/"
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sys-cluster/ovis/
@ 2012-05-22 19:43 Justin Lecher
0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher @ 2012-05-22 19:43 UTC (permalink / raw
To: gentoo-commits
commit: e06b7ffa15bf761832f311c6d87f074a0e723dbb
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue May 22 19:31:45 2012 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue May 22 19:31:45 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=e06b7ffa
sys-cluster/ovis: Add missing eutils.eclass, bump to EAPI=4, remove usage of base.eclass; fix installation of envd file; correct leading spaces
(Portage version: 2.2.0_alpha107/git/Linux x86_64, unsigned Manifest commit)
---
sys-cluster/ovis/ChangeLog | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/sys-cluster/ovis/ChangeLog b/sys-cluster/ovis/ChangeLog
index be9c325..e1e7e90 100644
--- a/sys-cluster/ovis/ChangeLog
+++ b/sys-cluster/ovis/ChangeLog
@@ -6,6 +6,10 @@
Add missing eutils.eclass, bump to EAPI=4, remove usage of base.eclass; fix
installation of envd file; correct leading spaces
+ 22 May 2012; Justin Lecher <jlec@gentoo.org> ovis-3.0.1.ebuild:
+ Add missing eutils.eclass, bump to EAPI=4, remove usage of base.eclass; fix
+ installation of envd file; correct leading spaces
+
*ovis-3.0.1 (22 Apr 2012)
22 Apr 2012; Andrea Arteaga <andyspiros@gmail.com>
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-05-22 19:45 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-22 19:43 [gentoo-commits] proj/sci:master commit in: sys-cluster/ovis/ Justin Lecher
-- strict thread matches above, loose matches on Subject: below --
2012-05-22 19:43 Justin Lecher
2012-05-22 19:43 Justin Lecher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox