Index: sm/trunk-jpl/packagers/macosx/ISSM.appscript
===================================================================
--- /issm/trunk-jpl/packagers/macosx/ISSM.appscript	(revision 18395)
+++ 	(revision )
@@ -1,1 +1,0 @@
-do shell script "open ~/ISSM/bin/matlabissm"
Index: sm/trunk-jpl/packagers/macosx/README
===================================================================
--- /issm/trunk-jpl/packagers/macosx/README	(revision 18395)
+++ 	(revision )
@@ -1,16 +1,0 @@
-Files needsed to package ISSM into a MacOSX delivery: 
-
-ISSM.appscript : applescript file used by Script Editor to build ISSM.app. Just edit using applescript, and save 
-as application. 
-
-ISSM.app: result of above. 
-
-ISSM.pmdoc: Package Maker project, which outputs ISSM.pkg
-
-ISSM.pkg: result of above. 
-
-Package Maker can be command line driven, using the pmdoc project directly. This is what package.sh does.
-
-issm.icns: icon file for ISSM install.
-matlabissm: used by the Package Maker to launch matlab with ISSM path sourced. 
-startup.m: needed to be sourced by Matlab to point towards mac executables.
Index: sm/trunk-jpl/packagers/macosx/matlabissm
===================================================================
--- /issm/trunk-jpl/packagers/macosx/matlabissm	(revision 18395)
+++ 	(revision )
@@ -1,4 +1,0 @@
-#/bin/bash
-user_home=`echo ~`;
-export  ISSM_TIER="$user_home/ISSM"
-matlab -r "name=getenv('USER'); issm=['/Users/' name '/ISSM']; cd(issm); cd bin; startup; cd ../;"
Index: sm/trunk-jpl/packagers/macosx/package_incomplete.sh
===================================================================
--- /issm/trunk-jpl/packagers/macosx/package_incomplete.sh	(revision 18395)
+++ 	(revision )
@@ -1,16 +1,0 @@
-#/bin/bash
-
-#Package using the Package Maker from OSX, driven by command line.
-sudo sh -c "rm -rf ISSM-MacOSX.pkg bin test"
-
-#We need to copy all the relevant files and set the permissions, as PackageMaker 
-#is not good at that. 
-cp -Rf $ISSM_TIER/bin ./
-cp -Rf $ISSM_TIER/test ./
-cp matlabissm startup.m ./bin
-
-#Now change group and ownership: 
-sudo sh -c "chown -R root ./bin && chgrp -R admin ./bin"
-sudo sh -c "chown -R root ./test && chgrp -R admin ./test"
-
-#Run PackageMaker now, using the ISSM.pmdoc project
Index: sm/trunk-jpl/packagers/macosx/startup.m
===================================================================
--- /issm/trunk-jpl/packagers/macosx/startup.m	(revision 18395)
+++ 	(revision )
@@ -1,45 +1,0 @@
-%STARTUP - Matlab startup script
-%
-%   startup.m is a script run by matlab at the beginning of a session, just
-%   before handing over the prompt to the user. This delivery startup.m script
-%   has been customized here for the ISSM code. This startup script should be
-%   run by users before trying to use ISSM. The best way to do that is to put
-%   the startup file in the location where Matlab starts and established its
-%   root directory.
-
-% clear the last warning to focus on the warnings of the ISSM path
-lastwarn(''); 
-
-%Recover ISSM_TIER , or if on a Windows machine, ISSM_TIER_WIN
-ISSM_TIER=getenv('ISSM_TIER');
-
-if (isempty(ISSM_TIER)),
-	error('issmdir error message: ''ISSM_TIER'' environment variable is empty! You should define ISSM_TIER in your .cshrc or .bashrc!');
-end
-
-%Now add all issm code paths necessary to run issm smoothly. 
-%We capture the error output, so that we can warn the user to update 
-%the variable ISSM_TIER in this file, in case it is not correctly setup. 
-
-%ISSM path
-addpath(pwd); %add current path first
-
-%Check on any warning messages that might indicate that the paths were not correct. 
-if ~isempty(lastwarn),
-	fprintf('\n  Error trying to setup ''ISSM'' code paths. Try and update the ISSM_TIER variable in your .cshrc or .bashrc!\n');
-	fprintf('  ''ISSM'' will not  work at all until this is resolved\n\n');
-else
-	fprintf('\n  To get started with ISSM, type issmdoc at the command prompt.\n\n');
-end
-
-%disable matlab bell!
-beep off;
-
-% no warning if we try to plot while in nojvm (will not be supported in future releases)
-warning off MATLAB:HandleGraphics:noJVM
-
-%at the end, get to tests directory if ISSM_TESTS exists: 
-ISSM_TESTS=getenv('ISSM_TESTS');
-if ~isempty(ISSM_TESTS),
-	cd(ISSM_TESTS);
-end
