diff options
author | Markus Dittrich <markusle@gentoo.org> | 2006-04-24 23:22:32 +0000 |
---|---|---|
committer | Markus Dittrich <markusle@gentoo.org> | 2006-04-24 23:22:32 +0000 |
commit | a56c467cacb595707e4ed5e0b9e772316b329cc0 (patch) | |
tree | b96576ba4824bf27883fec15b3af3a9f1697f9b0 /sci-mathematics | |
parent | another signing attempt (diff) | |
download | gentoo-2-a56c467cacb595707e4ed5e0b9e772316b329cc0.tar.gz gentoo-2-a56c467cacb595707e4ed5e0b9e772316b329cc0.tar.bz2 gentoo-2-a56c467cacb595707e4ed5e0b9e772316b329cc0.zip |
Replaced 'tetex' useflag by 'doc' since it only triggers the install of dvi files. This fixes bug #130984.
(Portage version: 2.1_pre9-r4)
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/octave/ChangeLog | 6 | ||||
-rw-r--r-- | sci-mathematics/octave/files/digest-octave-2.1.71-r2 | 2 | ||||
-rw-r--r-- | sci-mathematics/octave/octave-2.1.72.ebuild | 8 |
3 files changed, 11 insertions, 5 deletions
diff --git a/sci-mathematics/octave/ChangeLog b/sci-mathematics/octave/ChangeLog index 6b6e923412a9..f1f001467b6a 100644 --- a/sci-mathematics/octave/ChangeLog +++ b/sci-mathematics/octave/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-mathematics/octave # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v 1.27 2006/03/17 14:12:23 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/ChangeLog,v 1.28 2006/04/24 23:22:32 markusle Exp $ + + 24 Apr 2006; Markus Dittrich <markusle@gentoo.org> octave-2.1.72.ebuild: + Replaced 'tetex' useflag by 'doc' since it only triggers the + install of dvi files. This fixes bug #130984. 17 Mar 2006; Markus Rothe <corsair@gentoo.org> octave-2.1.72.ebuild: Added ~ppc64; bug #126527 diff --git a/sci-mathematics/octave/files/digest-octave-2.1.71-r2 b/sci-mathematics/octave/files/digest-octave-2.1.71-r2 index c5707c297b65..99765bbe1470 100644 --- a/sci-mathematics/octave/files/digest-octave-2.1.71-r2 +++ b/sci-mathematics/octave/files/digest-octave-2.1.71-r2 @@ -1 +1,3 @@ MD5 2ab06912017c833549035111f0ab592f octave-2.1.71.tar.bz2 5784751 +RMD160 6728c64c63ac356908922ef8477e117cf944a7b2 octave-2.1.71.tar.bz2 5784751 +SHA256 c3a47eada5132bef4043cc9730466c133e1f3793f2b7f8e0e6c9620553747337 octave-2.1.71.tar.bz2 5784751 diff --git a/sci-mathematics/octave/octave-2.1.72.ebuild b/sci-mathematics/octave/octave-2.1.72.ebuild index 28169a3deacc..6c3797945bab 100644 --- a/sci-mathematics/octave/octave-2.1.72.ebuild +++ b/sci-mathematics/octave/octave-2.1.72.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/octave-2.1.72.ebuild,v 1.3 2006/03/17 14:12:23 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/octave/octave-2.1.72.ebuild,v 1.4 2006/04/24 23:22:32 markusle Exp $ inherit flag-o-matic fortran @@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.octave.org/pub/octave/bleeding-edge/${P}.tar.bz2 ftp://ftp.math.uni-hamburg.de/pub/soft/math/octave/${P}.tar.bz2" SLOT="0" -IUSE="emacs static readline zlib tetex hdf5 mpi blas" +IUSE="emacs static readline zlib doc hdf5 mpi blas" KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86" DEPEND="virtual/libc @@ -21,7 +21,7 @@ DEPEND="virtual/libc >=dev-util/gperf-2.7.2 zlib? ( sys-libs/zlib ) hdf5? ( sci-libs/hdf5 ) - tetex? ( virtual/tetex ) + doc? ( virtual/tetex ) blas? ( virtual/blas ) mpi? ( virtual/mpi ) !=app-text/texi2html-1.70" @@ -78,7 +78,7 @@ src_compile() { src_install() { make install DESTDIR="${D}" || die "make install failed" - if use tetex; then + if use doc; then octave-install-doc || die "Octave doc install failed" fi if use emacs; then |