[Lunar-commits] CVS: moonbase/science/R PRE_BUILD, NONE, 1.1 BUILD, 1.1, 1.2 DEPENDS, 1.1, 1.2 DETAILS, 1.4, 1.5

Terry Chan tchan at lunar-linux.org
Sun Feb 15 16:41:41 GMT 2004


Update of /var/cvs/lunar/moonbase/science/R
In directory dbguin.lunar-linux.org:/tmp/cvs-serv8506

Modified Files:
	BUILD DEPENDS DETAILS 
Added Files:
	PRE_BUILD 
Log Message:
Version bump to 1.8.1.  Reworked the module.  This version of the R language
seems to REQUIRE a fortran compiler, so I added a PRE_BUILD that tests for
/usr/bin/g77 or else it prints a warning and aborts.  Compiled and tested
with gcc-3.3.2, with kernel headers 2.4.x.


--- NEW FILE: PRE_BUILD ---
if  [ -e /usr/bin/g77 ]; then
  default_pre_build
else
  sound  FAILURE
  message  "!!!Problem: Your gcc does not have g77 Fortran enabled,  please recompile your gcc first"
  false
fi

Index: BUILD
===================================================================
RCS file: /var/cvs/lunar/moonbase/science/R/BUILD,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- BUILD	15 Oct 2002 02:49:47 -0000	1.1
+++ BUILD	15 Feb 2004 16:41:38 -0000	1.2
@@ -1,16 +1,19 @@
 (
-CFLAGS=`echo $CFLAGS | sed s/-ffast-math//` &&
-CXXFLAGS=`echo $CXXFLAGS | sed s/-ffast-math//` &&
-default_config &&
-make &&
-make check &&
-#add these lines to make documenataion
-#make dvi &&
-#make pfd &&
-#make info &&
-prepare_install &&
-make install 
-#make install-dvi &&
-#make install-info &&
-#make install-pdf &&
+
+  CFLAGS=`echo $CFLAGS | sed s/-ffast-math//` &&
+  CXXFLAGS=`echo $CXXFLAGS | sed s/-ffast-math//` &&
+  
+  default_config &&
+  make &&
+  make check &&
+  #uncomment these lines to make documentation
+  #make dvi &&
+  #make pfd &&
+  #make info &&
+  prepare_install &&
+  make install 
+  #make install-dvi &&
+  #make install-info &&
+  #make install-pdf
+  
 ) > $C_FIFO 2>&1

Index: DEPENDS
===================================================================
RCS file: /var/cvs/lunar/moonbase/science/R/DEPENDS,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- DEPENDS	15 Oct 2002 02:49:47 -0000	1.1
+++ DEPENDS	15 Feb 2004 16:41:38 -0000	1.2
@@ -1,9 +1,2 @@
-#add modules that are required or optionaly required here
-#required
-#depends <module>
-#optional
-#optional_depends "<module>" "<config options to include eg. --with-...>"\
-#    "<config options to exclude eg. --without-...>" \
-#    "<the all important reason why>"
 depends jpeg &&
 depends libpng

Index: DETAILS
===================================================================
RCS file: /var/cvs/lunar/moonbase/science/R/DETAILS,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- DETAILS	28 Jan 2004 09:21:50 -0000	1.4
+++ DETAILS	15 Feb 2004 16:41:38 -0000	1.5
@@ -1,17 +1,25 @@
           MODULE=R
-         VERSION=1.7.1
+         VERSION=1.8.1
           SOURCE=$MODULE-$VERSION.tgz
 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION
    SOURCE_URL[0]=http://cran.r-project.org/src/base/$SOURCE
+      SOURCE_VFY=md5:cd81fdeaf22f93dfc28979e8132722ec
         WEB_SITE=http://www.r-project.org/
          ENTERED=20021010
-         UPDATED=20030805
-      MAINTAINER=michalsc at email.uc.edu
+         UPDATED=20040215
+      MAINTAINER=hardkrash at lunar-linux.org
+           PSAFE=no
            SHORT="R is a language and environment for statistical computing and graphics."
 cat << EOF
 R is a GNU project which is similar to the S language and environment 
-which was developed at Bell Laboratories (formerly AT&T, now Lucent Technologies) by John Chambers and colleagues. R can be considered as a different implementation of S. There are some important differences, but much code written for S runs unaltered under R. 
-
+which was developed at Bell Laboratories (formerly AT&T, now
+LucentiTechnologies) by John Chambers and colleagues. R can be considered as a
+different implementation of S. There are some important differences, but much
+code written for S runs unaltered under R. 
 
-R provides a wide variety of statistical (linear and nonlinear modeling, classical statistical tests, time-series analysis, classification, clustering, ...) and graphical techniques, and is highly extensible. The S language is often the vehicle of choice for research in statistical methodology, and R provides an Open Source route to participation in that activity. 
+R provides a wide variety of statistical (linear and nonlinear modeling,
+classical statistical tests, time-series analysis, classification, clustering,
+...) and graphical techniques, and is highly extensible. The S language is
+often the vehicle of choice for research in statistical methodology, and R
+provides an Open Source route to participation in that activity. 
 EOF



More information about the Lunar-commits mailing list