On Ubuntu 10.04 I updated a load of the R (ubuntu) packages this morning. Then the first R script I tried told me zoo wasn\'t built for R 3.0.0. So I do sudo R
and
Dirk's answer got me most of the way, leaving just xtsExtra, which was installed from R-Forge. I recommend against update.packages(ask=FALSE, checkBuilt=TRUE, repos="http://R-Forge.R-project.org")
as that appears to update some of the CRAN packages with their R-Forge version; that might mean it installs more experimental versions (?).
So, I did this instead:
remove.packages('xtsExtra')
install.packages("xtsExtra", repos="http://R-Forge.R-project.org")