summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sci-visualization/xd3d/xd3d-8.2.1.ebuild')
-rw-r--r--sci-visualization/xd3d/xd3d-8.2.1.ebuild53
1 files changed, 0 insertions, 53 deletions
diff --git a/sci-visualization/xd3d/xd3d-8.2.1.ebuild b/sci-visualization/xd3d/xd3d-8.2.1.ebuild
deleted file mode 100644
index 29e125e8cf83..000000000000
--- a/sci-visualization/xd3d/xd3d-8.2.1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-visualization/xd3d/xd3d-8.2.1.ebuild,v 1.5 2008/01/21 14:24:20 markusle Exp $
-
-DESCRIPTION="scientific visualization tool"
-
-HOMEPAGE="http://www.cmap.polytechnique.fr/~jouve/xd3d/"
-SRC_URI="http://www.cmap.polytechnique.fr/${P}.tar.gz"
-
-LICENSE="GPL-2"
-
-SLOT="0"
-
-KEYWORDS="~ppc ~ppc64 ~x86"
-
-IUSE="icc"
-
-RDEPEND="x11-libs/libXpm
- icc? ( dev-lang/icc dev-lang/ifc )"
-
-DEPEND="${RDEPEND}
- app-shells/tcsh"
-
-src_unpack() {
- unpack "${A}"
- cd "${S}"
- patch -p1 < "${FILESDIR}"/gentoo-${P}.diff
-}
-
-src_compile() {
- if use icc; then
- sed "s:##D##:${D}:g" < RULES.icc > RULES.gentoo
- else
- type -P 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 || die
-
- make || die
-}
-
-src_install() {
- make install || die
-
- dodoc BUGS CHANGELOG FAQ FORMATS INSTALL README
- insinto /usr/share/doc/${PF}
- doins Manuals/*
-
- dodir /usr/share/doc/${PF}/examples
- insinto /usr/share/doc/${PF}/examples
- doins Examples/*
-}