diff options
author | Justin Lecher <jlec@gentoo.org> | 2012-11-10 09:54:29 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2012-11-10 09:54:29 +0000 |
commit | 2197eb1be56135764068779c15a3666794cd7189 (patch) | |
tree | e648f41a9df6b6a9d32ce947795afde50bd3da99 /sci-libs | |
parent | Version bumps (diff) | |
download | gentoo-2-2197eb1be56135764068779c15a3666794cd7189.tar.gz gentoo-2-2197eb1be56135764068779c15a3666794cd7189.tar.bz2 gentoo-2-2197eb1be56135764068779c15a3666794cd7189.zip |
sci-libs/armadillo: Drop USE=doc and fix installation of docs, #442284
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/armadillo/ChangeLog | 5 | ||||
-rw-r--r-- | sci-libs/armadillo/armadillo-3.4.3.ebuild | 11 |
2 files changed, 10 insertions, 6 deletions
diff --git a/sci-libs/armadillo/ChangeLog b/sci-libs/armadillo/ChangeLog index 2b108db5abfe..ea5714875747 100644 --- a/sci-libs/armadillo/ChangeLog +++ b/sci-libs/armadillo/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-libs/armadillo # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/armadillo/ChangeLog,v 1.17 2012/11/01 19:24:13 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/armadillo/ChangeLog,v 1.18 2012/11/10 09:54:29 jlec Exp $ + + 10 Nov 2012; Justin Lecher <jlec@gentoo.org> armadillo-3.4.3.ebuild: + Drop USE=doc and fix installation of docs, #442284 *armadillo-3.4.3 (01 Nov 2012) diff --git a/sci-libs/armadillo/armadillo-3.4.3.ebuild b/sci-libs/armadillo/armadillo-3.4.3.ebuild index 6661f050ff5f..d12667913c76 100644 --- a/sci-libs/armadillo/armadillo-3.4.3.ebuild +++ b/sci-libs/armadillo/armadillo-3.4.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/armadillo/armadillo-3.4.3.ebuild,v 1.1 2012/11/01 19:24:13 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/armadillo/armadillo-3.4.3.ebuild,v 1.2 2012/11/10 09:54:29 jlec Exp $ EAPI=4 @@ -15,9 +15,10 @@ SRC_URI="mirror://sourceforge/arma/${P}.tar.gz" LICENSE="LGPL-3" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" -IUSE="atlas blas doc examples lapack" +IUSE="atlas blas examples lapack" -RDEPEND=">=dev-libs/boost-1.34 +RDEPEND=" + dev-libs/boost atlas? ( sci-libs/lapack-atlas ) blas? ( virtual/blas ) lapack? ( virtual/lapack )" @@ -59,8 +60,8 @@ src_configure() { src_install() { cmake-utils_src_install - dodoc README.txt - use doc && dodoc docs/*pdf + dodoc README.txt *pdf + dohtml *html if use examples; then insinto /usr/share/doc/${PF} doins -r examples |