summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2017-01-02 22:02:39 +0000
committerJustin Lecher <jlec@gentoo.org>2017-01-02 22:09:08 +0000
commitacdf6c90b1f9b44256199ef0de5306a7bd844936 (patch)
treea81114d3aa4173aafbb2009d59a53e26e6e6c077 /sci-mathematics/xmds/xmds-1.6.5.ebuild
parentsci-libs/nlopt: Drop old (diff)
downloadgentoo-acdf6c90b1f9b44256199ef0de5306a7bd844936.tar.gz
gentoo-acdf6c90b1f9b44256199ef0de5306a7bd844936.tar.bz2
gentoo-acdf6c90b1f9b44256199ef0de5306a7bd844936.zip
sci-mathematics/xmds: Drop old
Package-Manager: Portage-2.3.3, Repoman-2.3.1 Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'sci-mathematics/xmds/xmds-1.6.5.ebuild')
-rw-r--r--sci-mathematics/xmds/xmds-1.6.5.ebuild58
1 files changed, 0 insertions, 58 deletions
diff --git a/sci-mathematics/xmds/xmds-1.6.5.ebuild b/sci-mathematics/xmds/xmds-1.6.5.ebuild
deleted file mode 100644
index 4ddb29d68b82..000000000000
--- a/sci-mathematics/xmds/xmds-1.6.5.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit eutils
-
-doc_ver=20080226
-
-DESCRIPTION="XMDS - The eXtensible Multi-Dimensional Simulator"
-HOMEPAGE="http://www.xmds.org"
-SRC_URI="mirror://sourceforge/xmds/${P}.tar.gz
- doc? ( mirror://sourceforge/xmds/xmds_doc_${doc_ver}.pdf )"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc examples mpi threads"
-
-DEPEND="sci-libs/fftw
- mpi? ( virtual/mpi )"
-
-src_unpack() {
- unpack ${P}.tar.gz
- cd "${S}"
-
- epatch "${FILESDIR}"/${PN}-1.6.5-gcc43.patch
- touch "${S}/source/version.h"
-
- # Fix broken installation of sample scripts.
- sed -i -e 's/install-data-am: install-dist_doc_examplesDATA install-man/install-data-am: install-man/' Makefile.in
-}
-
-src_compile() {
- local my_opts=""
-
- if has_version "=sci-libs/fftw-3*" ; then
- my_opts="${my_opts} --enable-fftw3"
- fi
-
- econf \
- $(use_enable mpi) \
- $(use_enable threads) \
- ${my_opts} || die
- emake || die
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
-
- if use doc; then
- insinto /usr/share/doc/${PF}
- doins "${DISTDIR}/xmds_doc_${doc_ver}.pdf"
- fi
-
- if use examples; then
- insinto /usr/share/doc/${PF}/examples
- doins examples/*
- fi
-}