diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2007-06-01 00:55:22 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2007-06-01 00:55:22 +0000 |
commit | e0e24fb0c82d17acf51504e347bb27fb04c62d57 (patch) | |
tree | 1a05328ae850b3e6b42217a1f144ccaed95ed53a /sci-mathematics/rkward | |
parent | stable for x86 (bug #180458) (diff) | |
download | gentoo-2-e0e24fb0c82d17acf51504e347bb27fb04c62d57.tar.gz gentoo-2-e0e24fb0c82d17acf51504e347bb27fb04c62d57.tar.bz2 gentoo-2-e0e24fb0c82d17acf51504e347bb27fb04c62d57.zip |
Version bump+small fix for R 2.5.
(Portage version: 2.1.2.7)
Diffstat (limited to 'sci-mathematics/rkward')
-rw-r--r-- | sci-mathematics/rkward/ChangeLog | 9 | ||||
-rw-r--r-- | sci-mathematics/rkward/files/digest-rkward-0.4.7a | 3 | ||||
-rw-r--r-- | sci-mathematics/rkward/rkward-0.4.7a.ebuild | 31 |
3 files changed, 42 insertions, 1 deletions
diff --git a/sci-mathematics/rkward/ChangeLog b/sci-mathematics/rkward/ChangeLog index 42452cfedd7c..b41b477b7985 100644 --- a/sci-mathematics/rkward/ChangeLog +++ b/sci-mathematics/rkward/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for sci-mathematics/rkward # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/rkward/ChangeLog,v 1.3 2007/04/27 10:01:52 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/rkward/ChangeLog,v 1.4 2007/06/01 00:55:22 bicatali Exp $ + +*rkward-0.4.7a (01 Jun 2007) + + 01 Jun 2007; Sébastien Fabbro <bicatali@gentoo.org> + +rkward-0.4.7a.ebuild: + Version bump+small fix for R 2.5. + Thanks Skander Morgenthaler <smorg@gmx.de> for reporting. 27 Apr 2007; Sébastien Fabbro <bicatali@gentoo.org> rkward-0.4.7.ebuild: added a need-kde to bring kdelibs deps, thanks for Andre diff --git a/sci-mathematics/rkward/files/digest-rkward-0.4.7a b/sci-mathematics/rkward/files/digest-rkward-0.4.7a new file mode 100644 index 000000000000..ad7931199f9b --- /dev/null +++ b/sci-mathematics/rkward/files/digest-rkward-0.4.7a @@ -0,0 +1,3 @@ +MD5 3f3844194ca58220fcc48561f043797a rkward-0.4.7a.tar.gz 1568665 +RMD160 8fde2316d1f60dae10f2c2d3bf58aa1cc95ef069 rkward-0.4.7a.tar.gz 1568665 +SHA256 b113e70dcaefa334ad93900b0502f1c426204e98736476a4438cd5eac33d0aa0 rkward-0.4.7a.tar.gz 1568665 diff --git a/sci-mathematics/rkward/rkward-0.4.7a.ebuild b/sci-mathematics/rkward/rkward-0.4.7a.ebuild new file mode 100644 index 000000000000..a06cf16ac17b --- /dev/null +++ b/sci-mathematics/rkward/rkward-0.4.7a.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/rkward/rkward-0.4.7a.ebuild,v 1.1 2007/06/01 00:55:22 bicatali Exp $ + +ARTS_REQUIRED="never" + +inherit kde + +DESCRIPTION="An IDE/GUI for the R-project" +HOMEPAGE="http://rkward.sourceforge.net/" +SRC_URI="mirror://sourceforge/rkward/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-lang/R" +RDEPEND="${DEPEND} dev-lang/php" + +need-kde 3 + +src_install() { + # rbackend needed directory (R-2.5.0 broken) + dodir /usr/$(get_libdir)/R/library + kde_src_install + # already provided by R + rm -f "${D}"/usr/$(get_libdir)/R/library/R.css + # already provided by kdelibs + rm -f "${D}"/share/apps/katepart/syntax/r.xml +} |