* [gentoo-commits] gentoo-x86 commit in sci-geosciences/vis5d+: vis5d+-1.2.1.ebuild ChangeLog
@ 2009-08-12 14:10 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 2+ messages in thread
From: Samuli Suominen (ssuominen) @ 2009-08-12 14:10 UTC (permalink / raw
To: gentoo-commits
ssuominen 09/08/12 14:10:16
Modified: vis5d+-1.2.1.ebuild ChangeLog
Log:
Fix building with GCC 4.4+ wrt #274281. Keyword -amd64 because the code is not 64bit safe and Portage aborts on install.
(Portage version: 2.2_rc36/cvs/Linux x86_64)
Revision Changes Path
1.3 sci-geosciences/vis5d+/vis5d+-1.2.1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/vis5d+/vis5d+-1.2.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/vis5d+/vis5d+-1.2.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/vis5d+/vis5d+-1.2.1.ebuild?r1=1.2&r2=1.3
Index: vis5d+-1.2.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/vis5d+/vis5d+-1.2.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- vis5d+-1.2.1.ebuild 10 Nov 2005 19:00:48 -0000 1.2
+++ vis5d+-1.2.1.ebuild 12 Aug 2009 14:10:16 -0000 1.3
@@ -1,7 +1,8 @@
-# Copyright 1999-2005 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/vis5d+/vis5d+-1.2.1.ebuild,v 1.2 2005/11/10 19:00:48 metalgod Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/vis5d+/vis5d+-1.2.1.ebuild,v 1.3 2009/08/12 14:10:16 ssuominen Exp $
+EAPI=2
inherit eutils
DESCRIPTION="3dimensional weather modeling software"
@@ -10,24 +11,24 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="x86 ~amd64"
+# amd64: Function `vis5d_get_dtx' implicitly converted to pointer at graphics.ogl.c:1355
+KEYWORDS="-amd64 x86"
IUSE=""
-DEPEND=">=sci-libs/netcdf-3.5.0"
+RDEPEND=">=sci-libs/netcdf-3.5"
+DEPEND="${RDEPEND}"
-src_compile() {
- ./configure \
- --host=${CHOST} \
- --prefix=/usr \
- --libdir=/usr/$(get_libdir) \
- --without-mixkit \
- --enable-threads || die "./configure failed"
+src_prepare() {
+ epatch "${FILESDIR}"/${P}-round.patch
+}
- emake || die "emake failed"
+src_configure() {
+ econf \
+ --without-mixkit \
+ --enable-threads
}
src_install () {
- make DESTDIR="${D}" install || die "make install failed"
-
- dodoc README NEWS INSTALL ChangeLog PORTING AUTHORS ABOUT-NLS
+ emake DESTDIR="${D}" install || die "emake install failed"
+ dodoc README NEWS ChangeLog PORTING AUTHORS
}
1.5 sci-geosciences/vis5d+/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/vis5d+/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/vis5d+/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-geosciences/vis5d+/ChangeLog?r1=1.4&r2=1.5
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/vis5d+/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog 22 Feb 2007 01:22:17 -0000 1.4
+++ ChangeLog 12 Aug 2009 14:10:16 -0000 1.5
@@ -1,6 +1,11 @@
# ChangeLog for sci-geosciences/vis5d+
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/vis5d+/ChangeLog,v 1.4 2007/02/22 01:22:17 jokey Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/vis5d+/ChangeLog,v 1.5 2009/08/12 14:10:16 ssuominen Exp $
+
+ 12 Aug 2009; Samuli Suominen <ssuominen@gentoo.org> vis5d+-1.2.1.ebuild,
+ +files/vis5d+-1.2.1-round.patch:
+ Fix building with GCC 4.4+ wrt #274281. Keyword -amd64 because the code is
+ not 64bit safe and Portage aborts on install.
22 Feb 2007; Markus Ullmann <jokey@gentoo.org> ChangeLog:
Redigest for Manifest2
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-geosciences/vis5d+: vis5d+-1.2.1.ebuild ChangeLog
@ 2010-06-22 13:11 Justin Lecher (jlec)
0 siblings, 0 replies; 2+ messages in thread
From: Justin Lecher (jlec) @ 2010-06-22 13:11 UTC (permalink / raw
To: gentoo-commits
jlec 10/06/22 13:11:24
Modified: vis5d+-1.2.1.ebuild ChangeLog
Log:
Added missing deps #155248, respecting CC
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.4 sci-geosciences/vis5d+/vis5d+-1.2.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/vis5d+/vis5d+-1.2.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/vis5d+/vis5d+-1.2.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/vis5d+/vis5d+-1.2.1.ebuild?r1=1.3&r2=1.4
Index: vis5d+-1.2.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/vis5d+/vis5d+-1.2.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- vis5d+-1.2.1.ebuild 12 Aug 2009 14:10:16 -0000 1.3
+++ vis5d+-1.2.1.ebuild 22 Jun 2010 13:11:24 -0000 1.4
@@ -1,9 +1,9 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/vis5d+/vis5d+-1.2.1.ebuild,v 1.3 2009/08/12 14:10:16 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/vis5d+/vis5d+-1.2.1.ebuild,v 1.4 2010/06/22 13:11:24 jlec Exp $
EAPI=2
-inherit eutils
+inherit eutils toolchain-funcs
DESCRIPTION="3dimensional weather modeling software"
HOMEPAGE="http://vis5d.sourceforge.net"
@@ -15,7 +15,11 @@
KEYWORDS="-amd64 x86"
IUSE=""
-RDEPEND=">=sci-libs/netcdf-3.5"
+RDEPEND="
+ dev-lang/tcl
+ >=sci-libs/netcdf-3.5
+ x11-libs/libX11
+ virtual/glu"
DEPEND="${RDEPEND}"
src_prepare() {
@@ -28,6 +32,11 @@
--enable-threads
}
+src_compile() {
+ emake \
+ CC="$(tc-getCC)"
+}
+
src_install () {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc README NEWS ChangeLog PORTING AUTHORS
1.6 sci-geosciences/vis5d+/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/vis5d+/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/vis5d+/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-geosciences/vis5d+/ChangeLog?r1=1.5&r2=1.6
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-geosciences/vis5d+/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog 12 Aug 2009 14:10:16 -0000 1.5
+++ ChangeLog 22 Jun 2010 13:11:24 -0000 1.6
@@ -1,6 +1,9 @@
# ChangeLog for sci-geosciences/vis5d+
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/vis5d+/ChangeLog,v 1.5 2009/08/12 14:10:16 ssuominen Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/vis5d+/ChangeLog,v 1.6 2010/06/22 13:11:24 jlec Exp $
+
+ 22 Jun 2010; Justin Lecher <jlec@gentoo.org> vis5d+-1.2.1.ebuild:
+ Added missing deps #155248, respecting CC
12 Aug 2009; Samuli Suominen <ssuominen@gentoo.org> vis5d+-1.2.1.ebuild,
+files/vis5d+-1.2.1-round.patch:
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-06-22 13:11 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-22 13:11 [gentoo-commits] gentoo-x86 commit in sci-geosciences/vis5d+: vis5d+-1.2.1.ebuild ChangeLog Justin Lecher (jlec)
-- strict thread matches above, loose matches on Subject: below --
2009-08-12 14:10 Samuli Suominen (ssuominen)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox