diff options
author | Thomas Veith <xtv@gentoo.org> | 2004-05-24 21:56:31 +0000 |
---|---|---|
committer | Thomas Veith <xtv@gentoo.org> | 2004-05-24 21:56:31 +0000 |
commit | 8ed90c3ee9b9b926474fee3a9c4f87a9330463b6 (patch) | |
tree | e1fbda66f2d672699494003d93bd88c824721f1e /app-sci/xd3d | |
parent | Added to ~ppc (diff) | |
download | historical-8ed90c3ee9b9b926474fee3a9c4f87a9330463b6.tar.gz historical-8ed90c3ee9b9b926474fee3a9c4f87a9330463b6.tar.bz2 historical-8ed90c3ee9b9b926474fee3a9c4f87a9330463b6.zip |
Fixed Bug 51675. Thanks to Tobias Minich.
Diffstat (limited to 'app-sci/xd3d')
-rw-r--r-- | app-sci/xd3d/ChangeLog | 5 | ||||
-rw-r--r-- | app-sci/xd3d/Manifest | 4 | ||||
-rw-r--r-- | app-sci/xd3d/xd3d-8.2.1.ebuild | 13 |
3 files changed, 14 insertions, 8 deletions
diff --git a/app-sci/xd3d/ChangeLog b/app-sci/xd3d/ChangeLog index 93db5ace0b5a..c8b141982b38 100644 --- a/app-sci/xd3d/ChangeLog +++ b/app-sci/xd3d/ChangeLog @@ -1,9 +1,12 @@ # ChangeLog for app-sci/xd3d # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/xd3d/ChangeLog,v 1.1 2004/05/20 12:48:10 xtv Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/xd3d/ChangeLog,v 1.2 2004/05/24 21:56:31 xtv Exp $ *xd3d-8.2.1 (20 May 2004) + 24 May 2004; Thomas Veith <xtv@gentoo.org> xd3d-8.1.2.ebuild: + Fixed bug #51675. Thanks to Tobias Minich for pointing out. + 20 May 2004; Thomas Veith <xtv@gentoo.org> xd3d-8.2.1.ebuild, Manifest, ChangeLog, metadata.xml, files/gentoo-xd3d-8.2.1.diff : Initial import. diff --git a/app-sci/xd3d/Manifest b/app-sci/xd3d/Manifest index 0298ee3a200c..9007d3ee875e 100644 --- a/app-sci/xd3d/Manifest +++ b/app-sci/xd3d/Manifest @@ -1,5 +1,5 @@ -MD5 257b0f58cd0f258e41f1c41b74009f89 ChangeLog 380 +MD5 836d6d7e2aa32e22e161e6d5d537cd80 ChangeLog 508 MD5 7bf785acde90eaaaf82fbf66074df9ec metadata.xml 673 -MD5 c097da6b9d6a487a2d7aef0c45908c9b xd3d-8.2.1.ebuild 1051 +MD5 0af0c6953f751a77fa448d57c4dec149 xd3d-8.2.1.ebuild 1174 MD5 8e74eb67d30393b9b79c4cf10e070ac9 files/gentoo-xd3d-8.2.1.diff 4127 MD5 155cd0a8aa6b4012cddc9e7666e93b4f files/digest-xd3d-8.2.1 63 diff --git a/app-sci/xd3d/xd3d-8.2.1.ebuild b/app-sci/xd3d/xd3d-8.2.1.ebuild index 1f98195ce10f..8606136f936e 100644 --- a/app-sci/xd3d/xd3d-8.2.1.ebuild +++ b/app-sci/xd3d/xd3d-8.2.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/xd3d/xd3d-8.2.1.ebuild,v 1.1 2004/05/20 12:48:10 xtv Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/xd3d/xd3d-8.2.1.ebuild,v 1.2 2004/05/24 21:56:31 xtv Exp $ DESCRIPTION="scientific visualization tool" @@ -15,9 +15,11 @@ KEYWORDS="~x86" IUSE="icc" -DEPEND="virtual/x11 \ +RDEPEND="virtual/x11 \ icc? ( dev-lang/icc dev-lang/ifc )" +DEPEND="${RDEPEND} sys-apps/which" + src_unpack() { unpack ${A} cd ${S} @@ -28,16 +30,17 @@ src_compile() { if use icc; then sed "s:##D##:${D}:g" < RULES.icc > RULES.gentoo else + which g77 2> /dev/null || die "No GNU Fortran compiler found!" sed "s:##CFLAGS##:${CFLAGS}:g" < RULES.gentoo > RULES.linux sed "s:##D##:${D}:g" < RULES.linux > RULES.gentoo fi - ./configure -arch=gentoo + ./configure -arch=gentoo || die - make + make || die } src_install() { - make install + make install || die dodoc BUGS CHANGELOG FAQ FORMATS INSTALL LICENSE README insinto /usr/share/doc/${PF} |