blob: 5a482d3f7ae6b8ed958614bd2c5e37c39401cd68 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
NEED_ARTS="no"
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="~x86"
IUSE=""
DEPEND="dev-lang/R
dev-lang/php"
RDEPEND="${DEPEND}"
src_install() {
kde_src_install
rm ${D}/usr/lib/R/library/R.css
mv ${D}/share ${D}/usr/
}
|