diff options
author | 2012-02-23 17:08:19 +0000 | |
---|---|---|
committer | 2012-02-23 17:08:19 +0000 | |
commit | d5459c7dc7817333098ad781e182f48d3ce1af79 (patch) | |
tree | b8f4b66b614c9e449bb9489447d336dde9681e06 /app-doc/scalapack-docs/scalapack-docs-2.0.ebuild | |
parent | sci-libs/mpiblacs: Removed old, blocking scalapack > 2 (diff) | |
download | sci-d5459c7dc7817333098ad781e182f48d3ce1af79.tar.gz sci-d5459c7dc7817333098ad781e182f48d3ce1af79.tar.bz2 sci-d5459c7dc7817333098ad781e182f48d3ce1af79.zip |
app-doc/scalapack-docs: Bumping to match scalapack-2 which include blacs quick reference sheets
(Portage version: 2.1.10.44/git/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'app-doc/scalapack-docs/scalapack-docs-2.0.ebuild')
-rw-r--r-- | app-doc/scalapack-docs/scalapack-docs-2.0.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/app-doc/scalapack-docs/scalapack-docs-2.0.ebuild b/app-doc/scalapack-docs/scalapack-docs-2.0.ebuild new file mode 100644 index 000000000..c66bc5af5 --- /dev/null +++ b/app-doc/scalapack-docs/scalapack-docs-2.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=4 + +DESCRIPTION="Documentation reference and man pages for ScaLAPACK implementations" +HOMEPAGE="http://www.netlib.org/scalapack/" +SRC_URI="http://dev.gentoo.org/~bicatali/distfiles/${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +S="${WORKDIR}" + +src_install() { + # rename because doman do not yet understand manl files + # Not all systems have the rename command, like say FreeBSD + local f t + for f in MANPAGES/man/manl/*.l; do + t="${f%%.l}.n" + mv "${f}" "${t}" + done + doman MANPAGES/man/manl/* + dodoc *.ps +} |