summaryrefslogtreecommitdiff
path: root/dev-R/RcppArmadillo/RcppArmadillo-0.10.2.2.0.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-04-12 21:03:09 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-04-12 21:03:09 +0000
commitd97953e6ff67978da9554e7b4601aedceb21e215 (patch)
tree674053c902db6972b9716c9ac3b1e960ee7a5358 /dev-R/RcppArmadillo/RcppArmadillo-0.10.2.2.0.ebuild
parent1d1fa5bb30df70070bbbbd2b777b839d31f09c41 (diff)
downloadbaldeagleos-repo-d97953e6ff67978da9554e7b4601aedceb21e215.tar.gz
baldeagleos-repo-d97953e6ff67978da9554e7b4601aedceb21e215.tar.xz
baldeagleos-repo-d97953e6ff67978da9554e7b4601aedceb21e215.zip
Adding metadata
Diffstat (limited to 'dev-R/RcppArmadillo/RcppArmadillo-0.10.2.2.0.ebuild')
-rw-r--r--dev-R/RcppArmadillo/RcppArmadillo-0.10.2.2.0.ebuild46
1 files changed, 46 insertions, 0 deletions
diff --git a/dev-R/RcppArmadillo/RcppArmadillo-0.10.2.2.0.ebuild b/dev-R/RcppArmadillo/RcppArmadillo-0.10.2.2.0.ebuild
new file mode 100644
index 000000000000..90a6b1e20db0
--- /dev/null
+++ b/dev-R/RcppArmadillo/RcppArmadillo-0.10.2.2.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 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-3 ${PV})"
+DESCRIPTION='Rcpp Integration for the Armadillo templated linear algebra library'
+SRC_URI="mirror://cran/src/contrib/Archive/${PN}/${PN}_${PV}.tar.gz"
+KEYWORDS="~amd64"
+LICENSE='GPL-2+'
+
+DEPEND="
+ >=dev-lang/R-3.3.0
+ >=dev-R/Rcpp-0.11.0
+ =sci-libs/armadillo-${MY_PV}*:=[lapack]
+"
+RDEPEND="${DEPEND}"
+
+#TODO: correctly link to lapack
+
+src_prepare() {
+ default
+
+ #remove bundled
+ rm -r inst/include/armadillo_bits || die
+ rm inst/include/armadillo || die
+
+ #link to sci-libs/armadillo
+ ln -s "${ESYSROOT}"/usr/include/armadillo_bits inst/include/armadillo_bits || die
+ ln -s "${ESYSROOT}"/usr/include/armadillo inst/include/armadillo || die
+}
+
+src_install() {
+ R-packages_src_install
+
+ R_includedir="/usr/$(get_libdir)/R/site-library/${PN}/include"
+ dosym8 -r /usr/include/armadillo "${R_includedir}/armadillo"
+
+ dodir /usr/include/armadillo_bits
+ for file in "${ED}/${R_includedir}"/armadillo_bits/*; do
+ filename=$(basename "${file}")
+ dosym8 -r /usr/include/armadillo_bits/${filename} "${R_includedir}/armadillo_bits/${filename}"
+ done
+}