diff options
author | Markus Dittrich <markusle@gentoo.org> | 2008-04-01 14:45:12 +0000 |
---|---|---|
committer | Markus Dittrich <markusle@gentoo.org> | 2008-04-01 14:45:12 +0000 |
commit | 45697c615488d8f28331143e1d5d0cf516ecc95c (patch) | |
tree | 2220ce9f427b386dbf5e8e9203d453ff1a6b8153 /sci-mathematics/ginac/ginac-1.4.1.ebuild | |
parent | introduced 2.6.23+ compatibility as per bug #208059. Patches by Jouni Kosonen... (diff) | |
download | historical-45697c615488d8f28331143e1d5d0cf516ecc95c.tar.gz historical-45697c615488d8f28331143e1d5d0cf516ecc95c.tar.bz2 historical-45697c615488d8f28331143e1d5d0cf516ecc95c.zip |
Fixed compile issues with gcc-4.3 (see bug #215570).
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'sci-mathematics/ginac/ginac-1.4.1.ebuild')
-rw-r--r-- | sci-mathematics/ginac/ginac-1.4.1.ebuild | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sci-mathematics/ginac/ginac-1.4.1.ebuild b/sci-mathematics/ginac/ginac-1.4.1.ebuild index 576c99805ed4..4b3d2044c33b 100644 --- a/sci-mathematics/ginac/ginac-1.4.1.ebuild +++ b/sci-mathematics/ginac/ginac-1.4.1.ebuild @@ -1,6 +1,8 @@ # 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.4.1.ebuild,v 1.1 2008/01/11 09:54:10 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ginac-1.4.1.ebuild,v 1.2 2008/04/01 14:45:11 markusle Exp $ + +inherit eutils DESCRIPTION="C++ library and tools for symbolic calculations" SRC_URI="ftp://ftpthep.physik.uni-mainz.de/pub/GiNaC/${P}.tar.bz2" @@ -16,6 +18,12 @@ DEPEND="${RDEPEND} dev-util/pkgconfig doc? ( app-doc/doxygen media-gfx/transfig virtual/latex-base )" +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-gcc4.3.patch +} + src_compile() { econf \ --docdir=/usr/share/doc/${PF} \ |