2007-07-06 22:07:47 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Figure out what RHOME is set to
|
|
|
|
TMP_R_HOME=`R RHOME`
|
|
|
|
|
2008-02-08 19:27:58 +00:00
|
|
|
# Figure out what R_DOC_DIR is set to
|
|
|
|
# Ideally, we could ask R just like we do for RHOME, but we can't yet.
|
|
|
|
TMP_R_DOC_DIR=`grep "R_DOC_DIR=" /usr/bin/R | cut -d "=" -f 2`
|
|
|
|
|
2008-04-29 20:09:52 +00:00
|
|
|
# Write out all the contents in arch library locations
|
2008-02-08 19:27:58 +00:00
|
|
|
cat $TMP_R_HOME/library/*/CONTENTS > $TMP_R_DOC_DIR/html/search/index.txt 2>/dev/null
|
2008-04-29 20:09:52 +00:00
|
|
|
# Don't use .. based paths, substitute TMP_R_HOME
|
|
|
|
sed -i "s!../../..!$TMP_R_HOME!g" $TMP_R_DOC_DIR/html/search/index.txt
|
|
|
|
|
|
|
|
# Write out all the contents in noarch library locations
|
2008-02-08 19:27:58 +00:00
|
|
|
cat /usr/share/R/library/*/CONTENTS >> $TMP_R_DOC_DIR/html/search/index.txt 2>/dev/null
|
2008-04-29 20:09:52 +00:00
|
|
|
# Don't use .. based paths, substitute /usr/share/R
|
|
|
|
sed -i "s!../../..!/usr/share/R!g" $TMP_R_DOC_DIR/html/search/index.txt
|
2007-07-06 22:07:47 +00:00
|
|
|
|
|
|
|
exit 0
|
|
|
|
|