blob: bb27955210b7389d0aeef813633790614e2f78f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/rkward/rkward-0.5.2.ebuild,v 1.1 2009/11/04 17:55:48 bicatali Exp $
EAPI="2"
KDE_MINIMAL="4.1"
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
dev-lang/php[cli]"
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
}
|