2022-03-11 02:45:34 +01:00
|
|
|
# Copyright 1999-2022 Gentoo Authors
|
2021-03-14 23:22:08 +01:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
|
|
EAPI="7"
|
|
|
|
|
|
2021-06-01 00:04:08 +02:00
|
|
|
inherit R-packages
|
2021-03-14 23:22:08 +01:00
|
|
|
|
|
|
|
|
DESCRIPTION='Seamless R and C++ Integration'
|
|
|
|
|
HOMEPAGE="
|
2022-03-30 17:16:57 +02:00
|
|
|
https://www.rcpp.org
|
2021-03-14 23:22:08 +01:00
|
|
|
http://dirk.eddelbuettel.com/code/rcpp.html
|
|
|
|
|
https://github.com/RcppCore/Rcpp
|
|
|
|
|
https://cran.r-project.org/package=Rcpp
|
|
|
|
|
"
|
2022-04-16 17:46:38 +02:00
|
|
|
|
|
|
|
|
LICENSE='GPL-2+ Boost-1.0'
|
2021-03-14 23:22:08 +01:00
|
|
|
KEYWORDS="~amd64"
|
2022-04-16 17:46:38 +02:00
|
|
|
IUSE="examples"
|
|
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
|
if ! use examples ; then
|
|
|
|
|
rm -r inst/examples || die
|
|
|
|
|
fi
|
|
|
|
|
rm -r inst/tinytest || die
|
|
|
|
|
R-packages_src_prepare
|
|
|
|
|
}
|
2022-03-11 02:45:34 +01:00
|
|
|
|
|
|
|
|
SUGGESTED_PACKAGES="
|
|
|
|
|
dev-R/tinytest
|
|
|
|
|
dev-R/inline
|
|
|
|
|
dev-R/rbenchmark
|
|
|
|
|
>=dev-R/pkgKitten-0.1.2
|
|
|
|
|
"
|