diff options
Diffstat (limited to 'development/eclipse/eclipse.SlackBuild')
-rw-r--r-- | development/eclipse/eclipse.SlackBuild | 40 |
1 files changed, 28 insertions, 12 deletions
diff --git a/development/eclipse/eclipse.SlackBuild b/development/eclipse/eclipse.SlackBuild index b357cdad0f..a981056af9 100644 --- a/development/eclipse/eclipse.SlackBuild +++ b/development/eclipse/eclipse.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for eclipse -# Copyright (c) 2008, Antonio Hernández Blas <hba.nihilismus@gmail.com> +# Copyright (c) 2008-2009, Antonio Hernández Blas <hba.nihilismus@gmail.com> # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -23,10 +23,9 @@ # This script is just a binary repackaging. - PRGNAM=eclipse -VERSION=3.4.2 -ARCH=i586 # Leave this alone. +VERSION=3.5.1 +ARCH=${ARCH:-i586} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -40,7 +39,16 @@ set -e rm -rf $PKG mkdir -p $TMP $PKG/opt $OUTPUT cd $PKG/opt -tar xvf $CWD/$PRGNAM-SDK-$VERSION-linux-gtk.tar.gz + +# Untar source code tarball according with ARCH value +# ARCH can be 'i586' or 'x86_64' +if [ "$ARCH" = "x86_64" ]; then + tar xvf $CWD/$PRGNAM-SDK-$VERSION-linux-gtk-$ARCH.tar.gz || exit 1 +else + tar xvf $CWD/$PRGNAM-SDK-$VERSION-linux-gtk.tar.gz || exit 1 + ARCH=i586 +fi + chown -R root:root . find . \ @@ -49,15 +57,21 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -# Add a script to run eclipse in /usr/bin +# Add a wrapper to run eclipse in /usr/bin +# Its going to change the working directory to $HOME, so when you import/export +# into/from eclipse $HOME is going to be the default directory, rather than +# /opt/eclipse. mkdir -p $PKG/usr/bin cat << EOF > $PKG/usr/bin/$PRGNAM #!/bin/sh -cd /opt/eclipse -./eclipse "\$@" +cd \$HOME +/opt/eclipse/eclipse \$@ EOF chmod 0755 $PKG/usr/bin/eclipse +# Add an icon for eclipse +install -D -m 0644 $CWD/$PRGNAM.png $PKG/usr/share/pixmaps/$PRGNAM.png + # Add eclipse to KDE/GNOME/XFCE menu and install an icon for them install -D -m 0644 $CWD/$PRGNAM.desktop \ $PKG/usr/share/applications/$PRGNAM.desktop @@ -65,8 +79,10 @@ install -D -m 0644 $CWD/$PRGNAM.png \ $PKG/usr/share/pixmaps/$PRGNAM.png ( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null ) # Don't clobber any existing config file @@ -77,7 +93,7 @@ mv $PKG/opt/$PRGNAM/eclipse.ini \ mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cd $PKG/opt/$PRGNAM -cp -a about.html about_files epl-v10.html notice.html readme $PKG/usr/doc/$PRGNAM-$VERSION +cp -a about_files readme *.html $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install @@ -85,4 +101,4 @@ cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/doinst.sh > $PKG/install/doinst.sh cd $PKG -/sbin/makepkg -l y -c n -p $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |