diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2010-05-04 21:59:01 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2010-05-04 21:59:01 +0000 |
commit | 28574aef10c82c4b7526d916b220a4d7485ceb12 (patch) | |
tree | 0bb0fc4bbe0c8f9eb76060b439660d7744dc9d8a | |
parent | Version bump. Added -fno-strict-aliasing to compiler flags, per bug #316139. ... (diff) | |
download | gentoo-2-28574aef10c82c4b7526d916b220a4d7485ceb12.tar.gz gentoo-2-28574aef10c82c4b7526d916b220a4d7485ceb12.tar.bz2 gentoo-2-28574aef10c82c4b7526d916b220a4d7485ceb12.zip |
Version bump
(Portage version: 2.2_rc67/cvs/Linux x86_64)
-rw-r--r-- | sci-mathematics/rkward/ChangeLog | 9 | ||||
-rw-r--r-- | sci-mathematics/rkward/rkward-0.5.3.ebuild | 27 |
2 files changed, 34 insertions, 2 deletions
diff --git a/sci-mathematics/rkward/ChangeLog b/sci-mathematics/rkward/ChangeLog index 1f042daa78d0..66df97340992 100644 --- a/sci-mathematics/rkward/ChangeLog +++ b/sci-mathematics/rkward/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-mathematics/rkward -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/rkward/ChangeLog,v 1.20 2009/11/04 17:55:48 bicatali Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/rkward/ChangeLog,v 1.21 2010/05/04 21:59:01 bicatali Exp $ + +*rkward-0.5.3 (04 May 2010) + + 04 May 2010; Sébastien Fabbro <bicatali@gentoo.org> +rkward-0.5.3.ebuild: + Version bump *rkward-0.5.2 (04 Nov 2009) diff --git a/sci-mathematics/rkward/rkward-0.5.3.ebuild b/sci-mathematics/rkward/rkward-0.5.3.ebuild new file mode 100644 index 000000000000..10c4b563d919 --- /dev/null +++ b/sci-mathematics/rkward/rkward-0.5.3.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/rkward/rkward-0.5.3.ebuild,v 1.1 2010/05/04 21:59:01 bicatali Exp $ + +EAPI="2" + +inherit kde4-base + +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="debug" + +DEPEND=">=dev-lang/R-2.7.0" +RDEPEND="${DEPEND} + !<=sci-mathematics/rkward-0.5.0b" + +src_install() { + kde4-base_src_install + # avoid file collisions + rm -f "${D}"/usr/$(get_libdir)/R/library/R.css + rm -f "${D}"/usr/share/apps/katepart/syntax/r.xml +} |