diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2005-06-05 19:43:30 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2005-06-05 19:43:30 +0000 |
commit | 8bd88bef552102a252f1502c3ce6a9e4e21e492a (patch) | |
tree | 6615a71407f2df390b326c6e4052ce9eac090518 /sci-mathematics | |
parent | mark x86 (diff) | |
download | historical-8bd88bef552102a252f1502c3ce6a9e4e21e492a.tar.gz historical-8bd88bef552102a252f1502c3ce6a9e4e21e492a.tar.bz2 historical-8bd88bef552102a252f1502c3ce6a9e4e21e492a.zip |
Workaround for bug #43843. Add documentation.
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/koctave/ChangeLog | 8 | ||||
-rw-r--r-- | sci-mathematics/koctave/Manifest | 14 | ||||
-rw-r--r-- | sci-mathematics/koctave/files/digest-koctave-0.65-r1 | 2 | ||||
-rw-r--r-- | sci-mathematics/koctave/koctave-0.65-r1.ebuild | 33 |
4 files changed, 45 insertions, 12 deletions
diff --git a/sci-mathematics/koctave/ChangeLog b/sci-mathematics/koctave/ChangeLog index a9b0c29d1fb8..e53b5156ebb7 100644 --- a/sci-mathematics/koctave/ChangeLog +++ b/sci-mathematics/koctave/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-mathematics/koctave # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/koctave/ChangeLog,v 1.6 2005/05/31 04:32:25 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/koctave/ChangeLog,v 1.7 2005/06/05 19:43:30 ribosome Exp $ + +*koctave-0.65-r1 (05 Jun 2005) + + 05 Jun 2005; Olivier Fisette <ribosome@gentoo.org> + +koctave-0.65-r1.ebuild: + Workaround for bug #43843. Adds documentation. 31 May 2005; Marcus D. Hanwell <marcus@gentoo.org> koctave-0.65.ebuild: Update homepage and download locations. diff --git a/sci-mathematics/koctave/Manifest b/sci-mathematics/koctave/Manifest index 3691e80364c5..72c8de39c30e 100644 --- a/sci-mathematics/koctave/Manifest +++ b/sci-mathematics/koctave/Manifest @@ -1,15 +1,7 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - +MD5 30aa80c74f7f6d178b00e1d64ba685d6 koctave-0.65-r1.ebuild 836 MD5 5b3c249298143ddac85da0ac5e895535 koctave-0.65.ebuild 717 -MD5 b847c32c6013434b078b0e73c73e3db8 ChangeLog 1657 +MD5 eb1aaac834210e8318fc207ac7892546 ChangeLog 1822 MD5 8c623e53daafa025137077c6b65815bd metadata.xml 156 MD5 4f0ca821e35f031a4ca215f4640e10d4 files/koctave-0.65-arts-configure.patch 3569 MD5 c118f6e51940e1810fd2907f9edde38f files/digest-koctave-0.65 66 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.1 (GNU/Linux) - -iD8DBQFCm+j1ntT9W3vfTuoRAlk+AJ400VtbQlbcUGlei8Mih/yZ6ySL4ACcCqJ6 -36X0whA+A0XDVFvHOJe6VUM= -=KIQV ------END PGP SIGNATURE----- +MD5 9b94d969cb9913fb64624694df0523f4 files/digest-koctave-0.65-r1 140 diff --git a/sci-mathematics/koctave/files/digest-koctave-0.65-r1 b/sci-mathematics/koctave/files/digest-koctave-0.65-r1 new file mode 100644 index 000000000000..b43e7171fd90 --- /dev/null +++ b/sci-mathematics/koctave/files/digest-koctave-0.65-r1 @@ -0,0 +1,2 @@ +MD5 f094f30ed2ec150bb6ae95676b2647e0 koctave3-0.65.tar.bz2 928143 +MD5 d75b3fa2df76210b03513afe8a90123f koctave-docs-20050605.tar.bz2 385432 diff --git a/sci-mathematics/koctave/koctave-0.65-r1.ebuild b/sci-mathematics/koctave/koctave-0.65-r1.ebuild new file mode 100644 index 000000000000..8a82b57f2259 --- /dev/null +++ b/sci-mathematics/koctave/koctave-0.65-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/koctave/koctave-0.65-r1.ebuild,v 1.1 2005/06/05 19:43:30 ribosome Exp $ + +inherit kde + +DESCRIPTION="A KDE GUI for Octave numerical computing system" +HOMEPAGE="http://athlone.ath.cx/~matti/kde/koctave/" +SRC_URI="http://athlone.ath.cx/~matti/kde/koctave/${PN}3-${PV}.tar.bz2 + mirror://gentoo/koctave-docs-20050605.tar.bz2" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~amd64 ~ppc ~sparc" +IUSE="" + +DEPEND="virtual/libc + sci-mathematics/octave + || ( kde-base/kdebase-meta kde-base/kdebase )" + +S=${WORKDIR}/${PN}3-${PV} + +need-kde 3.4 + +src_unpack() { + kde_src_unpack + use arts || epatch ${FILESDIR}/${P}-arts-configure.patch +} + +src_install() { + kde_src_install + dohtml ${WORKDIR}/docs/* +} |