summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Fabbro <bicatali@gentoo.org>2012-03-12 16:57:34 +0000
committerSebastien Fabbro <bicatali@gentoo.org>2012-03-12 16:57:34 +0000
commit1403dfb855d2d5a6041433e4441af52040ab4e96 (patch)
tree01e04bcff1ec17ca7d070423a658ca3db9b81045 /sci-libs
parentVersion bumped. Fixed directory owners and permissions, bug #406605. (diff)
downloadgentoo-2-1403dfb855d2d5a6041433e4441af52040ab4e96.tar.gz
gentoo-2-1403dfb855d2d5a6041433e4441af52040ab4e96.tar.bz2
gentoo-2-1403dfb855d2d5a6041433e4441af52040ab4e96.zip
Remove obsolete
(Portage version: 2.1.10.44/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs')
-rw-r--r--sci-libs/metis/ChangeLog8
-rw-r--r--sci-libs/metis/metis-5.0_pre2-r1.ebuild56
2 files changed, 6 insertions, 58 deletions
diff --git a/sci-libs/metis/ChangeLog b/sci-libs/metis/ChangeLog
index 2e31bfff5a5f..ce233bf2e6fa 100644
--- a/sci-libs/metis/ChangeLog
+++ b/sci-libs/metis/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sci-libs/metis
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/metis/ChangeLog,v 1.25 2011/08/09 21:29:39 bicatali Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/metis/ChangeLog,v 1.26 2012/03/12 16:57:34 bicatali Exp $
+
+ 12 Mar 2012; Sébastien Fabbro <bicatali@gentoo.org>
+ -metis-5.0_pre2-r1.ebuild:
+ Remove obsolete
09 Aug 2011; Sébastien Fabbro <bicatali@gentoo.org> metis-4.0.1-r1.ebuild,
metis-4.0.3.ebuild, metis-5.0_pre2-r1.ebuild:
diff --git a/sci-libs/metis/metis-5.0_pre2-r1.ebuild b/sci-libs/metis/metis-5.0_pre2-r1.ebuild
deleted file mode 100644
index cede29ad9690..000000000000
--- a/sci-libs/metis/metis-5.0_pre2-r1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/metis/metis-5.0_pre2-r1.ebuild,v 1.6 2011/08/09 21:29:39 bicatali Exp $
-
-EAPI=4
-
-inherit autotools eutils fortran-2
-
-MY_PV=${PV/_/}
-
-DESCRIPTION="A package for unstructured serial graph partitioning"
-HOMEPAGE="http://www-users.cs.umn.edu/~karypis/metis/metis/index.html"
-SRC_URI="http://glaros.dtc.umn.edu/gkhome/fetch/sw/${PN}/OLD/${PN}-${MY_PV}.tar.gz"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x86-macos"
-LICENSE="free-noncomm"
-IUSE="int64 openmp pcre threads"
-
-DEPEND="
- virtual/fortran
- pcre? ( dev-libs/libpcre )"
-RDEPEND="${DEPEND}
- !sci-libs/parmetis"
-
-S="${WORKDIR}/metis-${MY_PV}"
-
-pkg_setup() {
- if use openmp; then
- tc-has-openmp || \
- die "Please select an OPENMP capable compiler"
- FORTRAN_NEED_OPENMP=1
- fi
- fortran-2_pkg_setup
-}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-autotools.patch
- if use int64; then
- sed -e 's/\(#define IDXTYPEWIDTH\).*32/\1 64/' \
- -i include/metis.h \
- || die "sed for int64 failed"
- fi
- if use threads; then
- sed -e 's/\(#define HAVE_THREADLOCALSTORAGE\).*0/\1 1/' \
- -i include/metis.h \
- || die "sed for threads failed"
- fi
- eautoreconf
-}
-
-src_configure() {
- econf \
- $(use_enable pcre) \
- $(use_enable openmp)
-}