summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Fabbro <bicatali@gentoo.org>2009-10-30 16:04:37 +0000
committerSebastien Fabbro <bicatali@gentoo.org>2009-10-30 16:04:37 +0000
commite459c172d6ba28a66d9832aa1a05b073093a5901 (patch)
treec231c58b614144744e815c3f553597326d4f2c05 /sci-mathematics/ginac
parentRe-added BOOST_LIBS to support older boost versions, should close #289283 (diff)
downloadgentoo-2-e459c172d6ba28a66d9832aa1a05b073093a5901.tar.gz
gentoo-2-e459c172d6ba28a66d9832aa1a05b073093a5901.tar.bz2
gentoo-2-e459c172d6ba28a66d9832aa1a05b073093a5901.zip
Removed old (#240654)
(Portage version: 2.2_rc46/cvs/Linux x86_64)
Diffstat (limited to 'sci-mathematics/ginac')
-rw-r--r--sci-mathematics/ginac/ChangeLog6
-rw-r--r--sci-mathematics/ginac/ginac-1.3.7.ebuild21
-rw-r--r--sci-mathematics/ginac/ginac-1.4.3.ebuild56
3 files changed, 5 insertions, 78 deletions
diff --git a/sci-mathematics/ginac/ChangeLog b/sci-mathematics/ginac/ChangeLog
index f3d8b697e2e4..c6be93b45d53 100644
--- a/sci-mathematics/ginac/ChangeLog
+++ b/sci-mathematics/ginac/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sci-mathematics/ginac
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ChangeLog,v 1.33 2009/10/29 15:10:43 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ChangeLog,v 1.34 2009/10/30 16:04:37 bicatali Exp $
+
+ 30 Oct 2009; Sébastien Fabbro <bicatali@gentoo.org> -ginac-1.3.7.ebuild,
+ -ginac-1.4.3.ebuild:
+ Removed old (#240654)
29 Oct 2009; Markus Meier <maekke@gentoo.org> ginac-1.5.3.ebuild:
amd64/x86 stable, bug #289106
diff --git a/sci-mathematics/ginac/ginac-1.3.7.ebuild b/sci-mathematics/ginac/ginac-1.3.7.ebuild
deleted file mode 100644
index 8a38dc8b4ce3..000000000000
--- a/sci-mathematics/ginac/ginac-1.3.7.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ginac-1.3.7.ebuild,v 1.5 2008/04/01 14:45:11 markusle Exp $
-
-inherit eutils
-
-DESCRIPTION="GiNaC : a free CAS (computer algebra system)"
-SRC_URI="ftp://ftpthep.physik.uni-mainz.de/pub/GiNaC/${P}.tar.bz2"
-HOMEPAGE="http://www.ginac.de/"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ~sparc x86"
-IUSE=""
-
-DEPEND="sci-libs/cln"
-
-src_install() {
- dodoc README NEWS
- make DESTDIR="${D}" install || die "Install failed."
-}
diff --git a/sci-mathematics/ginac/ginac-1.4.3.ebuild b/sci-mathematics/ginac/ginac-1.4.3.ebuild
deleted file mode 100644
index 2fcdd18ff8c8..000000000000
--- a/sci-mathematics/ginac/ginac-1.4.3.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ginac-1.4.3.ebuild,v 1.8 2009/05/30 09:14:11 ulm Exp $
-
-inherit eutils flag-o-matic toolchain-funcs
-
-DESCRIPTION="C++ library and tools for symbolic calculations"
-SRC_URI="ftp://ftpthep.physik.uni-mainz.de/pub/GiNaC/${P}.tar.bz2"
-HOMEPAGE="http://www.ginac.de/"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc sparc x86"
-IUSE="doc"
-
-RDEPEND="sci-libs/cln"
-DEPEND="${RDEPEND}
- dev-util/pkgconfig
- doc? ( app-doc/doxygen
- media-gfx/transfig
- || ( dev-texlive/texlive-fontsrecommended
- app-text/ptex ) )"
-
-src_compile() {
- [[ $(tc-getCXX) == *g++ ]] && \
- [[ $(gcc-major-version)$(gcc-minor-version) -lt 42 ]] && \
- replace-flags -O? -O1
- econf
- emake || die "emake failed"
- if use doc; then
- # need to run twice to get the references right (you know, latex)
- # do not add die function at the first one
- make pdf
- emake pdf || die "emake pdf failed"
- cd doc/reference
- emake html || die "emake html failed"
- fi
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc README NEWS AUTHORS || die
-
- if use doc; then
- cd doc
- insinto /usr/share/doc/${PF}
- doins \
- examples/ginac-examples.pdf \
- reference/reference.pdf \
- tutorial/ginac.pdf \
- || die "pdf doc install failed"
- dohtml -r reference/html_files/*
- insinto /usr/share/doc/${PF}/examples
- doins examples/*.cpp examples/ginac-examples.txt
- fi
-}