summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2013-01-14 10:01:18 +0000
committerJustin Lecher <jlec@gentoo.org>2013-01-14 10:01:18 +0000
commit913f8b181d2bd53934bdaacf5e31f67b4a60747d (patch)
tree1aa32f6c5cc268f0f7e69fba62b9e1dee31a6f9f /sci-libs
parentKeyword ~arm, wrt bug #451528 (diff)
downloadgentoo-2-913f8b181d2bd53934bdaacf5e31f67b4a60747d.tar.gz
gentoo-2-913f8b181d2bd53934bdaacf5e31f67b4a60747d.tar.bz2
gentoo-2-913f8b181d2bd53934bdaacf5e31f67b4a60747d.zip
sci-libs/cln: Drop old, fixes #303189 & #444450
(Portage version: 2.2.0_alpha151/cvs/Linux x86_64, signed Manifest commit with key 70EB7916)
Diffstat (limited to 'sci-libs')
-rw-r--r--sci-libs/cln/ChangeLog6
-rw-r--r--sci-libs/cln/cln-1.3.1.ebuild62
-rw-r--r--sci-libs/cln/cln-1.3.2.ebuild50
-rw-r--r--sci-libs/cln/metadata.xml4
4 files changed, 7 insertions, 115 deletions
diff --git a/sci-libs/cln/ChangeLog b/sci-libs/cln/ChangeLog
index be2d86bb4193..08c497406c0e 100644
--- a/sci-libs/cln/ChangeLog
+++ b/sci-libs/cln/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sci-libs/cln
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cln/ChangeLog,v 1.62 2013/01/01 08:25:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cln/ChangeLog,v 1.63 2013/01/14 10:01:18 jlec Exp $
+
+ 14 Jan 2013; Justin Lecher <jlec@gentoo.org> -cln-1.3.1.ebuild,
+ -cln-1.3.2.ebuild, metadata.xml:
+ Drop old, fixes #303189 & #444450
01 Jan 2013; Agostino Sarubbo <ago@gentoo.org> cln-1.3.2-r1.ebuild:
Stable for arm, wrt bug #446100
diff --git a/sci-libs/cln/cln-1.3.1.ebuild b/sci-libs/cln/cln-1.3.1.ebuild
deleted file mode 100644
index 98081f677dd0..000000000000
--- a/sci-libs/cln/cln-1.3.1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cln/cln-1.3.1.ebuild,v 1.12 2012/10/10 13:29:45 jlec Exp $
-
-EAPI=2
-
-inherit eutils flag-o-matic multilib
-
-DESCRIPTION="Class library (C++) for numbers"
-HOMEPAGE="http://www.ginac.de/CLN/"
-SRC_URI="ftp://ftpthep.physik.uni-mainz.de/pub/gnu/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="1"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
-IUSE="doc examples"
-
-DEPEND="dev-libs/gmp
- doc? ( virtual/latex-base )"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
- use sparc && append-cppflags "-DNO_ASM"
- use hppa && append-cppflags "-DNO_ASM"
- use arm && append-cppflags "-DNO_ASM"
-}
-
-src_prepare() {
- # avoid building examples
- # do it in Makefile.in to avoid time consuming eautoreconf
- sed -i -e '/^SUBDIRS.*=/s/examples doc benchmarks/doc/' Makefile.in || die
- # fix compilation under gcc 4.4
- epatch "${FILESDIR}"/${PN}-1.2.2-gcc-4.4.patch
-}
-
-src_configure () {
- use prefix || EPREFIX=
-
- econf \
- --libdir="${EPREFIX}"/usr/$(get_libdir) \
- --datadir="${EPREFIX}"/usr/share/doc/${PF}
-}
-src_compile() {
- emake || die "emake failed"
- if use doc; then
- emake html pdf || die "emake doc failed"
- fi
-}
-
-src_install () {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc README ChangeLog TODO* NEWS
- if use doc; then
- insinto /usr/share/doc/${PF}
- doins doc/cln.pdf || die
- dohtml doc/* || die
- fi
- if use examples; then
- insinto /usr/share/doc/${PF}/examples
- doins examples/*.cc || die
- fi
-}
diff --git a/sci-libs/cln/cln-1.3.2.ebuild b/sci-libs/cln/cln-1.3.2.ebuild
deleted file mode 100644
index 9357cf15b00c..000000000000
--- a/sci-libs/cln/cln-1.3.2.ebuild
+++ /dev/null
@@ -1,50 +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/cln/cln-1.3.2.ebuild,v 1.1 2011/06/13 21:39:56 bicatali Exp $
-
-EAPI=4
-inherit eutils flag-o-matic
-
-DESCRIPTION="Class library (C++) for numbers"
-HOMEPAGE="http://www.ginac.de/CLN/"
-SRC_URI="ftp://ftpthep.physik.uni-mainz.de/pub/gnu/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="1"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
-IUSE="doc examples static-libs"
-
-DEPEND="dev-libs/gmp
- doc? ( virtual/latex-base )"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
- use sparc && append-cppflags "-DNO_ASM"
- use hppa && append-cppflags "-DNO_ASM"
- use arm && append-cppflags "-DNO_ASM"
-}
-
-src_prepare() {
- # avoid building examples
- # do it in Makefile.in to avoid time consuming eautoreconf
- sed -i -e '/^SUBDIRS.*=/s/examples doc benchmarks/doc/' Makefile.in || die
-}
-
-src_configure () {
- econf \
- --datadir="${EPREFIX}"/usr/share/doc/${PF} \
- $(use_enable static-libs static)
-}
-src_compile() {
- emake
- use doc && emake html pdf
-}
-
-src_install () {
- default
- use doc && dodoc doc/cln.pdf && dohtml doc/*
- if use examples; then
- insinto /usr/share/doc/${PF}/examples
- doins examples/*.cc
- fi
-}
diff --git a/sci-libs/cln/metadata.xml b/sci-libs/cln/metadata.xml
index ffaaa7776575..91b9559a615a 100644
--- a/sci-libs/cln/metadata.xml
+++ b/sci-libs/cln/metadata.xml
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <herd>sci-mathematics</herd>
- <longdescription lang="en">
+ <herd>sci-mathematics</herd>
+ <longdescription lang="en">
A Class Library for Numbers is a library for computations with all
kinds of numbers in arbitrary precision. It has a set of number
classes, including integers (with unlimited precision), reals with