From: Koen Kooi Date: Tue, 27 Dec 2005 22:27:11 +0000 (+0000) Subject: r: salvage r-native from nonworking/ as it seems to build again X-Git-Tag: Release-2010-05/1~9453^2~2842 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=533e217a58d734a6f9a435fef60205826df8109c;p=openembedded.git r: salvage r-native from nonworking/ as it seems to build again --- diff --git a/packages/r/.mtn2git_empty b/packages/r/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 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 +}