aboutsummaryrefslogtreecommitdiffstats
path: root/packages/r
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2005-12-27 22:27:11 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-12-27 22:27:11 +0000
commit533e217a58d734a6f9a435fef60205826df8109c (patch)
tree8da204178080e890da3cea0fece074e1078adc68 /packages/r
parentde99dff4c5d5444f8d32ec8f436dd7b100af23aa (diff)
downloadopenembedded-533e217a58d734a6f9a435fef60205826df8109c.tar.gz
r: salvage r-native from nonworking/ as it seems to build again
Diffstat (limited to 'packages/r')
-rw-r--r--packages/r/.mtn2git_empty0
-rw-r--r--packages/r/r-native_2.0.0.bb20
2 files changed, 20 insertions, 0 deletions
diff --git a/packages/r/.mtn2git_empty b/packages/r/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/r/.mtn2git_empty
diff --git a/packages/r/r-native_2.0.0.bb b/packages/r/r-native_2.0.0.bb
new file mode 100644
index 0000000000..d9360dfaef
--- /dev/null
+++ b/packages/r/r-native_2.0.0.bb
@@ -0,0 +1,20 @@
+DEPENDS = "ncurses-native perl-native"
+
+SRC_URI = "http://www.stats.bris.ac.uk/R/src/base/R-2/R-${PV}.tar.gz"
+
+EXTRA_OECONF = "--without-x --without-readline --without-gnome --without-tcltk --without-libpng \
+ --without-jpeglib"
+
+FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/R-${PV}"
+
+S = "${WORKDIR}/R-${PV}"
+
+inherit autotools native
+
+do_configure() {
+ oe_runconf
+}
+
+do_stage() {
+ install -m 0755 ${S}/bin/R ${STAGING_BINDIR}/R
+}