summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Fabbro <bicatali@gentoo.org>2008-10-10 11:16:04 +0000
committerSebastien Fabbro <bicatali@gentoo.org>2008-10-10 11:16:04 +0000
commitfb33a62be5c1a59825a08f7fe2d8c8a8cea2b8f4 (patch)
treedf468b001db7dd5b29feccad274c8cfe1df561e3 /sci-physics/meep
parentRestrict stripping -- binary only package. (diff)
downloadgentoo-2-fb33a62be5c1a59825a08f7fe2d8c8a8cea2b8f4.tar.gz
gentoo-2-fb33a62be5c1a59825a08f7fe2d8c8a8cea2b8f4.tar.bz2
gentoo-2-fb33a62be5c1a59825a08f7fe2d8c8a8cea2b8f4.zip
Removed old version an and closing bug #229693
(Portage version: 2.2_rc11/cvs/Linux 2.6.25-gentoo-r7 x86_64)
Diffstat (limited to 'sci-physics/meep')
-rw-r--r--sci-physics/meep/ChangeLog6
-rw-r--r--sci-physics/meep/files/meep-0.10.1-configure.ac.patch11
-rw-r--r--sci-physics/meep/meep-0.10.1.ebuild70
3 files changed, 5 insertions, 82 deletions
diff --git a/sci-physics/meep/ChangeLog b/sci-physics/meep/ChangeLog
index 79c266810ada..125c7f000946 100644
--- a/sci-physics/meep/ChangeLog
+++ b/sci-physics/meep/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sci-physics/meep
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/meep/ChangeLog,v 1.5 2008/09/02 22:49:08 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-physics/meep/ChangeLog,v 1.6 2008/10/10 11:16:04 bicatali Exp $
+
+ 10 Oct 2008; Sébastien Fabbro <bicatali@gentoo.org>
+ -files/meep-0.10.1-configure.ac.patch, -meep-0.10.1.ebuild:
+ Removed old version an and closing bug #229693
*meep-0.20.3 (02 Sep 2008)
diff --git a/sci-physics/meep/files/meep-0.10.1-configure.ac.patch b/sci-physics/meep/files/meep-0.10.1-configure.ac.patch
deleted file mode 100644
index 2097b209309c..000000000000
--- a/sci-physics/meep/files/meep-0.10.1-configure.ac.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- configure.ac.orig 2007-09-27 09:44:17.206142973 +0100
-+++ configure.ac 2007-09-27 09:45:17.825597479 +0100
-@@ -11,7 +11,7 @@
- AM_CONFIG_HEADER(config.h)
- AM_MAINTAINER_MODE
- AC_SUBST(SHARED_VERSION_INFO)
--AM_ENABLE_SHARED(no) dnl shared libs cause too many headaches to be default
-+#AM_ENABLE_SHARED(no) dnl shared libs cause too many headaches to be default
-
- MEEP_SUFFIX=""
-
diff --git a/sci-physics/meep/meep-0.10.1.ebuild b/sci-physics/meep/meep-0.10.1.ebuild
deleted file mode 100644
index 8263d4b5d1ff..000000000000
--- a/sci-physics/meep/meep-0.10.1.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-physics/meep/meep-0.10.1.ebuild,v 1.6 2008/08/03 19:59:27 mr_bones_ Exp $
-
-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="bindist examples hdf5 guile mpi"
-
-DEPEND="sci-libs/fftw
- !bindist? ( sci-libs/gsl )
- bindist? ( <sci-libs/gsl-1.10 )
- sci-physics/harminv
- sci-libs/blas-atlas
- virtual/lapack
- guile? ( >=sci-libs/libctl-3.0 )
- hdf5? ( sci-libs/hdf5 )
- mpi? ( virtual/mpi )"
-
-pkg_setup() {
- SELECTED_BLAS=$(eselect blas show | cut -d' ' -f2)
- if [[ ${SELECTED_BLAS} == "reference" ]]; then
- ewarn "You have selected blas-reference which may yield a"
- ewarn "broken meep and cause test failures (see bug #229693)"
- ewarn "We highly recommend that you use blas-atlas"
- ewarn "when compiling and using meep."
- epause 5
- fi
-}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-configure.ac.patch
- epatch "${FILESDIR}"/${P}-gcc4.3.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 NEWS README TODO || die "dodoc failed"
- insinto /usr/share/doc/${PF}
- if use examples; then
- doins -r examples || die "install examples failed"
- fi
-}
-
-pkg_postinst() {
- # warn the user that meep + blas-reference may cause problems
- echo
- elog "Please note that meep may produce bad results when"
- elog "used in conjunction with blas-reference. We recommend"
- elog "that you use blas-atlas instead."
- echo
-}