blob: 29cc0a0403f4757efeeecf0d826d033a6c4b1022 (
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
30
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/rkward/rkward-0.5.4.ebuild,v 1.4 2011/09/03 21:13:17 dilfridge Exp $
EAPI=3
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="4"
KEYWORDS="amd64 x86"
IUSE="debug"
DEPEND="
dev-lang/R
|| ( <kde-base/kdelibs-4.6.50
( $(add_kdebase_dep katepart) ) )
"
RDEPEND="${DEPEND}"
src_install() {
kde4-base_src_install
# avoid file collisions
rm -f "${ED}"/usr/$(get_libdir)/R/library/R.css
rm -f "${ED}"/usr/share/apps/katepart/syntax/r.xml
}
|