diff options
author | Matt Turner <mattst88@gentoo.org> | 2019-09-01 12:02:18 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2019-09-01 12:06:49 -0700 |
commit | 22ad292fbdac49fba112703d6dc413edb2625728 (patch) | |
tree | 6243a929345b834ba0cf3de31facd85fe46ce3fb /sci-physics | |
parent | x11-libs/guile-gtk: Remove (diff) | |
download | gentoo-22ad292fbdac49fba112703d6dc413edb2625728.tar.gz gentoo-22ad292fbdac49fba112703d6dc413edb2625728.tar.bz2 gentoo-22ad292fbdac49fba112703d6dc413edb2625728.zip |
sci-physics/meep: Remove
Closes: https://bugs.gentoo.org/629058
Closes: https://bugs.gentoo.org/685540
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'sci-physics')
-rw-r--r-- | sci-physics/meep/Manifest | 1 | ||||
-rw-r--r-- | sci-physics/meep/files/meep-1.2-no-auto-mpb.patch | 16 | ||||
-rw-r--r-- | sci-physics/meep/files/meep-1.2-pc-no-ldflags.patch | 12 | ||||
-rw-r--r-- | sci-physics/meep/meep-1.3.ebuild | 58 | ||||
-rw-r--r-- | sci-physics/meep/metadata.xml | 14 |
5 files changed, 0 insertions, 101 deletions
diff --git a/sci-physics/meep/Manifest b/sci-physics/meep/Manifest deleted file mode 100644 index 835ae9e71ec0..000000000000 --- a/sci-physics/meep/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST meep-1.3.tar.gz 740890 BLAKE2B e94fe9709c42ff99f764e34e0db0aa7dc7a8dfa640f539d44e952bf9870686956a8cbf24d3ce0fae95f44c659b5a19075b6377ef2aa68fb51166f09a3e0f7a3b SHA512 4ad8d68f27d9971fe6dd4b8440f78d5b141fe747a80c50da55ecbc56a5beb0c2d31441fb46b54cac3c62d4cb34cb1ce6819c06bd2c54bc35f129ba683dc84aea diff --git a/sci-physics/meep/files/meep-1.2-no-auto-mpb.patch b/sci-physics/meep/files/meep-1.2-no-auto-mpb.patch deleted file mode 100644 index 8c287f208d65..000000000000 --- a/sci-physics/meep/files/meep-1.2-no-auto-mpb.patch +++ /dev/null @@ -1,16 +0,0 @@ -diff -Nur meep-1.2.orig/configure.ac meep-1.2/configure.ac ---- meep-1.2.orig/configure.ac 2012-08-14 21:52:13.000000000 +0100 -+++ meep-1.2/configure.ac 2012-08-14 22:00:55.000000000 +0100 -@@ -161,8 +161,10 @@ - - ########################################################################### - # MPB library -- --AC_CHECK_HEADER(mpb.h, [have_mpb=maybe], [have_mpb=no]) -+AC_ARG_WITH(mpb, [AC_HELP_STRING([--without-mpb],[do not build with mpb])], ok=$withval, ok=yes) -+if test "$ok" = "yes"; then -+ AC_CHECK_HEADER(mpb.h, [have_mpb=maybe], [have_mpb=no]) -+fi - - if test $have_mpb = maybe; then - if test "x$acx_lapack_ok" = x -a "$have_harminv" = xno; then diff --git a/sci-physics/meep/files/meep-1.2-pc-no-ldflags.patch b/sci-physics/meep/files/meep-1.2-pc-no-ldflags.patch deleted file mode 100644 index d7b2f72eaffc..000000000000 --- a/sci-physics/meep/files/meep-1.2-pc-no-ldflags.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Nur meep-1.2.orig/configure.ac meep-1.2/configure.ac ---- meep-1.2.orig/configure.ac 2012-08-14 21:52:13.000000000 +0100 -+++ meep-1.2/configure.ac 2012-08-14 21:54:49.000000000 +0100 -@@ -224,7 +224,7 @@ - ############################################################################## - # Libraries and flags (other than -lmeep) required to link Meep: - --MEEPLIBS="$LDFLAGS $LIBS" -+MEEPLIBS="$LIBS" - AC_SUBST(MEEPLIBS) - - ############################################################################## diff --git a/sci-physics/meep/meep-1.3.ebuild b/sci-physics/meep/meep-1.3.ebuild deleted file mode 100644 index 6cc3d1495390..000000000000 --- a/sci-physics/meep/meep-1.3.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit 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 ~amd64-linux ~x86-linux" -IUSE="examples hdf5 guile mpi" - -RDEPEND=" - sci-libs/fftw:3.0= - sci-libs/gsl:= - sci-physics/harminv - guile? ( >=sci-libs/libctl-3.2 ) - hdf5? ( sci-libs/hdf5:= ) - mpi? ( virtual/mpi )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${PN}-1.2-pc-no-ldflags.patch - "${FILESDIR}"/${PN}-1.2-no-auto-mpb.patch -) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - econf \ - $(use_with mpi) \ - $(use_with hdf5) \ - $(use_with guile libctl) -} - -src_test() { - # pml test buggy with optimization on - # http://thread.gmane.org/gmane.comp.science.electromagnetism.meep.general/4579 - emake -C tests pml CXXFLAGS="-O0" - emake check -} - -src_install() { - default - - if use examples; then - dodoc -r examples - docompress -x /usr/share/doc/${PF}/examples - fi -} diff --git a/sci-physics/meep/metadata.xml b/sci-physics/meep/metadata.xml deleted file mode 100644 index a6fba91cb5cc..000000000000 --- a/sci-physics/meep/metadata.xml +++ /dev/null @@ -1,14 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="project"> - <email>sci-physics@gentoo.org</email> - <name>Gentoo Physics Project</name> -</maintainer> -<longdescription lang="en"> - The MIT Electromagnetic Equation Propagation (MEEP) is a - finite-difference time-domain (FDTD) simulation software package - developed at MIT to model electromagnetic systems, along with the MPB - eigenmode package. -</longdescription> -</pkgmetadata> |