aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjokey <jokey@32389bae-6d03-0410-99cf-db05cde120eb>2007-10-07 05:29:17 +0000
committerjokey <jokey@32389bae-6d03-0410-99cf-db05cde120eb>2007-10-07 05:29:17 +0000
commitf0231c57a7d9d1746c0ded96d7d6d9927bc009a9 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /sci-physics/meep/meep-0.10.ebuild
parentdeleted ifc and icc, now in main tree (diff)
downloadsci-f0231c57a7d9d1746c0ded96d7d6d9927bc009a9.tar.gz
sci-f0231c57a7d9d1746c0ded96d7d6d9927bc009a9.tar.bz2
sci-f0231c57a7d9d1746c0ded96d7d6d9927bc009a9.zip
move stuff to root
git-svn-id: http://overlays.gentoo.org/svn/proj/science/overlay@753 32389bae-6d03-0410-99cf-db05cde120eb
Diffstat (limited to 'sci-physics/meep/meep-0.10.ebuild')
-rw-r--r--sci-physics/meep/meep-0.10.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/sci-physics/meep/meep-0.10.ebuild b/sci-physics/meep/meep-0.10.ebuild
deleted file mode 100644
index d3debfd33..000000000
--- a/sci-physics/meep/meep-0.10.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-inherit eutils autotools
-
-DESCRIPTION="Simulation software to model electromagnetic systems."
-HOMEPAGE="http://ab-initio.mit.edu/meep/"
-SRC_URI="http://ab-initio.mit.edu/meep/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="mpi hdf5 guile doc examples"
-
-DEPEND="sci-libs/fftw
- sci-libs/gsl
- sci-physics/harminv
- guile? ( >=sci-libs/libctl-3.0 )
- hdf5? ( sci-libs/hdf5 )
- mpi? ( virtual/mpi )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-configure.ac.patch
- AT_M4DIR="m4" eautoreconf
-}
-
-src_compile() {
- econf \
- $(use_with mpi) \
- $(use_with hdf5) \
- $(use_with guile libctl) \
- || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- emake install DESTDIR="${D}" || die "emake install failed"
- dodoc AUTHORS COPYRIGHT NEWS README TODO || die "dodoc failed"
- insinto /usr/share/doc/${PF}
- use doc && { doins doc/meep.pdf || die "install doc failed"; }
- use examples && { doins -r examples || die "install examples failed"; }
-}