blob: 636932648983892b6e12bc9f14aea0d86082ea0b (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit R-packages eapi8-dosym
MY_PV="$(ver_cut 2-4 ${PV})"
DESCRIPTION='Header-Only C++ Mathematical Optimization library for armadillo'
HOMEPAGE="
https://cran.r-project.org/package=RcppEnsmallen
https://github.com/coatless-rpkg/rcppensmallen
"
#SRC_URI="mirror://cran/src/contrib/RcppEnsmallen/RcppEnsmallen_${PV}.tar.gz"
SLOT="0/${PV}"
KEYWORDS="~amd64"
LICENSE='GPL-2+'
DEPEND="
>=dev-lang/R-3.3.0
dev-R/Rcpp
=sci-libs/ensmallen-${MY_PV}*:=
"
RDEPEND="
${DEPEND}
>=dev-R/RcppArmadillo-0.9.800.0.0
"
SUGGESTED_PACKAGES="
dev-R/knitr
dev-R/rmarkdown
"
src_prepare() {
R-packages_src_prepare
# remove bundled
rm -r inst/include/ensmallen_bits || die
rm inst/include/ensmallen.hpp || die
# link to sci-libs/ensmallen
ln -s "${ESYSROOT}"/usr/include/ensmallen_bits inst/include/ensmallen_bits || die
ln -s "${ESYSROOT}"/usr/include/ensmallen.hpp inst/include/ensmallen.hpp || die
}
src_install() {
R-packages_src_install
R_includedir="/usr/$(get_libdir)/R/site-library/${PN}/include"
dosym8 -r /usr/include/ensmallen.hpp "${R_includedir}/ensmallen.hpp"
# portage doesn't like symlinks to folders, symlink all the files then
rm -rf "${ED}/${R_includedir}"/ensmallen_bits/* || die
cp -rs "/usr/include/ensmallen_bits" "${ED}/${R_includedir}" || die
}
|