diff options
| author | cassio <cassiopc@gmail.com> | 2014-10-26 19:53:21 +0000 |
|---|---|---|
| committer | cassio <cassiopc@gmail.com> | 2014-10-26 19:53:21 +0000 |
| commit | 97066d6d8659d55b098fa20a3b30f4c16eff88b3 (patch) | |
| tree | c5c783ae08e711f5e985bf73dcaccd3d68415b03 | |
| parent | d8568d2c056a0a09fc6dacedcea8e04bddb9482d (diff) | |
| download | boca-97066d6d8659d55b098fa20a3b30f4c16eff88b3.tar.gz boca-97066d6d8659d55b098fa20a3b30f4c16eff88b3.zip | |
inclusion of gcc-4.8 and java 7
| -rwxr-xr-x | tools/installv2.sh | 33 |
1 files changed, 24 insertions, 9 deletions
diff --git a/tools/installv2.sh b/tools/installv2.sh index 0223636..f9160fc 100755 --- a/tools/installv2.sh +++ b/tools/installv2.sh @@ -15,10 +15,11 @@ # // You should have received a copy of the GNU General Public License # // along with this program. If not, see <http://www.gnu.org/licenses/>. # //////////////////////////////////////////////////////////////////////////////// -# // Last modified 21/Aug/2014 by cassio@ime.usp.br +# // Last modified 26/Oct/2014 by cassio@ime.usp.br +# // inclusion of gcc-4.8 and update to Java 7 #/////////////////////////////////////////////////////////////////////////////////////////// echo "#############################################################" -echo "### installv2.sh of 21/Aug/2014 (A) by cassio@ime.usp.br ###" +echo "### installv2.sh of 26/Oct/2014 (A) by cassio@ime.usp.br ###" echo "#############################################################" if [ "`id -u`" != "0" ]; then @@ -89,15 +90,19 @@ if [ $? != 0 ]; then fi fi -echo "=====================================================================" -echo "============== CHECKING FOR canonical.com APT SERVER ===============" -echo "=====================================================================" - +echo "==============================================================" +echo "============== CHECKING FOR OTHER APT SERVERS ===============" +echo "==============================================================" +echo "============== CHECKING FOR canonical.com APT SERVER ========" cd grep -q "^[^\#]*deb http://archive.canonical.com.* $DISTRIB_CODENAME .*partner" /etc/apt/sources.list if [ $? != 0 ]; then add-apt-repository "deb http://archive.canonical.com/ubuntu $DISTRIB_CODENAME partner" fi +echo "==============================================================" +echo "============== ADDING extra rep for C++11 ====================" +add-apt-repository ppa:ubuntu-toolchain-r/test + apt-get -y update apt-get -y upgrade @@ -128,8 +133,8 @@ echo "================= installing packages needed by BOCA ===============" echo "=====================================================================" apt-get -y install zenity apache2 eclipse-pde eclipse-rcp eclipse-platform eclipse-jdt eclipse-cdt eclipse emacs \ - evince g++ gcc gedit scite libstdc++6 makepasswd manpages-dev php5-cli php5-mcrypt openjdk-6-dbg \ - php5 php5-pgsql postgresql postgresql-client postgresql-contrib quota sharutils default-jdk openjdk-6-doc \ + evince g++ gcc gedit scite libstdc++6 makepasswd manpages-dev php5-cli php5-mcrypt openjdk-7-dbg openjdk-7-jdk \ + php5 php5-pgsql postgresql postgresql-client postgresql-contrib quota sharutils default-jdk openjdk-7-doc \ vim-gnome geany geany-plugin-addons geany-plugins geany-plugin-${geanydeb} default-jre sysstat \ vim xfce4 $libCppdev $libCppdoc $libCppdbg php5-gd stl-manual gcc-doc debootstrap schroot c++-annotations if [ $? != 0 ]; then @@ -137,6 +142,16 @@ if [ $? != 0 ]; then echo "ERROR running the apt-get -- must check if all needed packages are available" exit 1 fi +apt-get -y install gcc-4.8 g++-4.8 +if [ $? != 0 ]; then + echo "" + echo "ERROR running the apt-get for gcc 4.8 -- must check if all needed packages are available" + exit 1 +fi +update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 60 --slave /usr/bin/g++ g++ /usr/bin/g++-4.8 +update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.6 40 --slave /usr/bin/g++ g++ /usr/bin/g++-4.6 +apt-get -y autoremove +apt-get -y clean for i in makepasswd useradd update-rc.d; do p=`which $i` @@ -159,7 +174,7 @@ cat <<EOF > /etc/skel/Desktop/javadoc.desktop Version=1.5.1 Name=Java API Comment=Java API -Exec=firefox /usr/share/doc/openjdk-6-jre-headless/api/index.html +Exec=firefox /usr/share/doc/openjdk-7-jre-headless/api/index.html Terminal=false Type=Application EOF |