cvsdist 38d0d0c
#! /bin/sh
cvsdist 38d0d0c
cvsdist 38d0d0c
# We need to make our own copy of the eclipse platform in order to
cvsdist 38d0d0c
# build against it.  We do this since the build root might already
cvsdist 38d0d0c
# contain a copy of the plugin we are building -- and the eclipse
cvsdist 38d0d0c
# releng scripts fail in this situation.  We put this script in the
cvsdist 38d0d0c
# eclipse core so that it is easy to use from other spec files.
cvsdist 38d0d0c
cvsdist 38d0d0c
# Arguments are:
cvsdist 38d0d0c
# * directory where results should end up (script will make it)
cvsdist 38d0d0c
# * base location of eclipse platform install
cvsdist 8c8401f
# * an optional string that is used to select non-platform
cvsdist 8c8401f
#   plugins and features.  At present if a plugin or feature has
cvsdist 8c8401f
#   this as a substring, it will be included.  You need only run
cvsdist 8c8401f
#   this script once, it will link both the platform and the other
cvsdist 8c8401f
#   optionally-selected parts in a single invocation.
bbd9a49
bbd9a49
# Test to see if the minimum arguments
bbd9a49
# are specified
bbd9a49
bbd9a49
if [ $# -lt 2 ]; then
bbd9a49
  echo "Usage: copy-platform where eclipse_base optional_directories"
bbd9a49
  echo "For example: copy-plaform ~/SDK /usr/share/eclipse cdt pydev jdt"
bbd9a49
  exit 1
bbd9a49
fi
bbd9a49
bbd9a49
where=$1; shift
bbd9a49
eclipse=$1; shift
cvsdist 38d0d0c
cvsdist 38d0d0c
mkdir $where
cvsdist 38d0d0c
cd $where
Ben Konrath d9e8538
mkdir plugins features links 
cvsdist 38d0d0c
bbd9a49
# Are there any optional arguments left?
bbd9a49
if [ $# -gt 0 ]; then
bbd9a49
   for optional in "$@"; do
bbd9a49
      (cd $eclipse; ls -d plugins/*"$optional"* features/*"$optional"*) |
bbd9a49
      while read f; do
bbd9a49
         ln -s $eclipse/$f $f
bbd9a49
      done
cvsdist 8c8401f
   done
cvsdist 8c8401f
fi
cvsdist 8c8401f
cvsdist 38d0d0c
# Code after this point is automatically created by eclipse.spec.