aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sci-libs/mpir/mpir-1.2.2.ebuild')
-rw-r--r--sci-libs/mpir/mpir-1.2.2.ebuild38
1 files changed, 0 insertions, 38 deletions
diff --git a/sci-libs/mpir/mpir-1.2.2.ebuild b/sci-libs/mpir/mpir-1.2.2.ebuild
deleted file mode 100644
index 9e1024480..000000000
--- a/sci-libs/mpir/mpir-1.2.2.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=2
-
-inherit eutils versionator autotools
-
-DESCRIPTION="MPIR is a library for arbitrary precision integer arithmetic derived from version 4.2.1 of gmp"
-HOMEPAGE="http://www.mpir.org/"
-SRC_URI="http://www.mpir.org/${PN}-$(replace_version_separator 3 -).tar.gz"
-RESTRICT="mirror"
-S="${WORKDIR}/${PN}-$(get_version_component_range 1-3)"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE="nocxx"
-
-DEPEND="dev-lang/yasm"
-RDEPEND=""
-
-src_prepare(){
- epatch "${FILESDIR}/${P}-yasm.patch"
- eautoreconf
-}
-
-src_configure() {
- unset ABI
-
- econf $(use_enable !nocxx cxx) \
- || die "configure failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc ChangeLog README NEWS
-}