<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Urania &#187; Astronomical Software</title>
	<atom:link href="http://iparrizar.mnstate.edu/~juan/urania/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://iparrizar.mnstate.edu/~juan/urania</link>
	<description>A blog named for the muse of Astronomy containing musings by an astronomer</description>
	<lastBuildDate>Fri, 06 Nov 2009 01:44:27 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PGPLOT on Snow Leopard</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2009/10/23/pgplot-on-snow-leopard/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2009/10/23/pgplot-on-snow-leopard/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 19:15:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[MacOS X]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/?p=417</guid>
		<description><![CDATA[One of the packages I use a lot in my research is the venerable PGPLOT package put together by Tim Pearson (currently at Caltech). You see evidence of this set of plotting routines in the figures in many astronomy papers from the 1980s onward. PGPLOT was written in FORTRAN and supports a wide variety of [...]]]></description>
			<content:encoded><![CDATA[<p>One of the packages I use a lot in my research is the venerable <a href="http://www.astro.caltech.edu/~tjp/pgplot/">PGPLOT</a> package put together by Tim Pearson (currently at Caltech). You see evidence of this set of plotting routines in the figures in many astronomy papers from the 1980s onward. PGPLOT was written in FORTRAN and supports a wide variety of drivers to export its graphics, including color postscript, GIF, and Xwindows displays. In addition to using PGPLOT, I use <a href="http://search.cpan.org/~kgb/PGPLOT/">PGPLOT.pm</a>, a perl module for calling PGPLOT from perl scripts written by Karl Glazebrook.  I have used it to make interactive perl scripts for &#8216;marking&#8217; spectral lines in HI spectra among other things.</p>
<p>When I moved to Snow Leopard, I discovered that I could not get PGPLOT.pm compiled against the PGPLOT package that comes with Scisoft OSX and soon realized this was because Perl on my Mac Pro is 64-bit whereas the PGPLOT package included with Scisoft OSX was 32 bit. I decided to compile PGPLOT 64-bit native to try to remedy the problem and on the way discovered a few other issues. Here&#8217;s what I did to get both PGPLOT and PGPLOT.pm working under Snow Leopard (on both 32-bit and 64-bit computers).</p>
<ol>
<li><strong>Install GFORTRAN:</strong> The first thing I did was install <a href="http://gcc.gnu.org/fortran/">Gnu Fortran (aka <em>gfortran</em>)</a> as configured by Gaurav Hanna at the <a href="http://hpc.sourceforge.net/">High Performance Computing for Mac OS X</a> website. It turns out the version he compiled for Snow Leopard (<a href="http://prdownloads.sourceforge.net/hpc/gfortran-snwleo-intel-bin.tar.gz?download">here</a>) is 64-bit Intel ONLY, so for my venerable first generation MacBook Pro, I grabbed the 32-bit Intel Leopard version (<a href="http://prdownloads.sourceforge.net/hpc/gfortran-leopard-intel-bin.tar.gz?download">here</a>), which worked fine in Snow Leopard. Installing them is a simple matter of issuing the proper tar command to unpack the tarball into <code>/usr/local</code>, where all the binaries are installed.
<ul>
<li>
<pre>sudo tar -C / -xzvf gfortran-snwleo-intel.bin.gz</pre> (for the 64-bit Snow Leopard version)</li>
<li>
<pre>sudo tar -C / -xzvf gfortran-leopard-intel.bin.gz</pre> (for the 32-bit Leopard version)</li>
</ul>
<p>Once they are installed, you simply have to make sure <code>/usr/local/bin</code> is in your <code>$PATH</code>.</li>
<li><strong>Install PGPLOT:</strong> I grabbed the PGPLOT source code from Tim Pearson&#8217;s website (<a href="ftp://ftp.astro.caltech.edu/pub/pgplot/pgplot5.2.tar.gz">here</a>) and untarred the tarball into <code>/usr/local/src/pgplot</code>, the default location the code expects to be in (based on the instructions in the <code>install-unix.txt</code> file included in the source code tarball).<br />
<pre>sudo tar -C /usr/local/src/ -xzvf pgplot pgplot5.2.tar.gz</pre></li>
<li><strong>Install sys_macosx configuration:</strong> The PGPLOT source code has various compiler configurations stored in &#8220;configuration directories&#8221; but it doesn&#8217;t come with one for Mac OS X.  The MacPorts folks, when they ported PGPLOT, did create such a configuration.  However, that configuration is hard coded to require <a href="http://sourceforge.net/projects/aquaterm/">AquaTerm</a>, a nice MacOS X native display program that has not been made 64-bit compliant yet.  Furthermore, their version of the configuration requires g77 to compile.  The only g77 I could find was not 6-bit compliant, so I ended up hacking the <code>sys_macosx/</code> configuration directory to include a new <em>gfortran</em> configuration that didn&#8217;t require AquaTerm.  I am making a tarball of that configuration directory available in the <a href="http://iparrizar.mnstate.edu/~juan/urania/wp-content/media/pgplot5.2_macosx_addition.tgz">pgplot5.2_macosx_addition.tgz</a> which you can download and unpack into the PGPLOT source directory using:<br />
<pre>sudo tar -C -xzvf /usr/local/src/pgplot5.2_macosx_addition.tgz</pre><strong>[The above line was edited to fix an error noticed by a commenter. - Juan (Oct. 24, 2009)]</strong></li>
<li><strong>Compile the PGPLOT binaries:</strong> At this point, if you follow the instructions in the <code>install-unix.txt</code> file in the PGPLOT directory you will be fine, baring in mind the configuration you want to use is the &#8220;maxosx gfortran_gcc&#8221; configuration. However, I will outline the steps I used below.
<ol type="a">
<li><strong>Create a PGPLOT library/binary directory:</strong>Create a directory to contain the PGPLOT libraries. I created <code>/usr/local/pgplot</code> using the command:<br />
<pre>sudo mkdir /usr/local/pgplot</pre></li>
<li><strong>Choose the graphics drivers you want:</strong> Copy the drivers.list file from the source directory to this new pgplot directory and edit it to match your needs:<br />
<pre><pre>cd /usr/local/pgplot
sudo cp /usr/local/src/pgplot/drivers.list .
sudo vi drivers.list</pre></pre>(You can replace this last step with emacs or whatever text editor you prefer).  You make a graphics driver part of the compilation by removing the leading exclamation point from the line.  I choose to activate the X-Window drivers,  the GIF drivers (to create GIF images), and the PostScript printer drivers (which you can use to create PostScript versions of plots for publication).  Be aware PNG support requires libpng be installed.</li>
<li><strong>Create the makefile:</strong> We now need to create the makefile using PGPLOT&#8217;s <code>makemake</code> script.  Within the <code>/usr/local/pgplot</code> directory execute:<br />
<pre>sudo /usr/local/src/pgplot/makemake /usr/local/src/pgplot&nbsp;&nbsp;macosx gfortran_gcc</pre>which should result in the following output<br />
<pre><pre>Reading configuration file: /usr/local/src/pgplot/sys_macosx/gfortran_gcc.conf
Selecting uncommented drivers from ./drivers.list
Found drivers GIDRIV NUDRIV PSDRIV XWDRIV
Creating make file: makefile
Determining object file dependencies.</pre></pre></li>
<li><strong>Create all the binaries:</strong> Now you just have to create all the binaries, which is a simple <code>make</code> command:<br />
<pre>sudo make</pre>Assuming everything proceeds without error, you should then see at the end of the output<br />
<pre><pre>*** Finished compilation of PGPLOT ***

Note that if you plan to install PGPLOT in a different
directory than the current one, the following files will be
needed.

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; libpgplot.a
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; libpgplot.dylib
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; grfont.dat
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; rgb.txt
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pgxwin_server

Also note that subsequent usage of PGPLOT programs requires that
the full path of the chosen installation directory be named in
an environment variable named PGPLOT_DIR.</pre></pre>At this point, you should (if you are going to use PGPLOT within perl or C compile the C library as well using<br />
<pre>sudo make cpg</pre>Finally, clean out all the temporary object files, you don&#8217;t need them.  Do this using the makefile by typing<br />
<pre>sudo make clean</pre>If you want to test if things are working you can run one of the PGPLOT demo programs created in this directory.  However, the <code>pgdemo*</code> executables seem hard coded to expect the pgplot libraries in the <code>/usr/local/lib</code> directory, to it might be a good idea to do the following step before trying the demos. <strong>[Edited in response to a comment about the demos not working. - Juan (Oct. 24, 2009)]</strong></li>
<li><strong>Copy library and header files:</strong> This step is optional, but since most programs (including the <code>pgdemo*</code> executables) don&#8217;t look in <code>/usr/local/pgplot</code> for library and header files, I copy them to <code>/usr/local/lib</code> and <code>/usr/local/include</code> respectively using<br />
<pre></pre></li>
</ol>
</li>
<li><strong>Making sure I use <span style="text-decoration: underline;">these</span> PGPLOT binaries:</strong> Since I am using Scisoft OSX, I modified my <code>~/.tcshrc</code> file to change the PGPLOT related environmental variables after loading Scisoft&#8217;s environment<br />
<pre>setenv PGPLOT_DIR /usr/local/pgplot/</pre>.  If you are not using Scisoft, you can place these lines anywhere in your <code>~/.tcshrc</code> file.  If you stick to using bash, then the corresponding lines in the <code>~/.bashrc</code> file that you need to create (after setting up Scisoft, if you are using that) are:<br />
<pre>export PGPLOT_DIR=/usr/local/pgplot/</pre>At this point you have a working PGPLOT set of libraries installed.  You can stop here if you just want to use PGPLOT from C or FORTRAN source code.  If you want to use PGPLOT from within Perl, you need to go further.</li>
<li><strong>Install the ExtUtils:: F77 perl module</strong>: In order to install PGPLOT support, you need to install ExtUtils:F77 first.  You can download <a href="http://search.cpan.org/~kgb/ExtUtils-F77-1.16/">ExtUtils::F77 here</a> and once you untar the tarball,<br />
<pre>tar xzvf ExtUtils-F77-1.16.tar.gz</pre>it can be easily compiled using the following standard perl module compilation steps:<br />
<pre><pre>cd ExtUtils-F77-1.16
perl Makefile.PL
make
sudo make install</pre></pre></li>
<li><strong>Install the PGPLOT perl module</strong>: You can download <a href="http://search.cpan.org/~kgb/PGPLOT-2.20/">PGPLOT here</a>.  Untar the tarball.<br />
<pre>tar xzvf PGPLOT-2.20.tar.gz</pre>We start as we usually do for Perl modules, creating the makefile using the Makefile.PL script:<br />
<pre>cd ExtUtils-F77-1.16</pre>Unfortunately, the <code>Makefile.PL</code> script will create a <code>makefile</code> this creates doesn&#8217;t work because it doesn&#8217;t call <em>gfortran</em> so we have to change the <code>Makefile.PL</code> script to know about <em>gfortran</em>.  So load Makefile.PL and edit the line that reads<br />
<pre>use ExtUtils::F77;</pre>to read<br />
<pre>use ExtUtils::F77 qw{Darwin GFortran};</pre>Once you have done that, create the <code>makefile</code> using<br />
<pre>perl Makefile.PL</pre>Now you still have a problem because this <code>makefile</code> is designed to create a universal binary.  However, depending on which platform you downloaded <em>gfortran</em> for (in step 1), you only have 64-bit intel or 32-bit intel support.  So you have to delete all mentions of<br />
<pre>-arch ppc</pre>from the <code>makefile</code> as well as removing<br />
<pre>-arch i386</pre>if you are compiling on a 64-bit system or<br />
<pre>-arch x86_64</pre>if you are compiling on a 32-bit system.  Once you have done that, you can finish installing the perl module using:<br />
<pre><pre>make
make test
sudo make install</pre></pre>I did have some issues with <code>make test</code> because it couldn&#8217;t find my X-windows driver due to a bad environment, but the compile reported no errors and I was able to get the <code>make test</code> to work once I had the proper environmental variable settings for <code>PGPLOT_DIR</code> (see step 5).</li>
</ol>
<p>So that is it, I now have working PGPLOT installations with perl support on both my 32-bit MacBook Pro and my 64-bit Mac Pro.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2009/10/23/pgplot-on-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Scisoft OSX 2009.10.1 released</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2009/10/01/scisoft-osx-2009-10-1-released/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2009/10/01/scisoft-osx-2009-10-1-released/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 22:49:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[IRAF]]></category>
		<category><![CDATA[SciSoft OSX]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2009/10/01/scisoft-osx-2009-10-1-released/</guid>
		<description><![CDATA[Nor Pirzkal has released another minor update to Scisoft OSX. He states in his blog that:
A minor revision of Scisoft is available for downloading. Many people are experiencing many problems with the Apple Package Installer and I am distributing this release as a simple tar.gz file.
This version of Scisoft is distributed as a simple tar [...]]]></description>
			<content:encoded><![CDATA[<p>Nor Pirzkal has released another minor update to <a href="http://web.mac.com/npirzkal/Scisoft/Scisoft.html">Scisoft OSX</a>. He <a href="http://web.mac.com/npirzkal/Scisoft/News/Entries/2009/10/1_Scisoft_OSX_Intel_2009.10.1_Released.html">states</a> in his blog that:</p>
<blockquote><p>A minor revision of Scisoft is available for downloading. Many people are experiencing many problems with the Apple Package Installer and I am distributing this release as a simple tar.gz file.</p>
<p>This version of Scisoft is distributed as a simple tar file that can be un-tarred in /. Scisoft expect to be located in <span style="font-family: monospace;">/Applications/scisoft/</span></p></blockquote>
<p>I can confirm the <code>CONTENTS</code> file distributed with the install is identical to the file for <a href="http://iparrizar.mnstate.edu/~juan/urania/2009/09/16/scisoft-osx-2009-9-1-released/">Scisoft 2009.9.1</a> so this release may just be a way to avoid some issues with the Apple Package Installer program.</p>
<p>This change to a tarball format is good, but it changes how to install the software. However, there is at least one major glitch in this distribution</p>
<ul>
<li>WCSTools is missing from the installation! There are symbolic links to the package, but the <code>/Application/scisoft/i386/Packages/wcstools-3.7.3/</code> directory is empty! If you are upgrading from a previous version of Scisoft OSX, there is an easy way to recover from this problem. I am outlining my suggested installation routine below.</li>
<li>As I noted for <a href="http://iparrizar.mnstate.edu/~juan/urania/2009/09/16/scisoft-osx-2009-9-1-released/">Scisoft 2009.9.1</a>, &#8220;on Snow Leopard, Gordon Richards discovered that if you attempt ‘import pylab’ in python, you get a bus error. I can confirm the same error occurs on my Snow Leopard machine using either this SciSoft OSX release or the previous one. Furthermore, I can confirm the error <strong>DOES NOT</strong> occur in Leopard. I am not a heavy Python user, so I will leave it to Gordon, Nor, and others to investigate this issue. Gordon notes that <a style="text-decoration: none; color: #c00000; padding: 0px; margin: 0px;" href="http://blog.hyperjeff.net/?p=160">this blog posting</a> contains instructions for getting pylab installed under a vanilla Snow Leopard install, in case you need them.&#8221;</li>
</ul>
<p>My <strong>suggested routine for upgrading</strong> to this version of Scisoft OSX from a previous version is the following:</p>
<ol>
<li>Backup the previous version of Scisoft by renaming the <code>/Application/scisoft/</code> directory to <code>/Application/scisoft_old/</code>.</li>
<li>Download the current gzipped tarball of Scisoft OSX. The current version of Scisoft OSX is available for download from the <a href="http://web.mac.com/npirzkal/Scisoft/Scisoft.html">Scisoft OSX</a> website, but I have made the package available on my <a href="http://iparrizar.mnstate.edu/~juan/urania/scisoft-osx-download/">Scisoft OSX mirror</a> as well, in case it is faster for people.</li>
<li>Using the command line in an administrative account, you can untar the tarball using the command:<pre>sudo tar -C / -xzvf Scisoft_OSX_macintel_2009.10.1.tar.gz</pre>You will be asked for your account password to allow &#8217;sudo&#8217; to run the tar command as root.
</li>
<li>The files are untarred with their ownership intact from when Nor created the tarball, so be sure to change the ownership to match your root account using<br />
<pre>sudo chown -R root:admin /Applications/scisoft/</pre>
</li>
<li>Finally, if you want to copy over the WCStools package from the previous Scisoft OSX installation, you can use the command:<pre>sudo cp -r -p /Applications/scisoft_old/i386/Packages/wcstools-3.7.3/ /Applications/scisoft/i386/Packages/wcstools-3.7.3/</pre>That should get your back the WCStools.</li>
</ol>
<p>I have alerted Nor to the missing wcstools directory as well as some other minor issues with this release. Hopefully, if Nor has some time, he will make</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2009/10/01/scisoft-osx-2009-10-1-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Scisoft OSX 2009.9.1 released</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2009/09/16/scisoft-osx-2009-9-1-released/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2009/09/16/scisoft-osx-2009-9-1-released/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 17:37:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[SciSoft OSX]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2009/09/16/scisoft-osx-2009-9-1-released/</guid>
		<description><![CDATA[Nor Pirzkal has released a minor update to Scisoft OSX. He states in his blog that:

  This version should fix a few outstanding bugs in version 2009.6.1. People running on case sensitive file system will hopefully stopped having problems. This version otherwise upgrades a few minor packages as described in the NEWS and CONTENTS [...]]]></description>
			<content:encoded><![CDATA[<p>Nor Pirzkal has released a minor update to <a href="http://web.mac.com/npirzkal/Scisoft/Scisoft.html">Scisoft OSX</a>. He states in his blog that:</p>
<blockquote><p>
  This version should fix a few outstanding bugs in version 2009.6.1. People running on case sensitive file system will hopefully stopped having problems. This version otherwise upgrades a few minor packages as described in the NEWS and CONTENTS files.</p>
<p>  This version requires OSX Intel 10.5.x or higher. It also works fine with OSX 10.6.0 and OSX 10.6.1.
</p></blockquote>
<p>From reviewing the <code>CONTENTS</code> file distributed with the install, the major changes from the <a href="http://iparrizar.mnstate.edu/~juan/urania/2009/05/15/scisoft-osx-200952-released/">previous version</a> as as he indicated, quite minor. They include:</p>
<ul>
<li>The following <a href="http://www.python.org/">Python</a> packages were updated:</li>
<li style="list-style: none">
<ul>
<li><a href="http://matplotlib.sourceforge.net/">matplotlib</a> 0.99 (upgraded from version 0.98.5.2)</li>
<li><a href="http://www.stsci.edu/resources/software_hardware/pyraf">pyraf</a> 1.8 (upgraded to the current release version from version 1.7.1)</li>
<li><a href="http://pygsl.sourceforge.net/">pygsl</a> 0.9.4 (upgraded from version 0.9.3)</li>
<li><a href="http://www.egenix.com/products/python/mxBase/mxDateTime/">mxDateTime</a> 3.1.2 was added to the distribution. Adds certain useful date manipulation functions to the python installation.</li>
<li><a href="http://code.google.com/p/python-sao/">pysao</a> 2.1.8 was added to the distribution. This appears to add direct XPA communication capability between python scripts and <a href="http://hea-www.harvard.edu/RD/ds9/">SAOImage DS9.</a></li>
</ul>
</li>
</ul>
<ul>
<li>The <a href="http://www.gnu.org/software/gsl/">gsl</a> library was update from version 1.11 to 1.13.</li>
<li>[From NEWS file] Changed <a href="http://hea-www.harvard.edu/RD/ds9/">ds9</a> [command line] unix version a [symbolic] link from an alias. I noticed the SAOImage DS9 website currently says &#8220;Note: the next release of DS9, version 5.7, will be available October 15th.&#8221;</li>
<li>[From NEWS file] Fixed references to &#8220;packages&#8221; to &#8220;Packages&#8221; in Setup scripts</li>
</ul>
<p>The glitches I have noticed in this distribution</p>
<ul>
<li>As with previous versions, the installer for Scisoft OSX (due to bugs, apparently in Apple&#8217;s installer.app) changes the ownership of /Applications after the install. I would run Disk Utility and Fix the Permissions on your root volume after installing Scisoft OSX.</li>
<li><strong>[Added Sept. 23]</strong> Gordon Richards and I have have been investigating some serious annoyances with the python installation on Snow Leopard in this version of SciSoft OSX.
<ol>
<li> First of all, the installer apparently doesn&#8217;t install <code>/Applications/scisoft/i386/Packages/Python-2.5.4/Python.framework/Versions/2.5/Resources/Python.app/</code> when running on Snow Leopard. This directory contains the python executable.  Therefore, in the new SciSoft OSX on Snow Leopard, you can&#8217;t run python from the clean install.  If you manually copy this directory from the previous SciSoft OSX installation to this one, then I find you can run python again (or in my case, pyraf).  I can confirm this directory is apparently installed under Leopard.</li>
<li>On Snow Leopard, Gordon Richards discovered that if you attempt &#8216;import pylab&#8217; in python, you get a bus error.  I can confirm the same error occurs on my Snow Leopard machine using either this SciSoft OSX release or the previous one.  Furthermore, I can confirm the error <strong>DOES NOT</strong> occur in Leopard. I am not a heavy Python user, so I will leave it to Gordon, Nor, and others to investigate this issue.  Gordon notes that <a href="http://blog.hyperjeff.net/?p=160">this blog posting</a> contains instructions for getting pylab installed under a vanilla Snow Leopard install, in case you need them.</li>
</ol>
</li>
</ul>
<p>The current version of Scisoft OSX is available for download from the <a href="http://web.mac.com/npirzkal/Scisoft/Scisoft.html">Scisoft OSX</a> website, but I have made the package available on my <a href="http://iparrizar.mnstate.edu/~juan/urania/scisoft-osx-download/">Scisoft OSX mirror</a> as well, in case it is faster for people.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2009/09/16/scisoft-osx-2009-9-1-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Scisoft OSX 2009.6.1 Released</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2009/06/05/scisoft-osx-200961-released/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2009/06/05/scisoft-osx-200961-released/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 15:56:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[SciSoft OSX]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2009/06/05/scisoft-osx-200961-released/</guid>
		<description><![CDATA[Nor Pirzkal has apparently been busy fixing the issues I noted in last month&#8217;s release of Scisoft OSX given his blog entry:

  Scisoft OSX Intel 2009.6.1 Released
  This version updates the STSDAS/TABLES packages and a few other packages.
  It also fixes the issues pointed out by J. Cabanela

The new version of Scisoft [...]]]></description>
			<content:encoded><![CDATA[<p>Nor Pirzkal has apparently been busy fixing the issues I noted in last month&#8217;s release of <a href="http://web.mac.com/npirzkal/Scisoft/Scisoft.html">Scisoft OSX</a> given his <a href="http://web.mac.com/npirzkal/Scisoft/News/Entries/2009/6/4_Scisoft_OSX_Intel_2009.6.1_Released.html">blog entry</a>:</p>
<blockquote><p>
  <strong>Scisoft OSX Intel 2009.6.1 Released<br /></strong><br />
  This version updates the STSDAS/TABLES packages and a few other packages.<br />
  It also fixes the issues pointed out by J. Cabanela
</p></blockquote>
<p>The new version of Scisoft OSX 2009.6.1 differs from <a href="http://iparrizar.mnstate.edu/~juan/urania/2009/05/15/scisoft-osx-200952-released/">Scisoft OSX 2009.5.2</a> in the following ways:</p>
<ul>
<li><a href="http://astromatic.iap.fr/software/stiff/">Stiff</a> was updated from version 1.10 to version 1.12</li>
<li><a href="http://heasarc.gsfc.nasa.gov/ftools/fv">HEASARC fv.app</a> was updated from version 5.1 to version 5.2.1 and properly installed.</li>
<li><a href="http://heasarc.gsfc.nasa.gov/hera/">HEASARC hera.app</a> was updated from version 5.1 to version 5.2.1 and properly installed.</li>
<li><a href="http://heasarc.gsfc.nasa.gov/hera/">HEASARC StudentHera.app</a> was updated from version 5.1 to version 5.2.1 and properly installed.</li>
<li><a href="http://hea-www.harvard.edu/RD/ds9/">SAOImage DS9</a> was updated to version 5.6.3 from version 5.3b.</li>
<li>Interestingly, the <a href="http://www.stsci.edu/resources/software_hardware/stsdas">STSDAS</a> and <a href="http://www.stsci.edu/resources/software_hardware/stsdas">TABLES</a> <a href="http://www.iraf.net/">IRAF</a> packages are still version 3.10, so I am not sure what updates Nor refers to above for STSDAS/TABLES.</li>
</ul>
<p>The only glitch I noticed is that permissions problems persist. Specifically, when the installer installs Scisoft OSX, it appears that a bug in Apple’s Installer program triggers a change in ownership of the /Applications directory to that of the second user on the system. I strongly suggest checking the ownership of the /Applications directory afterward and if isn’t owned by an administrative user, set it as such using:</p>
<p><code>sudo chown username:admin /Applications</code></p>
<p>(where “username” is the primary administrator&#8217;s username, in most cases, your username) to perform the repair. I know Nor spent a bit of time trying to resolve this without success last summer, so its a glitch that will probably persist.</p>
<p>I also have a minor gripe. This is not a bug, so much a feature I prefer. I like having the X11 command-line version of ds9 available, so I manually installed the current ds9 command line binary into <code>/Applications/scisoft/i386/bin/</code>.</p>
<p>The current version of Scisoft OSX is available for download from the <a href="http://web.mac.com/npirzkal/Scisoft/Scisoft.html">Scisoft OSX</a> website (or will be shortly) and I have made the package available on my <a href="http://iparrizar.mnstate.edu/~juan/urania/scisoft-osx-download/">Scisoft OSX mirror</a> as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2009/06/05/scisoft-osx-200961-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>XQuartz on MacOS X for the Astronomer</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2009/05/28/xquartz-on-macos-x-for-the-astronomer/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2009/05/28/xquartz-on-macos-x-for-the-astronomer/#comments</comments>
		<pubDate>Thu, 28 May 2009 22:10:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[MacOS X Annoyances]]></category>
		<category><![CDATA[X11]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2009/05/28/xquartz-on-macos-x-for-the-astronomer/</guid>
		<description><![CDATA[When I first started this blog, I was using Apple&#8217;s built-in X11, but then with the transition to MacOS 10.5, there were some serious issues with Apple&#8217;s X11 implementation having to do with the transition from X11R6 to X.org. One of Apple&#8217;s programmers started putting out bleeding-edge updates to Apple&#8217;s X11 called XQuartz that fixed [...]]]></description>
			<content:encoded><![CDATA[<p>When I first started this blog, I was using Apple&#8217;s built-in X11, but then with the transition to MacOS 10.5, there were some serious issues with Apple&#8217;s X11 implementation having to do with the transition from X11R6 to X.org. One of Apple&#8217;s programmers started putting out bleeding-edge updates to Apple&#8217;s X11 called <a href="http://xquartz.macosforge.org/">XQuartz</a> that fixed a lot of the programs and I have kept using it ever since.</p>
<p>Two years ago, I wrote a blog entry with <a href="http://iparrizar.mnstate.edu/~juan/urania/2007/08/01/some-x11-on-macos-x-hints/">hints for setting up X11 for the astronomer.</a> The problem is that while the hints in that writeup are still valid, they don&#8217;t work if you are using Xquartz because the preferences are stored in a different location for <a href="http://xquartz.macosforge.org/">XQuartz</a> versus the built-in <a href="http://developer.apple.com/opensource/tools/X11.html">X11</a>. As such, I am reproducing those X11 hints here, but with the edits necessary for use with <a href="http://xquartz.macosforge.org/">XQuartz</a>.</p>
<p>Once you have installed XQuartz, the <code>X11.app</code> should automatically launch when a program that needs X11 is executed (If you are an old hand at X11, you probably discovered since moving to Leopard that <a href="http://iparrizar.mnstate.edu/~juan/urania/2007/11/25/leopard-issues-for-the-astronomer-aka-im-not-sure-x11-is-better/">you should NOT set the <code>DISPLAY</code> variable to :0</a> to display an Xwindow on your primary display, just leave <code>DISPLAY</code> undefined.):</p>
<ol>
<li>There are many hidden preferences in XQuartz just like in many Mac Applications. You can see a list of the hidden (and not hidden) preferences using the command line tool <code>defaults</code>. To see the available XQuartz preferences, type:<code>defaults read org.X.x11</code><strong>NOTE:</strong> If you are still using Apple&#8217;s built-in X11 implementation (or if you are using MacOS 10.4), just replace &#8216;<code>org.x.X11</code>&#8217; with &#8216;<code>com.apple.x11</code>&#8217; in all the following hints.</li>
<li>In addition to “reading” the preferences, you can write to them. From the command line you can type:
<ul>
<li><code>defaults write org.X.x11 no_quit_alert true</code><br />
This allows X11 to quit without an alert box. Useful if you find it irritating like I do that X11 will prevent me from logging out or the computer from restarting due to that dialog box. However, this does mean you can accidentally quit <code>X11.app</code> pretty easily if you hit cmd-Q at the wrong time.</li>
<li><code>defaults write org.X.x11 wm_ffm true</code><br />
Allows which X11 window is selected to follow the mouse, which is the way X11 behaves under most *nix systems by default.</li>
<li><code>defaults write org.X.x11 wm_click_through -bool true</code><br />
This activates click_thorough events in the Quartz window manager, which allows clicks to pinned windows, another behavior common to *nix X11 installations.</li>
</ul>
</li>
<li>You can control which window manager is launched (if you prefer something other than the quartz-wm used by default). If you don&#8217;t have a <code>~/.xinitrc</code> file, copy the default one:<br />
<pre>cp /private/etc/X11/xinit/xinitrc ~/.xinitc</pre><br />
and then manipulate it with any text editor.</li>
<li><strong>BIG LAPTOP USER HINT:</strong> Because XQuartz on the Macintosh uses authentication to prevent connections from unauthorized sources to the X11 client, something interesting happens when you change IP address, you will discover you can&#8217;t use <code>X11.app</code> from the MacOS X Terminal until you quite and relaunch <code>X11.app</code>. This happens to me all the time on my laptop when I travel and the IP address changes. I recommend either using the Xterm as your terminal or just get used to restarting X11 if you have problems connecting to the terminal.</li>
<li>You can run X11 remotely on your Mac, if you can ssh into your Mac, then just use<br />
<pre>ssh -Y youraccount@yourcomputer.com</pre><br />
, the -Y flag should allow you to run X11 remotely as long as <code>X11.app</code> is running on your machine before the connection is made. If your ssh on the remote machine doesn&#8217;t support X11 connections and you have admin access, you can edit the file <code>/etc/sshd_config</code> on the remote machine and make sure X11 Forwarding is turned on by looking for the following lines and making sure they are uncommented and that all “no”&#8217;s are set to “yes”:<br />
<pre><pre>X11Forwarding yes
X11DisplayOffset 10
X11UseLocalhost yes</pre></pre>
</li>
</ol>
<p>And that is it for the hints for now.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2009/05/28/xquartz-on-macos-x-for-the-astronomer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scisoft OSX 2009.5.2 Released</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2009/05/15/scisoft-osx-200952-released/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2009/05/15/scisoft-osx-200952-released/#comments</comments>
		<pubDate>Fri, 15 May 2009 21:31:02 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[SciSoft OSX]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2009/05/15/scisoft-osx-200952-released/</guid>
		<description><![CDATA[This first Scisoft OSX release of 2009 has appeared. Despite the brief entry on the VersionTracker website which said that this update rolled in the recently released STSDAS and TABLES IRAF package updates. from reviewing the CONTENTS file distributed with the install, I found Nor Pirzkal made quite a few additional updates in this release. [...]]]></description>
			<content:encoded><![CDATA[<p>This first <a href="http://web.mac.com/npirzkal/Scisoft/Scisoft.html">Scisoft OSX</a> release of 2009 has appeared. Despite the brief entry on the VersionTracker website which said that this update rolled in the recently released STSDAS and TABLES IRAF package updates. from reviewing the <code>CONTENTS</code> file distributed with the install, I found Nor Pirzkal made quite a few additional updates in this release. The changes from <a href="http://iparrizar.mnstate.edu/~juan/urania/2008/09/23/scisoft-osx-intel-200891-released/">Scisoft OSX 2008.9.1</a> are:</p>
<ul>
<li><a href="http://www.eclipse.org/">Eclipse</a> 5.0.0 has been added to the distribution. Eclipse is an Integrated Development Environment (IDE) for programming. I don&#8217;t find it to be terribly useful, and in fact find it fairly awful in its implementation for IDL, but I am sure there are many people who disagree (enough to foster development of five major versions of it).</li>
<li><a href="http://www.gnuplot.info/">Gnuplot</a> has been updated to version 4.2.5 from 4.2.3</li>
<li><a href="http://astromatic.iap.fr/software/eye/">Eye</a> 1.4.1 has been added to the distribution. Eye is a program designed to allow you to use an artificial neural network to construct SExtractor filters for &#8220;adaptive filtering, feature detection and cosmetic corrections.&#8221;</li>
<li><a href="http://astromatic.iap.fr/software/swarp/">Swarp</a> was updated to 2.17.6 from 2.17.1</li>
<li><a href="http://astromatic.iap.fr/software/weightwatcher/">WeightWatcher</a> was updated to 1.8.10 from 1.8.7</li>
<li>The <a href="http://www.python.org/">Python</a> distribution was updated to version 2.5.4 from 2.5.2 and the following python packages were updated:
<ul>
<li><a href="http://ipython.scipy.org/moin/">ipython</a> updated to 0.9.1 from 0.8.4</li>
<li><a href="http://numpy.scipy.org/">Numpy</a> updated to 1.3 from 1.1.1</li>
<li><a href="http://www.stsci.edu/resources/software_hardware/pyfits">pyfits</a> updated to 2.1.1 from 1.1 (or this could be a typo in the old CONTENTS)</li>
<li><a href="http://matplotlib.sourceforge.net/">matplotlib</a> updated to 0.98.5.2 from 0.98.3</li>
<li><a href="http://www.stsci.edu/resources/software_hardware/pyraf">pyraf</a> updated to 1.7.1 from 1.6</li>
<li><a href="http://www.stsci.edu/resources/software_hardware/pyraf/stsci_python">stsci_python</a> updated to 2.8 from 2.6</li>
<li><a href="http://www.stecf.org/software/PYTHONtools/astroasciidata/">AstroAsciiData</a> updated to 1.1 from 1.0</li>
<li><a href="http://www.scipy.org/">scipy</a> updated to 0.7.0 from 0.6.0</li>
</ul>
</li>
<li>The <a href="http://www.stsci.edu/resources/software_hardware/stsdas">STSDAS</a> and <a href="http://www.stsci.edu/resources/software_hardware/stsdas">TABLES</a> <a href="http://www.iraf.net/">IRAF</a> packages were updated to version 3.10 from 3.08</li>
<li><a href="http://www.fftw.org/">fftw</a> library version 3.2.1 added. This will be useful to me since we have been using fftw in the computational physics class I have been teaching this semester.</li>
<li>I noticed the <a href="http://sourceforge.net/projects/aquaterm/">Aquaterm.app</a> application (used for graphics display by PGPLOT and Gnuplot) is now pre-installed in <code>/Applications/scisoft/i386/Applications/</code>.</li>
</ul>
<p>Some minor glitches I have noticed in this distribution</p>
<ol>
<li><strong>Permission Problems Persist:</strong> When the installer installs Scisoft OSX, it appears that a bug in Apple’s Installer program triggers a change in ownership of the /Applications directory to that of the second user on the system. I strongly suggest checking the ownership of the /Applications directory afterward and if isn’t owned by an administrative user, set it as such using: <code>sudo chown username:admin /Applications</code> (where “username” is the primary administrator&#8217;s username, in most cases, your username) to perform the repair. I know Nor spent a bit of time trying to resolve this without success last summer, so its a glitch that will probably persist.</li>
<li><strong>Older SAOImage DS9 included:</strong> I noticed that the <a href="http://hea-www.harvard.edu/RD/ds9/">SAOImage DS9</a> distributed with this version of Scisoft OSX is version 5.3b, whereas the current version is 5.6.1, so I manually installed the current ds9 command line binary into <code>/Applications/scisoft/i386/bin/</code> and the current Aqua application into <code>/Applications/scisoft/i386/Applications/</code> and everything is working fine there.</li>
<li><strong>HEASARC fv.app not installed</strong>: The <code>fv.app</code> application in the <code>/Applications/scisoft/i386/Applications/</code> is actually a second copy of <code>studenthera.app</code>, misnamed. Not sure how that happened, but I manually installed the current version of <a href="http://heasarc.gsfc.nasa.gov/ftools/fv">HEASARC fv.app</a> there without an issue.</li>
</ol>
<p>All in all, a bunch of small updates, but it gets the package mostly up-to-date again. The current version of Scisoft OSX is available for download from the <a href="http://web.mac.com/npirzkal/Scisoft/Scisoft.html">Scisoft OSX</a> website, but I have made the package available on my <a href="http://iparrizar.mnstate.edu/~juan/urania/scisoft-osx-download/">Scisoft OSX mirror</a> as well, in case it is faster for people.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2009/05/15/scisoft-osx-200952-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>X11 Updated, but requires unavailable OS X release!</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2009/04/24/x11-updated-but-requires-unavailable-os-x-release/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2009/04/24/x11-updated-but-requires-unavailable-os-x-release/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 14:18:24 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[X11]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2009/04/24/x11-updated-but-requires-unavailable-os-x-release/</guid>
		<description><![CDATA[I just noticed that the XQuartz folks released X11 2.3.3, but when I attempted to install it, it said I needed Mac OS 10.5.7 installed, which hasn&#8217;t been released yet. I have confirmed this on the release notes page. The full release notes seem to describe to major changes, updated support for OpenGL and some [...]]]></description>
			<content:encoded><![CDATA[<p>I just noticed that the <a href="http://xquartz.macosforge.org/">XQuartz</a> folks released <a href="http://static.macosforge.org/xquartz/downloads/X11-2.3.3.dmg">X11 2.3.3</a>, but when I attempted to install it, it said I needed Mac OS 10.5.7 installed, which hasn&#8217;t been released yet. I have confirmed this on the <a href="http://xquartz.macosforge.org/trac/wiki/X112.3.3">release notes page</a>. The full release notes seem to describe to major changes, updated support for OpenGL and some bug fixes regarding Caps Lock and mouse tracking.</p>
<p>Interestingly, the XQuartz wiki notes that</p>
<blockquote>
<p>[MacOS] 10.5.7 updates the X11 server to match what shipped with 2.3.2. Most of the userland, however, only saw security updates. The version reported by X11 in 10.5.7 is 2.1.6 to distinguish it from the 2.3.x series which contains a much newer userland.</p>
</blockquote>
<p>I have the feeling that the update to MacOS 10.5.7 will be released very soon now.</p>
<blockquote><p>[<strong>UPDATE:</strong> In fact, it took almost two weeks, but MacOS 10.5.7 was released on Tuesday, May 12, 2009.]</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2009/04/24/x11-updated-but-requires-unavailable-os-x-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>X11 for Leopard now supporting Full Screen</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2009/03/30/x11-for-leopard-now-supporting-full-screen/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2009/03/30/x11-for-leopard-now-supporting-full-screen/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 23:21:14 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[MacOS X Annoyances]]></category>
		<category><![CDATA[X11]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2009/03/30/x11-for-leopard-now-supporting-full-screen/</guid>
		<description><![CDATA[There are some older school astronomers on Macs who cut their teeth on Linux and as such really prefer the full-screen X-Windows display for running astronomical data reductions. This way of running X11 has been unavailable since MaxOS 10.5 (which switched from X11 code bases). Well, to quote Macros Huerta&#8217;s MacSingularity Blog:

Well, I’m way late [...]]]></description>
			<content:encoded><![CDATA[<p>There are some older school astronomers on Macs who cut their teeth on Linux and as such really prefer the full-screen X-Windows display for running astronomical data reductions. This way of running X11 has been unavailable since MaxOS 10.5 (which switched from X11 code bases). Well, to quote <a href="http://macsingularity.org/2009/03/27/x11-supports-full-screen/">Macros Huerta&#8217;s MacSingularity Blog</a>:</p>
<blockquote>
<p>Well, I’m way late to the game on this, but our long national nightmare is over &#8211; Xquartz for Leopard support full screen!</p>
</blockquote>
<p>The <a href="http://xquartz.macosforge.org/trac/wiki">Xquartz</a> folks latest edition of Xquartz (<a href="http://xquartz.macosforge.org/trac/wiki/X112.3.2.1">version 2.3.2.1</a>) includes full-screen support. Now, personally, I like the way X11 integrates with Aqua, but for those who prefer to use only one windowing system at a time, you can now do it on MacOS X Leopard. You can <a href="http://xquartz.macosforge.org/downloads/X11-2.3.2.1.dmg">download it here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2009/03/30/x11-for-leopard-now-supporting-full-screen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Papers for iPod (and Mac)</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2009/02/20/papers-of-for-ipod-and-mac/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2009/02/20/papers-of-for-ipod-and-mac/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 16:40:43 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[MacOS X]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2009/02/20/papers-of-for-ipod-and-mac/</guid>
		<description><![CDATA[I have been a very happy user of Papers for organizing downloaded Journal articles for about a year. The program, by the Dutch software firm Mekentosj BV, makes it easy to search for journal articles on ADS and arXiv (although the arXiv support seems a bit twitchy at times), download them, and place them into [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://iparrizar.mnstate.edu/~juan/urania/wp-content/media/icon-glow.jpg" width="114" height="114" alt="icon_glow.jpg" style="float:right;" />I have been a very happy user of <a href="http://mekentosj.com/papers/">Papers</a> for organizing downloaded Journal articles for about a year. The program, by the Dutch software firm <a href="http://mekentosj.com/">Mekentosj BV</a>, makes it easy to search for journal articles on ADS and arXiv (although the arXiv support seems a bit twitchy at times), download them, and place them into a searchable database. The program does occasionally show is roots as a biomedical oriented tool, but it functions very well for this astronomer.</p>
<p>Yesterday Mekentosj released version 1.9 of <a href="http://mekentosj.com/papers/">Papers</a> for the Mac as well as a new <a href="http://mekentosj.com/papers/iphone">iPod Touch/iPhone based version of their software</a> (<a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=304655618">Apple iTunes store link</a>) I have purchased it and can confirm that the synchronization works as advertised, I am now carrying all the papers I have read in the last 10 years in my shirt pocket. Nice!</p>
<p>Here’s the (slightly edited to reflect stuff of interest to astronomers) press release from Mekentosj</p>
<blockquote>
<p><strong>Papers 1.9 for Mac &#8211; sync your library of science with your iPhone</strong> &#8211; Published on 02/19/09</p>
<p>  IMMEDIATE RELEASE</p>
<p>  Mekentosj BV has announced Papers 1.9, the Apple design award-winning application that helps scientists on the Mac manage their personal library of scientific articles. The free update brings over 60 improvements, including an improved workflow for working with collections, support for French and German library proxies. But most of all, it allows you to synchronize your PDF library with the newly introduced Papers for iPhone and iPod touch.</p>
<p>  Aalsmeer, The Netherlands &#8211; Mekentosj BV has announced Papers 1.9, the Apple design award-winning application that helps scientists on the Mac manage their personal library of scientific articles. The free update brings over 60 improvements, including a better workflow for working with collections, and support for French and German library proxies. But most of all, it allows you to synchronize your PDF library with the newly introduced Papers for iPhone and iPod touch.</p>
<p>  With Papers 1.9 mek and tosj continue to improve the user experience and workflows of their popular PDF organizing tool for researchers. And with the ability to synchronize your library with the newly introduced Papers for iPhone and iPod touch it becomes easier than ever to manage your research literature, and now you have it with you wherever you go.</p>
<p>  Papers for Mac and Papers for iPhone work together as a great team. Select which collections you want to keep in sync or make use of the smart auto-fill function to fill up your iPhone or iPod with articles based on the criteria that you choose. And if you make changes, or add ratings and notes, or if you download new articles on the road, the next time you sync with Papers on your Mac all those changes are immediately present in your library. It’s that simple. Visit our web site for a screencast to find out more.</p>
<p>  <strong>Papers Features:</strong><br />
  * organize and manage your entire library of scientific PDF files easily and elegantly<br />
  * built-in support for searching online article repositories<br />
  * built-in webbrowser for browsing publisher websites<br />
  * automatic downloading and archiving of PDF files<br />
  * tabbed and fullscreen reading of your PDF files<br />
  * razor fast spotlight searching of your entire library<br />
  * Syncing with the new Papers for iPhone and iPod touch.<br />
  * and much more.</p>
<p>  <strong>Papers has built-in support for the following online repositorie</strong>s:<br />
  * ACM portal &#8211; Computer science<br />
  <strong>* NASA-ADS &#8211; Astronomy<br /></strong> <strong>* arXiv &#8211; Preprint repository</strong><br />
  * Citeseer &#8211; Computer Science<br />
  * Google Books<br />
  * Google Scholar<br />
  * IEEE Xplore &#8211; Engineering<br />
  * MathSciNet &#8211; Mathematics<br />
  * Scopus &#8211; All sciences NEW<br />
  * Web of Science &#8211; All sciences</p>
<p>  <strong>Minimum Requirements:</strong><br />
  * Mac OS X Version 10.4 or higher<br />
  * Universal Binary for PowerPC and Intel<br />
  * 1.5 Ghz or faster G4, G5 or Intel Processor</p>
<p>  <strong>Pricing and Availability:</strong><br />
  Papers is priced at $42 (USD) for a single-user license. (Under)graduate students can apply for a 40% discount. A 30-day trial is available.</p>
<p>  <strong>About Papers for iPhone:</strong><br />
  Papers for iPhone and iPod touch puts your entire research literature database in your pocket, available at your fingertips wherever you go; whether you’re at a conference, in class, visiting your peers, or on the road. To celebrate the launch of Papers for iPhone and iPod touch you can now buy version 1.0 for the introductory price of $9.99 (USD) in the iTunes app store.</p>
<p>  Papers is a program made by Mekentosj BV, a Dutch independent software company that writes innovative software for scientists. After a PhD in Cell Biology founder and CEO Alexander Griekspoor switched fields and initially joined the European Bioinformatics institute as a Marie Curie postdoctoral fellow. Alexander is perhaps most well-known as “Mek” from the duo “Mekentosj”. Together with his friend Tom “Tosj” Groothuis he developed a number of scientific Mac applications, two of which won Apple Design Awards for best Best Student and Best scientific Mac OS X application, respectively. What started in his spare time became his passion and has now also become his work: Mekentosj Inc. He aims to create new and innovative Mac OS X applications for scientists, of which his recently released new program Papers is a prime example, it won Mekentosj’ third Apple Design Award. Visit our website to learn more.</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2009/02/20/papers-of-for-ipod-and-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAOImage DS9 5.4 Released</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2008/10/31/saoimage-ds9-54-released/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2008/10/31/saoimage-ds9-54-released/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 16:55:51 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[IRAF]]></category>
		<category><![CDATA[MacOS X]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2008/10/31/saoimage-ds9-54-released/</guid>
		<description><![CDATA[Fast on the heals of their release of version 5.3 about two weeks ago, the folks at the SAO have released version 5.4 of SAOImage DS9. Here are the links to the downloadable Mac-related SAOImage files

Aqua 10.4 Tiger (Universal)
Aqua 10.5 Leopard (Universal)
X11 10.4 Tiger (Universal)
X11 10.5 Leopard (Universal)
X11 10.5 Leopard (Universal) with Firewall

The release notes [...]]]></description>
			<content:encoded><![CDATA[<p>Fast on the heals of their release of version 5.3 about two weeks ago, the folks at the <a href="http://cfa-www.harvard.edu/sao/">SAO</a> have released version 5.4 of <a href="http://hea-www.harvard.edu/saord/ds9/">SAOImage DS9</a>. Here are the links to the downloadable Mac-related SAOImage files</p>
<ul>
<li><a href="http://hea-www.harvard.edu/saord/ds9/">Aqua 10.4 Tiger (Universal)</a></li>
<li><a href="http://hea-www.harvard.edu/saord/ds9/">Aqua 10.5 Leopard (Universal)</a></li>
<li><a href="http://hea-www.harvard.edu/saord/ds9/">X11 10.4 Tiger (Universal)</a></li>
<li><a href="http://hea-www.harvard.edu/saord/ds9/">X11 10.5 Leopard (Universal)</a></li>
<li><a href="http://hea-www.harvard.edu/saord/ds9/">X11 10.5 Leopard (Universal) with Firewall</a></li>
</ul>
<p>The <a href="http://hea-www.harvard.edu/RD/ds9/release/r5.0.html">release notes</a> for SAOImage DS9 don&#8217;t necessarily suggest dramatic changes in this version relative to version 5.3.</p>
<ol>
<li><strong>CATALOGS:</strong> removed support for Chandra Source Catalog at request of Ian Evans of CXC (only added on October 3, 2008).</li>
<li><strong>MASKS:</strong> add support for mask transparency.</li>
<li><strong>MASKS:</strong> add new mask properties.</li>
<li><strong>GRID:</strong> add grid title support.</li>
</ol>
<p>My previously posted notes on <a href="http://iparrizar.mnstate.edu/~juan/urania/2008/04/06/scisoft-osx-200831-installation-notes/">integrating upgrades of DS9 into the Scisoft OS X installation</a> still work. Just note that newer releases of Scisoft OS X place the binaries in <code>/Applications/scisoft/i386/bin/</code> instead of <code>/scisoft/i386/bin/</code> and if you are installing the X11 binary that is compatible with the firewall, you have to install both the <code>ds9</code> and <code>ds9.zip</code> file in the <code>bin/</code> directory of Scisoft OSX.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2008/10/31/saoimage-ds9-54-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The One where I release Clear Sky Clock Widget version 1.3</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2008/10/24/the-one-where-i-release-clear-sky-clock-widget-version-13/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2008/10/24/the-one-where-i-release-clear-sky-clock-widget-version-13/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 14:43:53 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[MacOS X Annoyances]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2008/10/24/the-one-where-i-release-clear-sky-clock-widget-version-13/</guid>
		<description><![CDATA[Every Semester in introductory astronomy we run a series of field trips out to the Paul J. Feder Observatory which lies about 14 miles from the MSUM campus. As such, I like to check the weather before going out there and usually do so with a quick look at Attilla Danko&#8217;s Clear Sky Chart website. [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://iparrizar.mnstate.edu/~juan/urania/wp-content/media/cscwidget-small.png" width="389" height="168" alt="ClearSkyClock Half-Size Screen Shot" style="float:right;" />Every Semester in introductory astronomy we run a series of field trips out to the Paul J. Feder Observatory which lies about 14 miles from the MSUM campus. As such, I like to check the weather before going out there and usually do so with a quick look at Attilla Danko&#8217;s <a href="http://www.cleardarksky.com/c/PJFdrObMNkey.html?1">Clear Sky Chart</a> website. It occurred to me it would be nice to see if a Dashboard widget to show the Clear Sky Chart existed. I found two. The one by Joshua Lynch worked well, but it had a major problem, it never listed the Paul J. Feder Observatory as a site I could examine. I ended up biting the bullet and looking at the code. Turns out Joshua Lynch released the code open source. Therefore, I felt free to start hacking on the Dashboard widget (learning how to program widgets in the process). The result is the <a href="http://iparrizar.mnstate.edu/~juan/clearskyclock_widget.php">Clear Sky Clock Widget (version 1.3)</a>. The key changes I made to the widget were:</p>
<ol>
<li><strong>Fixed a parsing bug</strong> that prevented the loading of any Clear Sky Chart for sites containing parentheses or periods in their names. It was this bug that was interfering with the loading of our observatory&#8217;s Clear Sky Clock.</li>
<li>Since the Clear Sky Chart is quite large and many people will use the widget on laptops with small screens, I added a &#8220;<strong>Half-size mode</strong>&#8220;. All you do is click on the &#8220;Toggle Size&#8221; link on the widget. This shrinks the charge and saves screen real estate.</li>
<li>With Attilla Danko&#8217;s permission, I added a <span style="font-family: Arial;"><strong>Built-in Legend</strong></span> (copied from his site) for interpreting the Clear Sky Chart to the widget. Just click on the charge and the legend appears. Click again and it goes away.</li>
<li>I also added <strong>a link to the Clear Sky Charge site page</strong>, so if I wanted more detailed information, I can get it there.</li>
</ol>
<p>I hope a few Mac-owning astronomers in the U.S. and Canada find this widget useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2008/10/24/the-one-where-i-release-clear-sky-clock-widget-version-13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAOImage DS9 5.3 released (fixes Leopard Firewall issues)</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2008/10/15/saoimage-ds9-53-released-fixes-leopard-firewall-issues/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2008/10/15/saoimage-ds9-53-released-fixes-leopard-firewall-issues/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 21:46:48 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[MacOS X Annoyances]]></category>
		<category><![CDATA[SciSoft OSX]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2008/10/15/saoimage-ds9-53-released-fixes-leopard-firewall-issues/</guid>
		<description><![CDATA[The folks at the SAO have finally released a version of SAOImage DS9 (version 5.3) that plays well with the current version of the MacOS Firewall (as of MacOS 10.5.5) . Here are the links to the downloadable Mac-related SAOImage files

Aqua 10.4 Tiger (Universal)
Aqua 10.5 Leopard (Universal)
X11 10.4 Tiger (Universal)
X11 10.5 Leopard (Universal)
X11 10.5 Leopard [...]]]></description>
			<content:encoded><![CDATA[<p>The folks at the <a href="http://cfa-www.harvard.edu/sao/">SAO</a> have finally released a version of <a href="http://hea-www.harvard.edu/saord/ds9/">SAOImage DS9</a> (version 5.3) that plays well with the current version of the MacOS Firewall (as of MacOS 10.5.5) . Here are the links to the downloadable Mac-related SAOImage files</p>
<ul>
<li><a href="http://hea-www.harvard.edu/saord/ds9/">Aqua 10.4 Tiger (Universal)</a></li>
<li><a href="http://hea-www.harvard.edu/saord/ds9/">Aqua 10.5 Leopard (Universal)</a></li>
<li><a href="http://hea-www.harvard.edu/saord/ds9/">X11 10.4 Tiger (Universal)</a></li>
<li><a href="http://hea-www.harvard.edu/saord/ds9/">X11 10.5 Leopard (Universal)</a></li>
<li><a href="http://hea-www.harvard.edu/saord/ds9/">X11 10.5 Leopard (Universal) with Firewall</a></li>
</ul>
<p>To quote the release notes on the SAOImage DS9 website, the changes in the newly released version 5.3 are</p>
<blockquote><p>
  <strong>Regions:</strong> Regions now support a centroid function. The centroid function can be manually invoked or regions can automatically snap to a centroid when moved or edited. Regions now have a DASH line property.<br />
  <strong><br /></strong> <strong>Colorbar:</strong> Now supports a vertical colorbar layout option, via the View Menu. Users can configure the font type and size of the colorbar, via the View Menu.</p>
<p>  <strong>GUI:</strong> Now supports a vertical button bar, when in vertical layout mode.</p>
<p>  <strong>Aqua MacOSX 10.5 firewall:</strong> The MacOSX Aqua 10.5 Leopard port of DS9 can be used with the MacOSX 10.5 firewall enabled.</p>
<p>  <strong>X11 MacOSX 10.5:</strong> There are now two versions available for X11 MacOSX 10.5 Leopard. The non-firewall version is recommended for all unless you wish to enable the 10.5 firewall. [<strong>Juan's Note:</strong> While not stating this, they mean specifically the application-specific version of the MacOS firewall. <a href="http://iparrizar.mnstate.edu/~juan/urania/2008/04/22/saoimage-ds9-versus-leopard-firewall/">See my notes on this problem here</a>.] In that case, please use the firewall enabled version. <em><strong>Please note:</strong></em> this version consist of 2 files, <code>ds9</code> and <code>ds9.zip</code>. It is very important that ds9.zip be placed in the same directory as the ds9 binary at all times.</p>
<p>  <strong>Contours:</strong> Contours now have a DASH line option.
</p></blockquote>
<p>I have previously posted notes for <a href="http://iparrizar.mnstate.edu/~juan/urania/2008/04/06/scisoft-osx-200831-installation-notes/">integrating upgrades of DS9 into the Scisoft OS X installation</a> and they still work just fine except that newer releases of Scisoft OS X place the binaries in <code>/Applications/scisoft/i386/bin/</code> instead of <code>/scisoft/i386/bin/</code> and if you are installing the X11 binary that is compatible with the firewall, you have to install both the <code>ds9</code> and <code>ds9.zip</code> file in the <code>bin/</code> directory of Scisoft OSX.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2008/10/15/saoimage-ds9-53-released-fixes-leopard-firewall-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scisoft OSX Intel 2008.9.1 released</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2008/09/23/scisoft-osx-intel-200891-released/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2008/09/23/scisoft-osx-intel-200891-released/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 19:13:47 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[IRAF]]></category>
		<category><![CDATA[SciSoft OSX]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2008/09/23/scisoft-osx-intel-200891-released/</guid>
		<description><![CDATA[Scisoft OSX Intel 2008.9.1 was released yesterday. Nor noted in his blog post about it that this is a bug fix release that

  should resolve a few outstanding problems created when changing the location of scisoft from /scisoft to /Applications/scisoft/. Packages such as MIDAS and Gnuplot should now work properly.
  This version removes [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://web.mac.com/npirzkal/Scisoft/News/Entries/2008/9/22_Scisoft_OSX_Intel_2008.9.1_Released.html">Scisoft OSX Intel 2008.9.1</a> was released yesterday. Nor noted in his blog post about it that this is a bug fix release that</p>
<blockquote><p>
  should resolve a few outstanding problems created when changing the location of scisoft from <code>/scisoft</code> to <code>/Applications/scisoft/</code>. Packages such as MIDAS and Gnuplot should now work properly.</p>
<p>  This version removes some remaining dependencies on the HPC OSX compilers, which I had on my machine but which most users do not have (and do not want to have).
</p></blockquote>
<p>I compared the <code>/Application/scisoft/i386/Packages</code> directory from this release of Scisoft OSX to the last one and there are no new packages installed. The few <a href="http://iparrizar.mnstate.edu/~juan/urania/2008/08/27/scisoft-osx-200881-released/">issues I noted with the Scisoft OSX 2008.8.1</a> release all appear to still be valid. Notably:</p>
<ol>
<li><strong>Permission Problems Persist:</strong> When the installer installs <code>/Applications/scisoft</code>, it appears that a bug in Apple&#8217;s Installer program triggers a change in ownership of the <code>/Applications</code> directory to that of the second user on the system. I strongly suggest checking the ownership of the <code>/Applications</code> directory afterward and if isn&#8217;t owned by an administrative user, set it as such using:<br />
  <pre><pre>
sudo chown username:admin /Applications
</pre></pre><br />
  (where &#8220;<code>username</code>&#8221; is the primary administrative users username, in most cases, your username) to perform the repair.</li>
<li><strong>ds9 command line executable missing:</strong> This release has the same glitch I noticed in version 2008.8.1 in that <code>/Applications/scisoft/i386/bin</code> doesn&#8217;t appear to have a ds9 binary installed. You can fix this by installing <a href="http://hea-www.harvard.edu/RD/ds9/beta.html">the X11 version of ds9</a> there or by linking to the Aqua version of ds9 that was installed using the command line<br />
<pre><pre>
ln -s &quot;/Applications/scisoft/i386/Applications/SAOImage DS9.app/Contents/MacOS/ds9&quot; /Applications/scisoft/i386/bin/ds9</pre></pre></li>
</ol>
<p>I have placed a copy of this release in <a href="http://iparrizar.mnstate.edu/~juan/urania/scisoft-osx-download/">my Scisoft OSX Mirror</a> in case the main Scisoft OSX repository gets bogged down.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2008/09/23/scisoft-osx-intel-200891-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scisoft OSX 2008.8.1 released</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2008/08/27/scisoft-osx-200881-released/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2008/08/27/scisoft-osx-200881-released/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 18:09:01 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[MacOS X Annoyances]]></category>
		<category><![CDATA[SciSoft OSX]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2008/08/27/scisoft-osx-200881-released/</guid>
		<description><![CDATA[Scisoft OSX Intel 2008.8.1 was released about a week ago. I have been working with Nor Pirzkal for the last few months beta-testing this version and trying to make sure my concerns about the previous version were addressed. Nor&#8217;s blog post about the update states

  There are a few changes in this version and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://web.mac.com/npirzkal/Scisoft/News/Entries/2008/8/18_Scisoft_OSX_Intel_2008.8.1_Released.html">Scisoft OSX Intel 2008.8.1</a> was released about a week ago. I have been working with Nor Pirzkal for the last few months beta-testing this version and trying to make sure my concerns about the previous version were addressed. Nor&#8217;s blog post about the update states</p>
<blockquote>
  There are a few changes in this version and all packages have been updated to the latest available versions. Starting with this version, Scisoft is installed in <code>/Applications/scisoft</code> (it previously was installed in <code>/scisoft</code>). Make sure that you remove any old <code>/scisoft</code> installation and properly update your startup files to source the <code>Setup.csh</code> or <code>Setup.bash</code> from their new locations.
</blockquote>
<p>In the README file you are told<br /></p>
<blockquote>
  Once the collection is successfully installed csh and tcsh users should invoke the command:<br /> <br />
  <code>source /Applications/scisoft/all/bin/Setup.csh</code><br />
  <br />
  to gain access to all the software and configure their environment correctly.<br />
  <br />
  Users of the &#8220;bash&#8221; shell should instead use:<br /><br/>
  <code>. /Applications/scisoft/all/bin/Setup.bash</code>
</blockquote>
<p>Personally, to avoid problems in tcsh with a script breaking or with modifying my PATH multiple times by repeated execution of the <code>Setup.csh</code> script, I use the following line in my <code>.tcshrc</code> to first check for the existence of the <code>Setup.csh</code> script and SCISOFT environmental variables before executing it.<br />
<pre><code>if (! $?SCISOFT) then
test -r /Applications/scisoft/all/bin/Setup.csh &amp;&amp; source /Applications/scisoft/all/bin/Setup.csh
endif</code></pre></p>
<p><strong>Permission Problems Persist</strong><br />
This version addresses all the issues <a href="http://iparrizar.mnstate.edu/~juan/urania/2008/05/28/scisoft-osx-200851-released-with-my-installation-notes/">I noticed with Scisoft OSX 2008.5.1</a> except for one annoying one, the reassignment of ownership of the enclosing directory on installation. If you installed the old version of Scisoft OSX, it would reassign ownership of the root (/) directory to the second user on the system (in my case, since their is none, it showed the user as &#8220;502&#8243;). I beta-tested various versions of Scisoft OSX but Nor was not able to stamp out this particular problem. I believe Nor has come to the conclusion after extensive testing that this is a problem with Apple&#8217;s software for constructing installer packages. By moving the Scisoft OSX installation to <code>/Applications/scisoft</code>, it is the <code>/Applications</code> directory that gets its ownership changed instead of the root directory, which is less damaging. However, I would strongly suggest checking the ownership of the /Applications directory afterward and if isn&#8217;t owned by an administrative user, set it as such using:<br/><br/><code>sudo chown username:admin /Applications</code><br /><br />
(where &#8220;<code>username</code>&#8221; is the primary administrative users username, in most cases, your username) to perform the repair.</p>
<p><strong>A Quick-Fix for any Legacy Scisoft-related scripts</strong><br />
If you had a few scripts that relied on Scisoft OSX being located in /scisoft and you don&#8217;t want to edit them all is you can make <code>/scisoft</code> point to <code>/Applications/scisoft</code>. This can be accomplished by first moving the old version of Scisoft OSX before installing 2008.8.1 via the command line:<br /></p>
<p><code>sudo mv /scisoft /scisoft_old</code></p>
<p>and then once you have installed the new Scisoft OSX in 2008.8.1, create a symbolic link from the old location to the new by typing (again from the command line)</p>
<p><code>sudo ln -s /Applications/scisoft /scisoft</code></p>
<p>This will allow any scripts that refer to items in <code>/scisoft</code> to continue to work for the most part.</p>
<p><strong>What&#8217;s New?<br /></strong>An investigation of the <code>/Application/scisoft/i386/Packages</code> directory as well as the <code>NEWS</code> file reveals the following changes to this version of SciSoft OSX over the 2008.5.1 version.</p>
<ul>
  <li><a href="http://hea-www.harvard.edu/RD/ds9/">DS9</a> updated from 5.1 to 5.3beta<br /></li>

  <li><a href="http://heasarc.gsfc.nasa.gov/docs/software/ftools/fv/">FV</a> updated from 5.1 to 5.2.1</li>

  <li><a href="http://math-atlas.sourceforge.net/">ATLAS</a> updated to version 3.8.2<a href="http://en.wikipedia.org/wiki/Pango"></a></li>

  <li><a href="http://www.eso.org/esomidas">MIDAS</a> updated to 08FEBpl1.1<a href="http://cdsweb.u-strasbg.fr/doc/cdsclient.html"></a></li>

  <li><a href="http://cdsweb.u-strasbg.fr/doc/cdsclient.html">cdsclient</a> was updated to version 2.87</li>

  <li><a href="http://www.opengroup.org/openmotif/">OpenMotif</a> updated to 2.1.32_compat<a href="http://heasarc.nasa.gov/docs/software/fitsio/c/c_user/cfitsio.html"></a></li>

  <li><a href="http://heasarc.nasa.gov/docs/software/fitsio/c/c_user/cfitsio.html">cfitsio</a> library updaed from 3.090 to 3.090 (the current version is 3.100)<a href="http://en.wikipedia.org/wiki/Pango"></a></li>

  <li><a href="http://en.wikipedia.org/wiki/Pango">pango</a> library updated from version 1.20.2 to 1.21.3</li>

  <li><a href="http://lwn.net/Articles/285442/">pixman</a> library updated from 0.10.0 to 0.11.2<br /></li>

  <li><a href="http://expat.sourceforge.net/">expat</a> library updated from 2.0.0 to 2.0.1<br /></li>

  <li><a href="http://www.fontconfig.org/">fontconfig</a> library updated from 2.3.2 to 2.6.0<a href="http://www.gnu.org/software/gettext/"></a></li>

  <li><a href="http://www.freetype.org/">freetype</a> library updated from 2.2.1 to 2.3.6</li>

  <li><a href="http://www.gnu.org/software/gettext/">gettext</a> library updated from 0.14.5 to 0.17<a href="http://www.freedesktop.org/software/pkgconfig/"></a></li>

  <li><a href="http://www.gtk.org/">gtk+</a> updated from 2.12.9 to 2.12.10</li>

  <li><a href="http://www.libpng.org/pub/png/libpng.html">libpng</a> library updated from 1.2.10 to 1.2.29</li>

  <li><a href="http://www.unidata.ucar.edu/software/netcdf/">netCDF</a> library version 3.6.2 added</li>

  <li><a href="http://www.freedesktop.org/software/pkgconfig/">pkg-config</a> updated from 0.20 to 0.23</li>

  <li><a href="http://www.tcl.tk/software/tcltk/">TclTk</a> package updated from 8.4.13 to 8.4.19</li>

  <li><a href="http://tdc-www.harvard.edu/wcstools/">wcstools</a> library updated from 3.6.4 to 3.7.3 (current version is 3.7.5)</li>

  <li>IRAF package <a href="http://tdc-www.harvard.edu/iraf/rvsao/">rvsao</a> updated t version 2.5.7 to 2.6.4</li>

  <li><a href="http://www.python.org/">Python</a> was updated to 2.5.2 and the following <a href="http://www.python.org/">Python</a> libraries were updated:<br /></li>

  <li style="list-style: none">
    <ul>
      <li><a href="http://www.pygtk.org/">ScientificPython</a> updated to 2.6.1</li>
    </ul>
  </li>
</ul>
<p><strong>Minor Glitches<br /></strong> The only other minor glitch I noticed was that <code>/Applications/scisoft/i386/bin</code> doesn&#8217;t appear to have a ds9 binary installed. You can fix this by installing the X11 version of ds9 there or by linking to the Aqua version of ds9 that was installed using the command line</p>
<pre>ln -s &quot;/Applications/scisoft/i386/Applications/SAOImage DS9.app/Contents/MacOS/ds9&quot; /Applications/scisoft/i386/bin/ds9</pre>]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2008/08/27/scisoft-osx-200881-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Announcing External SPECROAD&#8230; woot!</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2008/08/11/announcing-external-specroad-woot/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2008/08/11/announcing-external-specroad-woot/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 21:24:09 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[Hectospec]]></category>
		<category><![CDATA[IRAF]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2008/08/11/announcing-external-specroad-woot/</guid>
		<description><![CDATA[A few folks have been aware that I am involved in an interesting project to determine the &#8220;Shape of our Galaxy&#8221;&#8230; specifically the nature of the asymmetries observed in the Thick Disk stars in the galaxy. Part of that project involved obtaining multi-fiber spectrograph observations of many stars in selected fields of the sky using [...]]]></description>
			<content:encoded><![CDATA[<p>A few folks have been aware that I am involved in an interesting project to determine the &#8220;Shape of our Galaxy&#8221;&#8230; specifically the nature of the asymmetries observed in the Thick Disk stars in the galaxy. Part of that project involved obtaining multi-fiber spectrograph observations of many stars in selected fields of the sky using the <a href="http://cfa-www.harvard.edu/mmti/hectospec.html">Hectospec multi-fiber spectrometer</a> on the MMT on Mount Hopkins.</p>
<p>Unfortunately, there are very few &#8220;external&#8221; users of the Hectospec, so the software pipeline available for reducing Hectospec observations, called <a href="http://tdc-www.harvard.edu/instruments/hectospec/specroad.html"><strong>SPECROAD</strong></a>, was only geared to run on <a href="http://cfa-www.harvard.edu/sao/">SAO</a> computers. I spent a considerable amount of time last summer and this summer getting that software into a much more portable form, documenting how to use it, and removing bugs from the code.</p>
<p>All this work resulted in the creation of a new version of the Hectospec data pipeline I dubbed &#8220;<a href="http://iparrizar.mnstate.edu/~juan/research/ESPECROAD/"><strong>External SPECROAD</strong></a>&#8221; or &#8220;<a href="http://iparrizar.mnstate.edu/~juan/research/ESPECROAD/"><strong>E-SPECROAD</strong></a>&#8221; for short. There were several major problems with the original <strong>SPECROAD</strong> code that I addressed in <strong>E-SPECROAD</strong>:</p>
<ol>
<li><strong>Nonportability:</strong> The <strong>SPECROAD</strong> scripts were only designed to run on a Solaris computer at the SAO, with files in specific hard-coded locations using a specific IRAF environment with all the IRAF parameters set before the scripts were run. This has been addressed by trying to assume almost nothing about a user&#8217;s IRAF environment from the start except that they have the proper packages installed.
</li>
<li><strong>Lack of Documentation:</strong> The documentation for <strong>SPECROAD</strong> is frankly inadequate. It was an in-house tool for the SAO, so the publically-available documentation consists mostly of <a href="http://tdc-www.harvard.edu/instruments/hectospec/specroad.html">one webpage</a> describing what the scripts do. I have now written up both an <a href="http://iparrizar.mnstate.edu/~juan/research/ESPECROAD/installation.php">installation guide</a> (because there are a lot of pre-requisite pieces of code to install) and a E-SPECROAD <a href="http://iparrizar.mnstate.edu/~juan/research/ESPECROAD/users_guide.php">user&#8217;s guide</a>.
</li>
<li><strong>No Installation Instructions:</strong> There were several <a href="http://www.iraf.net/">IRAF</a> packages to install (<a href="http://tdc-www.harvard.edu/instruments/hectospec/software.html">available here</a>). The shell scripts required not only the installation of several IRAF packages and the compilation of several C programs, they used korn shell (ksh) which I was unfamiliar with. And, as I would also soon discover, the <a href="http://iparrizar.mnstate.edu/~juan/urania/2007/07/19/ksh-doesnt-work-on-macos-x-tiger/">ksh installed on the Mac had serious bugs in its list handling</a>. There is now a fairly compete <a href="http://iparrizar.mnstate.edu/~juan/research/ESPECROAD/installation.php">installation guide</a> laying out all the pre-requisites and addressing installations on both Macs and Linux boxes.
</li>
<li><strong>Undocumented Bugs:</strong> The available <strong>SPECROAD</strong> scripts had major bugs whose workarounds were undocumented and only available when I would email someone at the SAO to inquire about them. In one case, you had to know to actually break out of the script with Control-C, then run some of the reduction in IRAF, and then restart the script! <strong>E-SPECROAD</strong> has been fairly extensively debugged. It&#8217;s not bug free, but the exterminator has made some serious passes at the code.
</li>
<li><strong>Assumed Availability of Spectral Templates:</strong> The <strong>SPECROAD</strong> scripts typically relied on pre-set spectral line databases for different grating/central wavelength configurations instead of having the user exploit the IRAF <em>identify</em> command to build a database. <strong>E-SPECROAD</strong> is geared toward the user who is going to wavelength calibrate their observations by building the spectral line database for themselves.
</li>
<li><strong>Assumed Use of Low Resolution Spectra:</strong> The <strong>SPECROAD</strong> scripts were mostly pre-configured for working with 270gpm gratings and required some tweaking for 600gpm. <strong>E-SPECROAD</strong> can work with either configuration without editing the code.
</li>
<li><strong>Inconvienent Backups As Data Reduction Progresses:</strong> If one of the scripts executed by <strong>SPECROAD</strong> crashed, you had to dig around subdirectories to &#8220;backtrack&#8221; the changes before restarting the script. With disk space not an issue, I prefer monolithic backups of the entire data directory at certain key points in the data reduction pipeline. Since you may not like this form of backup (as they consume a lot of disk space), they are optional.</li>
</ol>
<p>Today, I am <a href="http://iparrizar.mnstate.edu/~juan/research/ESPECROAD/">posting <strong>E-SPECROAD</strong> online as a beta release</a> along with <a href="http://iparrizar.mnstate.edu/~juan/research/ESPECROAD/installation.php">installation instructions</a> and a <a href="http://iparrizar.mnstate.edu/~juan/research/ESPECROAD/users_guide.php">user&#8217;s guide.</a> All the other external users of Hectospec I am aware of, all two of you, can enjoy or complain to me about this code. The ones I am unaware of are free to use the code as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2008/08/11/announcing-external-specroad-woot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAOImage DS9 5.3beta and the Leopard Firewall, Redux</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2008/07/23/saoimage-ds9-53beta-and-the-leopard-firewall-redux/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2008/07/23/saoimage-ds9-53beta-and-the-leopard-firewall-redux/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 23:03:22 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[MacOS X Annoyances]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2008/07/23/saoimage-ds9-53beta-and-the-leopard-firewall-redux/</guid>
		<description><![CDATA[I can attest the Aqua version of SAOImage DS9 version 5.3beta does indeed play nice with Apple&#8217;s dopey firewall behavior (see here for notes on version 5.2&#8217;s incompatibility with the Leopard firewall). However, the command line version that uses X-windows DOES NOT play nice with the Leopard Firewall. If you run the X-windows version of [...]]]></description>
			<content:encoded><![CDATA[<p>I can attest the Aqua version of <a href="http://hea-www.harvard.edu/RD/ds9/">SAOImage DS9</a> version 5.3beta does indeed play nice with Apple&#8217;s dopey firewall behavior (<a href="http://iparrizar.mnstate.edu/~juan/urania/2008/07/19/two-astronomically-interesting-mac-software-updates-today/">see here</a> for notes on version 5.2&#8217;s incompatibility with the Leopard firewall). However, the command line version that uses X-windows <strong>DOES NOT</strong> play nice with the Leopard Firewall. If you run the X-windows version of &#8220;ds9&#8243; on a Mac running Leopard&#8217;s built in Firewall in &#8220;Set access for specific services and applications&#8221;, you will end up with a completely hosed ds9 executable which will not launch ever again.</p>
<p>As such, for now, since I prefer the X-windows version of <a href="http://hea-www.harvard.edu/RD/ds9/">SAOImage DS9</a>, I am leaving the the Firewall off for now, I&#8217;m not too concerned.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2008/07/23/saoimage-ds9-53beta-and-the-leopard-firewall-redux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two Astronomically Interesting Mac Software Updates Today</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2008/07/19/two-astronomically-interesting-mac-software-updates-today/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2008/07/19/two-astronomically-interesting-mac-software-updates-today/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 20:48:11 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[X11]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2008/07/19/two-astronomically-interesting-mac-software-updates-today/</guid>
		<description><![CDATA[Today I noticeed two interesting software updates for Mac-based professional astronomers.
The first one I noticed was the updating of Xquartz to version 2.3.0. Xquartz is the updated version of X11 for the Mac OS (even ahead of Apple&#8217;s own installed versions) that I prefer to use, largely because bug-fixes get rolled in here before they [...]]]></description>
			<content:encoded><![CDATA[<p>Today I noticeed two interesting software updates for Mac-based professional astronomers.</p>
<p>The first one I noticed was the updating of <a href="http://xquartz.macosforge.org/trac/wiki">Xquartz</a> to <a href="http://xquartz.macosforge.org/trac/wiki/X112.3.0">version 2.3.0</a>. <a href="http://xquartz.macosforge.org/trac/wiki">Xquartz</a> is the updated version of X11 for the Mac OS (even ahead of Apple&#8217;s own installed versions) that I prefer to use, largely because bug-fixes get rolled in here before they appear in Mac OS. This version requires <a href="http://www.apple.com/macosx/">Mac OS</a> 10.5.4 and has a couple of caveats attached to it for programmers, notably:</p>
<blockquote><p>
  The software supporting the deprecated imake build system is not provided in this package. If you need imake and xmkmf, please install the X11 package that came with your Leopard DVD before installing this version. Alternatively, you can compile these packages on your own or get them from a third party such as Fink or MacPorts. The darwin configuration files used by the imake build system are outdated and not supported. Developers using this build system are advised to migrate to autoconf.
</p></blockquote>
<p>[<strong>Added July 24, 2008: Apparently, this version of Xquartz changed the X11.app Icon so it now X11 looks like this<br /></strong></p>
<div style="text-align: center;">
  <strong><img src="http://iparrizar.mnstate.edu/~juan/urania/wp-content/media/newx11icon.jpg" width="85" height="143" alt="New X11 Icon" /><br /></strong>
</div>
<p><strong>when it is on the Dock. Interesting, but it threw me for a second. The only documentation I found of this change is <a href="http://xquartz.macosforge.org/trac/ticket/110">in a Ticket filed</a> with XQuartz's bug reporting system. Still, I think this is a good idea, as it gives a visual cue that you are using XQuartz as opposed to the default X11 installation.]</strong></p>
<p>Along with a bunch of library changes, the key update appears to be having the Xserver updated to the 1.4 branch of Xorg. There is also &#8220;support for adding new <code>$DISPLAY</code> sockets after the server is running&#8221; (which I think means using the DISPLAY variable will not break things) and &#8220;<code>/usr/X11/bin/Xquartz</code> is just a stub that will &#8216;do the right thing&#8217;,&#8221; whatever that means. I have upgraded to it and as a reminder, if you upgrade <a href="http://www.apple.com/macosx/">MacOS</a> after installing Xquartz, you will need to reinstall Xquartz to get it back.</p>
<p>The other interesting software release for Mac-based astronomers I noticed today was <a href="http://hea-www.harvard.edu/RD/ds9/">SAOImage DS9</a> which has released version <a href="http://hea-www.harvard.edu/RD/ds9/beta.html">5.3beta</a>, which appears to be, based on the statement on their homepage that &#8220;MacOSX 10.5 users with firewall enabled, please use version 5.3 beta&#8221;, geared toward addressing the issue I noticed this April with version 5.2 where <a href="http://iparrizar.mnstate.edu/~juan/urania/2008/04/22/saoimage-ds9-versus-leopard-firewall/">launching SAOimage DS9 with a certain firewall setting on the Mac could result in the the application becoming irreparably damaged at launch</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2008/07/19/two-astronomically-interesting-mac-software-updates-today/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scisoft OSX mirror fixed</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2008/07/10/scisoft-osx-mirror-fixed/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2008/07/10/scisoft-osx-mirror-fixed/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 15:47:55 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[SciSoft OSX]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2008/07/10/scisoft-osx-mirror-fixed/</guid>
		<description><![CDATA[When I moved the my Scisoft OSX mirror to a new server, I messed up the permissions on the files, preventing users from downloading the Scisoft OSX packages from the mirror. This has now been fixed.
]]></description>
			<content:encoded><![CDATA[<p>When I moved the my <a href="http://iparrizar.mnstate.edu/~juan/urania/scisoft-osx-download/">Scisoft OSX mirror</a> to a new server, I messed up the permissions on the files, preventing users from downloading the <a href="http://web.mac.com/npirzkal/Scisoft/Scisoft.html">Scisoft OSX</a> packages from the <a href="http://iparrizar.mnstate.edu/~juan/urania/scisoft-osx-download/">mirror</a>. This has now been fixed.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2008/07/10/scisoft-osx-mirror-fixed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xquartz 2.2.3 released</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2008/06/26/xquartz-223-released/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2008/06/26/xquartz-223-released/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 21:30:18 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[MacOS X]]></category>
		<category><![CDATA[MacOS X Annoyances]]></category>
		<category><![CDATA[MacPorts]]></category>
		<category><![CDATA[X11]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2008/06/26/xquartz-223-released/</guid>
		<description><![CDATA[I was trying to upgrade wine within MacPorts when I realized I had forgotten to upgrade Xquartz after my upgrade to MacOS 10.5.3 on my Mac Pro. So I checked, Xquartz has been upgraded to version 2.2.3. Since version 2.2.1 (which I talked about in my blog here).

Upgraded the freetype library to version 2.3.6, which [...]]]></description>
			<content:encoded><![CDATA[<p>I was trying to upgrade <a href="http://www.winehq.org/">wine</a> within <a href="http://www.macports.org/" title="MacPorts homepage">MacPorts</a> when I realized I had forgotten to upgrade Xquartz after my upgrade to <a href="http://www.apple.com/macosx/">MacOS</a> 10.5.3 on my Mac Pro. So I checked, <a href="http://xquartz.macosforge.org/trac/wiki">Xquartz</a> has been upgraded to <a href="http://xquartz.macosforge.org/trac/wiki/X112.2.3">version 2.2.3</a>. Since version 2.2.1 (<a href="http://iparrizar.mnstate.edu/~juan/urania/2008/05/06/xquarz-goes-to-version-221/">which I talked about in my blog here</a>).</p>
<ul>
<li>Upgraded the freetype library to version 2.3.6, which fixes &#8220;A bunch of potential security problems have been found [and fixed in this release&#8221;</li>
<li>Upgraded to pixman library to version 0.11.4.</li>
<li>Xquartz fixes from xorg-server-1.3.0-apple21, the key fix being support for monitor hotplugging, although several security fixes also occurred.</li>
</ul>
<p>Again, if you upgrade <a href="http://www.apple.com/macosx/">MacOS</a> (say to version 10.5.4, which is supposed to be released soon in order to support <a href="http://www.apple.com/iphone/">iPhone G3</a> and <a href="http://www.apple.com/mobileme/">MobileMe</a>), you will likely need to reinstall Xquartz (unless Apple has upgraded their X11 installation to match Xquartz).</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2008/06/26/xquartz-223-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SciSoft OSX 2008.5.1 Released (with my installation notes)</title>
		<link>http://iparrizar.mnstate.edu/~juan/urania/2008/05/28/scisoft-osx-200851-released-with-my-installation-notes/</link>
		<comments>http://iparrizar.mnstate.edu/~juan/urania/2008/05/28/scisoft-osx-200851-released-with-my-installation-notes/#comments</comments>
		<pubDate>Wed, 28 May 2008 18:19:05 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Astronomical Software]]></category>
		<category><![CDATA[IRAF]]></category>
		<category><![CDATA[SciSoft OSX]]></category>

		<guid isPermaLink="false">http://iparrizar.mnstate.edu/~juan/urania/2008/05/28/scisoft-osx-200851-released-with-my-installation-notes/</guid>
		<description><![CDATA[SciSoft OSX Intel 2008.5.1 was released today. Nor&#8217;s blog post about the update states
The latest update to Scisoft OSX is now available. This includes an update to Pyraf (v. 1.6), GSL, pygsl, Gunplot, and a few backend libraries.
I went ahead and decided to install it today to investigate the improvements. As is usually my procedure, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://web.mac.com/npirzkal/Scisoft/News/Entries/2008/5/28_Scisoft_OSX_Intel_2008.5.1_Released.html">SciSoft OSX Intel 2008.5.1</a> was released today. Nor&#8217;s blog post about the update states</p>
<blockquote><p>The latest update to Scisoft OSX is now available. This includes an update to Pyraf (v. 1.6), GSL, pygsl, Gunplot, and a few backend libraries.</p></blockquote>
<p>I went ahead and decided to install it today to investigate the improvements. As is usually my procedure, I first moved the directory containing my functional SciSoft OSX install temporarily out of the way via the command line:</p>
<p><code>sudo mv /scisoft /scisoft_old</code></p>
<p>Having done that I double-clicked on the installer package and let it do its thing, installing everything in the <code>/scisoft</code> directory. I poked around a bit an realized almost immediately that <code>/scisoft/i386/Applications</code> directory was empty! This one is kind of a show stopper as it means DS9 and FV are unavailable. I copied the files back from the previous installation without too much of a hitch. I did check, the installer package file with <a href="http://www.charlessoft.com/">Pacifist</a> and it does appear to contain those files in it, so I am not sure why they didn&#8217;t appear to install. I hope this is an isolated incident and not a recurring issue with the installer.</p>
<p>Other minor glitches I noticed:</p>
<ul>
<li>I discovered that <code>/scisoft/i386/Packages</code>, <code>/scisoft/NEWS</code> and <code>/scisoft/i386/share</code> are set to have owner 502:502 instead of root:admin. This glitch is easily fixed by issuing the following command from the Terminal<br />
<pre>sudo chown -R root:admin /scisoft/</pre>
</li>
<li>I also noticed that in addition to the <code>x11iraf-1.5DEV</code> installation, the entire <code>x11iraf-1.3.2</code> installation is still sitting in the <code>/scisoft/i386/Packages</code> directory. All the <a href="http://iraf.net/ftp/iraf/x11iraf/">x11iraf</a> binaries in <code>/scisoft/i386/bin/</code> are linked to <code>x11iraf-1.5DEV</code> instead of the older 1.3.2 binaries. I suspect this is an oversight.</li>
</ul>
<p>An investigation of the <code>/scisoft/i386/Packages</code> directory as well as the <code>NEWS</code> file reveals the following changes to this version of SciSoft OSX over the 2008.3.1 version.</p>
<ul>
<li><a href="http://www.gnu.org/software/gsl/">GSL</a> updated from 1.9 to 1.11</li>
<li><a href="http://hea-www.harvard.edu/RD/ds9/">DS9</a> updated from 4.13 to 5.1 (<a href="http://iparrizar.mnstate.edu/~juan/urania/2008/04/19/ds9-version-52-released/">The current version of SAOImage DS9 is actually version 5.2</a>, you can read about how to update the SciSoft version of DS9 <a href="http://iparrizar.mnstate.edu/~juan/urania/2008/04/06/scisoft-osx-200831-installation-notes/">in this post</a>)</li>
<li><a href="http://www.gnuplot.info/">GNUPlot</a> updated from 4.0.0 to 4.2.3</li>
<li><a href="http://terapix.iap.fr/rubrique.php?id_rubrique=49">Swarp</a> updated from version 2.15.7 to 2.17.1</li>
<li><a href="http://terapix.iap.fr/rubrique.php?id_rubrique=200">WeightWatcher</a> updated from version 1.7 to 1.8.7</li>
<li><a href="http://www.stsci.edu/resources/software_hardware/pyraf">pyraf</a> updated from version 1.3 to version 1.6</li>
<li>The following <a href="http://www.python.org/">Python</a> libraries were updated:</li>
<li style="list-style: none">
<ul>
<li><a href="http://www.pygtk.org/">pygtk</a> updated from 2.8.6 to 2.12.1</li>
<li><a href="http://matplotlib.sourceforge.net/">matplotlib</a> updated from 0.90 to 0.91.2</li>
</ul>
</li>
<li><a href="http://en.wikipedia.org/wiki/Accessibility_Toolkit">atk</a> library updated from 1.10.3 to 1.22.0</li>
<li><a href="http://www.cairographics.org/">cairo</a> library updated from 1.1.6 to 1.6.4</li>
<li><a href="http://heasarc.nasa.gov/docs/software/fitsio/c/c_user/cfitsio.html">cfitsio</a> library updaed from 3.040 to 3.080</li>
<li><a href="http://en.wikipedia.org/wiki/GLib">glib</a> library updated from 2.8.6 to 2.16.3</li>
<li><a href="http://en.wikipedia.org/wiki/GLib">glib</a>-1.2.10 library added as well (possibly for a particular package needing older version of library)</li>
<li><a href="http://en.wikipedia.org/wiki/Gtk%2B">gtk+</a> library updated from 2.8.19 to 2.12.9</li>
<li><a href="http://en.wikipedia.org/wiki/Gtk%2B">gtk+</a>-1.2.10 library added as well (possibly for a particular package needing older version of library)</li>
<li><a href="http://en.wikipedia.org/wiki/Pango">pango</a> library updated from version 1.10.4 to 1.20.2</li>
<li><a href="http://lists.freedesktop.org/archives/xorg-announce/2008-March/000529.html">pixman</a> 0.10.0 library added</li>
<li><a href="http://www.libtiff.org/">libtiff</a> library upgraded from 3.7.4 to 3.8.2</li>
</ul>
<p>Hats off to the <a href="http://web.mac.com/npirzkal/Scisoft/Scisoft.html">SciSoft OSX</a> folks for keeping this package up to date. I have placed a copy in my <a href="http://iparrizar.mnstate.edu/~juan/urania/scisoft-osx-download/">SciSoft OSX mirror</a> in case there are any access issues.</p>
]]></content:encoded>
			<wfw:commentRss>http://iparrizar.mnstate.edu/~juan/urania/2008/05/28/scisoft-osx-200851-released-with-my-installation-notes/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
