diff options
author | Gerhard Bräunlich <wippbox@gmx.net> | 2017-01-14 18:03:12 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-01-15 11:12:53 +0100 |
commit | a49b55a470c6c62f2adab536ab8c8ffda361c3b3 (patch) | |
tree | b5361060c7873829cec7ca9b4850d746617ca29d /sci-visualization | |
parent | sci-visualization/xd3d: EAPI bump 4 -> 6 (diff) | |
download | gentoo-a49b55a470c6c62f2adab536ab8c8ffda361c3b3.tar.gz gentoo-a49b55a470c6c62f2adab536ab8c8ffda361c3b3.tar.bz2 gentoo-a49b55a470c6c62f2adab536ab8c8ffda361c3b3.zip |
sci-visualization/xd3d: Removing EAPI 4 ebuild
Package-Manager: portage-2.3.0
Closes: https://github.com/gentoo/gentoo/pull/3477
Diffstat (limited to 'sci-visualization')
-rw-r--r-- | sci-visualization/xd3d/xd3d-8.3.1.ebuild | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/sci-visualization/xd3d/xd3d-8.3.1.ebuild b/sci-visualization/xd3d/xd3d-8.3.1.ebuild deleted file mode 100644 index 124c85430504..000000000000 --- a/sci-visualization/xd3d/xd3d-8.3.1.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 - -inherit eutils fortran-2 multilib toolchain-funcs - -DESCRIPTION="Scientific visualization tool" -HOMEPAGE="http://www.cmap.polytechnique.fr/~jouve/xd3d/" -SRC_URI="mirror://gentoo/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux" -IUSE="examples" - -RDEPEND=" - x11-libs/libXpm" -DEPEND="${RDEPEND} - app-shells/tcsh" - -src_prepare() { - epatch \ - "${FILESDIR}"/${P}-gentoo.diff \ - "${FILESDIR}"/${P}-parallel.patch \ - "${FILESDIR}"/${P}-rotated.patch \ - "${FILESDIR}"/${P}-cflags.patch - sed \ - -e 's:"zutil.h":<zlib.h>:g' \ - -i src/qlib/timestuff.c || die -} - -src_configure() { - tc-export CC - sed \ - -e "s:##D##:${ED}:" \ - -e "s:##lib##:$(get_libdir):" \ - -i RULES.gentoo \ - || die "failed to set up RULES.gentoo" - ./configure -arch=gentoo || die "configure failed." -} - -src_install() { - dodir /usr/bin - emake install - - dodoc BUGS CHANGELOG FAQ FORMATS README - insinto /usr/share/doc/${PF} - doins Manuals/* - - if use examples; then - insinto /usr/share/doc/${PF}/ - doins -r Examples - fi -} |