summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Fabbro <bicatali@gentoo.org>2008-03-28 14:44:13 +0000
committerSebastien Fabbro <bicatali@gentoo.org>2008-03-28 14:44:13 +0000
commitae2dda5d484617723895afb7b14ff55e4d82bfcb (patch)
tree4b0481c5834105439d7583fc0abaac8b71f19002 /sci-libs
parentUse openrc. (diff)
downloadgentoo-2-ae2dda5d484617723895afb7b14ff55e4d82bfcb.tar.gz
gentoo-2-ae2dda5d484617723895afb7b14ff55e4d82bfcb.tar.bz2
gentoo-2-ae2dda5d484617723895afb7b14ff55e4d82bfcb.zip
Version bump
(Portage version: 2.1.4.4)
Diffstat (limited to 'sci-libs')
-rw-r--r--sci-libs/cln/ChangeLog8
-rw-r--r--sci-libs/cln/cln-1.1.10.ebuild55
-rw-r--r--sci-libs/cln/cln-1.1.11.ebuild55
-rw-r--r--sci-libs/cln/cln-1.2.1.ebuild34
4 files changed, 41 insertions, 111 deletions
diff --git a/sci-libs/cln/ChangeLog b/sci-libs/cln/ChangeLog
index 7b37e4f80115..e75046a6a0e2 100644
--- a/sci-libs/cln/ChangeLog
+++ b/sci-libs/cln/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sci-libs/cln
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cln/ChangeLog,v 1.22 2008/02/01 20:08:30 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cln/ChangeLog,v 1.23 2008/03/28 14:44:13 bicatali Exp $
+
+*cln-1.2.1 (28 Mar 2008)
+
+ 28 Mar 2008; Sébastien Fabbro <bicatali@gentoo.org> -cln-1.1.10.ebuild,
+ -cln-1.1.11.ebuild, +cln-1.2.1.ebuild:
+ Version bump
*cln-1.2.0 (01 Feb 2008)
diff --git a/sci-libs/cln/cln-1.1.10.ebuild b/sci-libs/cln/cln-1.1.10.ebuild
deleted file mode 100644
index f8837cf52aec..000000000000
--- a/sci-libs/cln/cln-1.1.10.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cln/cln-1.1.10.ebuild,v 1.7 2006/09/30 23:55:56 wormo Exp $
-
-inherit flag-o-matic toolchain-funcs multilib
-
-DESCRIPTION="CLN, a class library (C++) for numbers"
-
-HOMEPAGE="http://www.ginac.de/CLN/"
-
-LICENSE="GPL-2"
-SLOT="1"
-KEYWORDS="amd64 ppc ~sparc x86"
-IUSE=""
-
-SRC_URI="ftp://ftpthep.physik.uni-mainz.de/pub/gnu/${P}.tar.bz2
- ftp://ftp.santafe.edu/pub/gnu/${P}.tar.bz2
- ftp://ftp.ilog.fr/pub/Users/haible/gnu/${P}.tar.bz2"
-DEPEND="dev-libs/gmp"
-
-src_compile() {
- # at least with gcc 2.95 and 3.1, cln won't like -O3 flag...
- replace-flags -O[3..9] -O2
- # It also doesn't seem to get on with -Os, bug 112741.
- replace-flags -Os -O2
-
- # Fragile build, -ftracer causes compilation issues, bug 121773.
- filter-flags -ftracer
-
- # and with gcc 2.95.3, it doesn't like funroll-loops as well...
- if [ "$( gcc-fullversion )" == "2.95.3" ]; then
- filter-flags -funroll-loops
- filter-flags -frerun-loop-opt
- fi
-
- # Trouble: see bug #70779
- if [ "$( gcc-fullversion )" == "3.3.4" ]; then
- filter-flags -finline-functions
- fi
-
- ./configure \
- --build=${CHOST} \
- --prefix=/usr \
- --libdir=/usr/$(get_libdir) \
- --infodir=/usr/share/info \
- --datadir=/usr/share/doc/${P} \
- --mandir=/usr/share/man || die "./configure failed"
-
- #it doesn't also like parallel make :)
- make || die
-}
-
-src_install () {
- make DESTDIR=${D} install || die
-}
diff --git a/sci-libs/cln/cln-1.1.11.ebuild b/sci-libs/cln/cln-1.1.11.ebuild
deleted file mode 100644
index f822e9ed6bc4..000000000000
--- a/sci-libs/cln/cln-1.1.11.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/cln/cln-1.1.11.ebuild,v 1.1 2006/04/15 14:57:58 cryos Exp $
-
-inherit flag-o-matic toolchain-funcs multilib
-
-DESCRIPTION="CLN, a class library (C++) for numbers"
-
-HOMEPAGE="http://www.ginac.de/CLN/"
-
-LICENSE="GPL-2"
-SLOT="1"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE=""
-
-SRC_URI="ftp://ftpthep.physik.uni-mainz.de/pub/gnu/${P}.tar.bz2
- ftp://ftp.santafe.edu/pub/gnu/${P}.tar.bz2
- ftp://ftp.ilog.fr/pub/Users/haible/gnu/${P}.tar.bz2"
-DEPEND="dev-libs/gmp"
-
-src_compile() {
- # at least with gcc 2.95 and 3.1, cln won't like -O3 flag...
- replace-flags -O[3..9] -O2
- # It also doesn't seem to get on with -Os, bug 112741.
- replace-flags -Os -O2
-
- # Fragile build, -ftracer causes compilation issues, bug 121773.
- filter-flags -ftracer
-
- # and with gcc 2.95.3, it doesn't like funroll-loops as well...
- if [ "$( gcc-fullversion )" == "2.95.3" ]; then
- filter-flags -funroll-loops
- filter-flags -frerun-loop-opt
- fi
-
- # Trouble: see bug #70779
- if [ "$( gcc-fullversion )" == "3.3.4" ]; then
- filter-flags -finline-functions
- fi
-
- ./configure \
- --build=${CHOST} \
- --prefix=/usr \
- --libdir=/usr/$(get_libdir) \
- --infodir=/usr/share/info \
- --datadir=/usr/share/doc/${P} \
- --mandir=/usr/share/man || die "./configure failed"
-
- #it doesn't also like parallel make :)
- make || die
-}
-
-src_install () {
- make DESTDIR=${D} install || die
-}
diff --git a/sci-libs/cln/cln-1.2.1.ebuild b/sci-libs/cln/cln-1.2.1.ebuild
new file mode 100644
index 000000000000..204a31018cb5
--- /dev/null
+++ b/sci-libs/cln/cln-1.2.1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/cln/cln-1.2.1.ebuild,v 1.1 2008/03/28 14:44:13 bicatali Exp $
+
+inherit flag-o-matic toolchain-funcs multilib
+
+DESCRIPTION="CLN, a class library (C++) for numbers"
+
+HOMEPAGE="http://www.ginac.de/CLN/"
+
+LICENSE="GPL-2"
+SLOT="1"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+SRC_URI="ftp://ftpthep.physik.uni-mainz.de/pub/gnu/${P}.tar.bz2
+ ftp://ftp.santafe.edu/pub/gnu/${P}.tar.bz2
+ ftp://ftp.ilog.fr/pub/Users/haible/gnu/${P}.tar.bz2"
+DEPEND="dev-libs/gmp"
+
+src_compile () {
+ # -Os causes segmentation faults (see bug #174576)
+ # checked for 1.2.1, gcc-4.2.3
+ replace-flags -Os -O2
+
+ econf \
+ --libdir=/usr/$(get_libdir) \
+ --datadir=/usr/share/doc/${PF} || die "econf failed."
+ emake || die "emake failed."
+}
+
+src_install () {
+ emake DESTDIR="${D}" install || die "emake install failed"
+}