summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Januszewski <spock@gentoo.org>2008-09-09 21:04:03 +0000
committerMichael Januszewski <spock@gentoo.org>2008-09-09 21:04:03 +0000
commit8ddab7a23bdd8b0d75420ec5c12efa1acaeaf865 (patch)
tree978b016522d3b6aa0f7c8d5f348b12433e437e35 /sci-mathematics
parentStable on sparc, bug #237009 (diff)
downloadgentoo-2-8ddab7a23bdd8b0d75420ec5c12efa1acaeaf865.tar.gz
gentoo-2-8ddab7a23bdd8b0d75420ec5c12efa1acaeaf865.tar.bz2
gentoo-2-8ddab7a23bdd8b0d75420ec5c12efa1acaeaf865.zip
Remove an old ebuild.
(Portage version: 2.2_rc8/cvs/Linux 2.6.27-rc5 x86_64)
Diffstat (limited to 'sci-mathematics')
-rw-r--r--sci-mathematics/xmds/ChangeLog5
-rw-r--r--sci-mathematics/xmds/xmds-1.6.4.ebuild49
2 files changed, 4 insertions, 50 deletions
diff --git a/sci-mathematics/xmds/ChangeLog b/sci-mathematics/xmds/ChangeLog
index 0088bfd16bed..b3772a6fceb8 100644
--- a/sci-mathematics/xmds/ChangeLog
+++ b/sci-mathematics/xmds/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sci-mathematics/xmds
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/xmds/ChangeLog,v 1.5 2008/09/08 20:36:20 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/xmds/ChangeLog,v 1.6 2008/09/09 21:04:03 spock Exp $
+
+ 09 Sep 2008; Michał Januszewski <spock@gentoo.org> -xmds-1.6.4.ebuild:
+ Remove an old ebuild.
08 Sep 2008; Markus Meier <maekke@gentoo.org> xmds-1.6.5.ebuild:
amd64/x86 stable, bug #237002
diff --git a/sci-mathematics/xmds/xmds-1.6.4.ebuild b/sci-mathematics/xmds/xmds-1.6.4.ebuild
deleted file mode 100644
index c08076cf1377..000000000000
--- a/sci-mathematics/xmds/xmds-1.6.4.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/xmds/xmds-1.6.4.ebuild,v 1.2 2008/01/21 03:24:51 mr_bones_ Exp $
-
-doc_ver=20080110
-
-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
-}
-
-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
-}