diff options
author | Marcus D. Hanwell <cryos@gentoo.org> | 2007-01-12 16:39:53 +0000 |
---|---|---|
committer | Marcus D. Hanwell <cryos@gentoo.org> | 2007-01-12 16:39:53 +0000 |
commit | 8d3b3b82025bf1ca8711b4a6af0cd427825bf73e (patch) | |
tree | 5a2f6ca9a5cb16a4ae1de7a599e1ba507263ddb5 /sci-visualization | |
parent | Changing src_install to utilize fowners/fperms, switching the order of chmod/... (diff) | |
download | gentoo-2-8d3b3b82025bf1ca8711b4a6af0cd427825bf73e.tar.gz gentoo-2-8d3b3b82025bf1ca8711b4a6af0cd427825bf73e.tar.bz2 gentoo-2-8d3b3b82025bf1ca8711b4a6af0cd427825bf73e.zip |
Version bump.
(Portage version: 2.1.2_rc4-r7)
Diffstat (limited to 'sci-visualization')
-rw-r--r-- | sci-visualization/veusz/ChangeLog | 9 | ||||
-rw-r--r-- | sci-visualization/veusz/files/digest-veusz-0.10 | 3 | ||||
-rw-r--r-- | sci-visualization/veusz/files/digest-veusz-0.9 | 2 | ||||
-rw-r--r-- | sci-visualization/veusz/veusz-0.10.ebuild | 33 |
4 files changed, 45 insertions, 2 deletions
diff --git a/sci-visualization/veusz/ChangeLog b/sci-visualization/veusz/ChangeLog index f506db85e309..9b6933f19091 100644 --- a/sci-visualization/veusz/ChangeLog +++ b/sci-visualization/veusz/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-visualization/veusz -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/veusz/ChangeLog,v 1.3 2006/04/09 23:14:03 cryos Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/veusz/ChangeLog,v 1.4 2007/01/12 16:39:53 cryos Exp $ + +*veusz-0.10 (12 Jan 2007) + + 12 Jan 2007; Marcus D. Hanwell <cryos@gentoo.org> +veusz-0.10.ebuild: + Version bump. 09 Apr 2006; Marcus D. Hanwell <cryos@gentoo.org> -veusz-0.8.ebuild, veusz-0.9.ebuild: diff --git a/sci-visualization/veusz/files/digest-veusz-0.10 b/sci-visualization/veusz/files/digest-veusz-0.10 new file mode 100644 index 000000000000..92d1255562f8 --- /dev/null +++ b/sci-visualization/veusz/files/digest-veusz-0.10 @@ -0,0 +1,3 @@ +MD5 25960033c8ee243f00a900c83c8deb92 veusz-0.10.tar.gz 639448 +RMD160 4a7b78954ec4acb0d8666980ee26050d9eb53494 veusz-0.10.tar.gz 639448 +SHA256 5342640bdb99ed8347d89091ea3db1aef7cd543e76631f9d6ca710ccb12d5ed3 veusz-0.10.tar.gz 639448 diff --git a/sci-visualization/veusz/files/digest-veusz-0.9 b/sci-visualization/veusz/files/digest-veusz-0.9 index 14c780871f4b..8652ac95be21 100644 --- a/sci-visualization/veusz/files/digest-veusz-0.9 +++ b/sci-visualization/veusz/files/digest-veusz-0.9 @@ -1 +1,3 @@ MD5 db0c797a1542e2e2bd485bc2a824026b veusz-0.9.tar.gz 709990 +RMD160 8540b189c47ce6d8a3d0f1590791d77808c8b593 veusz-0.9.tar.gz 709990 +SHA256 fc3e32f05df5fbeea629460e29e234f16cc6a95ad3afbde6537dd11a3806ddb5 veusz-0.9.tar.gz 709990 diff --git a/sci-visualization/veusz/veusz-0.10.ebuild b/sci-visualization/veusz/veusz-0.10.ebuild new file mode 100644 index 000000000000..4feb687e5657 --- /dev/null +++ b/sci-visualization/veusz/veusz-0.10.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/veusz/veusz-0.10.ebuild,v 1.1 2007/01/12 16:39:53 cryos Exp $ + +inherit distutils + +DESCRIPTION="Qt based scientific plotting package with good Postscript output." +HOMEPAGE="http://home.gna.org/veusz/" +SRC_URI="http://download.gna.org/${PN}/${P}.tar.gz" + +IUSE="doc" +SLOT="0" +KEYWORDS="~amd64 ~x86" +LICENSE="GPL-2" + +DEPEND="virtual/python + dev-python/numarray + dev-python/PyQt" +# To be added back in once fits is added to the tree +# fits? ( >=dev-python/pyfits-0.9.8 )" + +src_install() { + distutils_src_install + if use doc; then + insinto /usr/share/doc/${PF}/examples + doins examples/* + docinto Documents + dodoc Documents/Interface.txt + dohtml -r Documents/{manual.xml,manimages} + insinto /usr/share/doc/${PF}/Documents + doins Documents/generate_manual.sh + fi +} |