diff options
author | Markus Dittrich <markusle@gentoo.org> | 2007-12-18 11:29:32 +0000 |
---|---|---|
committer | Markus Dittrich <markusle@gentoo.org> | 2007-12-18 11:29:32 +0000 |
commit | b4b6f2786af5b09f22d9dea9ae9c05570b84ac01 (patch) | |
tree | 54667472b46a12bb80196f68d04ae8a96e45fcf3 /sci-libs/itpp | |
parent | Stable on amd64, bug #195512. (diff) | |
download | gentoo-2-b4b6f2786af5b09f22d9dea9ae9c05570b84ac01.tar.gz gentoo-2-b4b6f2786af5b09f22d9dea9ae9c05570b84ac01.tar.bz2 gentoo-2-b4b6f2786af5b09f22d9dea9ae9c05570b84ac01.zip |
Added missing myconf to econf and fixed installation path of html docs (fixes bug #202574 and #202578).
(Portage version: 2.1.4_rc10)
Diffstat (limited to 'sci-libs/itpp')
-rw-r--r-- | sci-libs/itpp/ChangeLog | 7 | ||||
-rw-r--r-- | sci-libs/itpp/itpp-4.0.1.ebuild | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/sci-libs/itpp/ChangeLog b/sci-libs/itpp/ChangeLog index 9d73229a62f0..ed880ab0d43a 100644 --- a/sci-libs/itpp/ChangeLog +++ b/sci-libs/itpp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-libs/itpp # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/ChangeLog,v 1.57 2007/12/18 03:11:07 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/ChangeLog,v 1.58 2007/12/18 11:29:32 markusle Exp $ + + 18 Dec 2007; Markus Dittrich <markusle@gentoo.org> itpp-4.0.1.ebuild: + Added missing myconf to econf and fixed installation path of html docs + (fixes bug #202574 and #202578). Thanks much to Adam Piątyszek + <ediap@et.put.poznan.pl> for pointing this out. *itpp-4.0.1 (18 Dec 2007) diff --git a/sci-libs/itpp/itpp-4.0.1.ebuild b/sci-libs/itpp/itpp-4.0.1.ebuild index 573fceea3c9e..536f995d2180 100644 --- a/sci-libs/itpp/itpp-4.0.1.ebuild +++ b/sci-libs/itpp/itpp-4.0.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/itpp-4.0.1.ebuild,v 1.1 2007/12/18 03:11:07 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/itpp-4.0.1.ebuild,v 1.2 2007/12/18 11:29:32 markusle Exp $ inherit fortran flag-o-matic @@ -48,6 +48,7 @@ src_compile() { fftw_conf="--with-fft=-lfftw3" fi + local myconf="--docdir=/usr/share/doc/${P}" if use minimal; then myconf="${myconf} --disable-comm --disable-fixed --disable-optim --disable-protocol --disable-signal --disable-srccode" fi @@ -57,6 +58,7 @@ src_compile() { "${blas_conf}" \ "${lapack_conf}" \ "${fftw_conf}" \ + ${myconf} \ || die "econf failed" emake || die "emake failed" } |