<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="/stylesheets/rss.css" type="text/css"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>OnRails.org: Installing RMagick on Leopard (without MacPorts or Fink)</title>
    <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description>Ruby On Rails and related matters.</description>
    <item>
      <title>Installing RMagick on Leopard (without MacPorts or Fink)</title>
      <description>&lt;p&gt;I&amp;#8217;ve recently upgraded to &lt;span class="caps"&gt;OS X 10&lt;/span&gt;.5 (Leopard), and all-in-all, I&amp;#8217;m pleased with the experience.  My biggest issue has been the default stacks behavior&amp;#8212;the icon changes to the last thing added to the stack, making visual identification unnecessarily cumbersome.  I worked around this annoyance (as outlined &lt;a href="http://www.ryanirelan.com/past/2007/10/31/leopard-stack"&gt;here&lt;/a&gt;) by changing the sort to name rather than date added, and adding a dummy folder named &amp;#8220;_1&amp;#8221; that will sort to the top.  For extra bonus points, I customized the icon of the dummy folder.  For some yet unknown reason, the most recently downloaded item still peeks through from time to time, but it&amp;#8217;s much better than before.&lt;/p&gt;


	&lt;p&gt;Maybe it&amp;#8217;s my Windows history showing through, but I went with the &amp;#8220;clean-sweep&amp;#8221; erase and install method.  For a non-developer, I&amp;#8217;d probably recommend the upgrade (and in fact I used that method for my Father-in-law&amp;#8217;s MacBook), but I had lots of custom bits scattered about my machine, and didn&amp;#8217;t want to be chasing any incompatibility gremlins.&lt;/p&gt;


	&lt;p&gt;So now, to get my development environment set up on the new machine&amp;#8230;  Leopard includes a fairly complete Rails stack out of the box, with a non-&lt;a href="http://hans.fugal.net/yodl/blosxom.cgi/mac/ruby-pack.html"&gt;broken&lt;/a&gt; Ruby, readline support, and most of the commonly used gems.  Read more &lt;a href="http://trac.macosforge.org/projects/ruby/wiki/WhatsNewInLeopard"&gt;here&lt;/a&gt;.&lt;/p&gt;


	&lt;p&gt;MySQL was not included, but the latest installer (mysql-5.0.45-osx10.4-i686.dmg) for 10.4 from dev.mysql.com downloads worked (mostly) fine.  The Server and the StartupItem install and operate correctly.  The PrefPane installs, but does not appear to actually do &amp;#8230; anything.  I&amp;#8217;ll have to work on that, but I can live without it for now.  After a bit of manual hacking on my database dump file from Tiger (where I was running a 5.1.x beta of MySQL), all my databases are back in place.&lt;/p&gt;


	&lt;p&gt;One last piece that I needed for my Rails apps&amp;#8212;RMagick.  I know it&amp;#8217;s possible to install RMagick and its dependencies, um, &amp;#8220;autoRMagickally&amp;#8221; via a package management system like MacPorts or Fink, but I prefer not to.  For some background on why not, you can read this &lt;a href="http://hivelogic.com/narrative/articles/using_usr_local"&gt;article at hivelogic&lt;/a&gt;.  The last time I was rebuilding my laptop and desktop near the same time, I put together a shell script to automate the process of installing RMagick.  I got it back out and dusted off the cobwebs, and voila!  RMagick on Leopard.  (note: replace wget with &amp;#8220;curl -O&amp;#8221;, if you don&amp;#8217;t have wget installed on your machine)  Here&amp;#8217;s the code:&lt;/p&gt;


&lt;div class="typocode"&gt;&lt;div class="codetitle"&gt;install_rmagick.sh&lt;/div&gt;&lt;pre&gt;&lt;code class="typocode_sh "&gt;#!/bin/sh
wget http://download.savannah.gnu.org/releases/freetype/freetype-2.3.5.tar.gz
tar xzvf freetype-2.3.5.tar.gz
cd freetype-2.3.5
./configure --prefix=/usr/local
make
sudo make install
cd ..

wget http://superb-west.dl.sourceforge.net/sourceforge/libpng/libpng-1.2.22.tar.bz2
tar jxvf libpng-1.2.22.tar.bz2
cd libpng-1.2.22
./configure --prefix=/usr/local
make
sudo make install
cd ..

wget ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v6b.tar.gz
tar xzvf jpegsrc.v6b.tar.gz
cd jpeg-6b
ln -s `which glibtool` ./libtool
export MACOSX_DEPLOYMENT_TARGET=10.5
./configure --enable-shared --prefix=/usr/local
make
sudo make install
cd ..

wget ftp://ftp.remotesensing.org/libtiff/tiff-3.8.2.tar.gz
tar xzvf tiff-3.8.2.tar.gz
cd tiff-3.8.2
./configure --prefix=/usr/local
make
sudo make install
cd ..

wget http://jaist.dl.sourceforge.net/sourceforge/wvware/libwmf-0.2.8.4.tar.gz
tar xzvf libwmf-0.2.8.4.tar.gz
cd libwmf-0.2.8.4
make clean
./configure
make
sudo make install
cd ..

wget http://www.littlecms.com/lcms-1.17.tar.gz
tar xzvf lcms-1.17.tar.gz
cd lcms-1.17
make clean
./configure
make
sudo make install
cd ..

wget ftp://mirror.cs.wisc.edu/pub/mirrors/ghost/GPL/gs860/ghostscript-8.60.tar.gz
tar zxvf ghostscript-8.60.tar.gz
cd ghostscript-8.60/
./configure  --prefix=/usr/local
make
sudo make install
cd ..

wget ftp://mirror.cs.wisc.edu/pub/mirrors/ghost/GPL/current/ghostscript-fonts-std-8.11.tar.gz
tar zxvf ghostscript-fonts-std-8.11.tar.gz
sudo mv fonts /usr/local/share/ghostscript

wget http://imagemagick.site2nd.org/imagemagick/ImageMagick-6.3.5-9.tar.gz
tar xzvf ImageMagick-6.3.5-9.tar.gz
cd ImageMagick-6.3.5
export CPPFLAGS=-I/usr/local/include
export LDFLAGS=-L/usr/local/lib
./configure --prefix=/usr/local --disable-static --with-modules --without-perl --without-magick-plus-plus --with-quantum-depth=8 --with-gs-font-dir=/usr/local/share/ghostscript/fonts
make
sudo make install
cd ..

sudo gem install RMagick&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;</description>
      <pubDate>Sat, 03 Nov 2007 00:07:00 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:58aaed88-7522-4004-8863-8f57e819423c</guid>
      <author>Solomon White</author>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink</link>
      <category>Rails Tips</category>
      <category>Ruby On Rails</category>
      <category>Rails</category>
      <category>rmagick</category>
      <category>leopard</category>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by Sven</title>
      <description>&lt;p&gt;I&amp;#8217;m not such a big fan of Fink (too outdated) and MacPorts (awfully poor dependency handling) either. But as my servers are running smoothly on Gentoo for years now, I&amp;#8217;ve chosen Gentoo Prefix as my distro of choice for the Mac, too. Here&amp;#8217;s more on how I did it:&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://www.bitcetera.com/en/tecblog/2008/05/08/gentoo-prefix-on-mac-os-x/" rel="nofollow"&gt;http://www.bitcetera.com/en/tecblog/2008/05/08/gentoo-prefix-on-mac-os-x/&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 03 Dec 2008 18:32:15 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:14a5c350-ceb2-4061-8f4e-467b28c5e029</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-4159</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by Sven</title>
      <description>&lt;p&gt;I&amp;#8217;m not such a big fan of Fink (too outdated) and MacPorts (awfully poor dependency handling) either. But as my servers are running smoothly on Gentoo for years now, I&amp;#8217;ve chosen Gentoo Prefix as my distro of choice for the Mac, too. Here&amp;#8217;s more on how I did it:&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://www.bitcetera.com/en/tecblog/2008/05/08/gentoo-prefix-on-mac-os-x/" rel="nofollow"&gt;http://www.bitcetera.com/en/tecblog/2008/05/08/gentoo-prefix-on-mac-os-x/&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 03 Dec 2008 18:31:54 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:1bdccbff-a23b-4b7c-8943-30ac46b192d9</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-4158</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by Tiffani</title>
      <description>&lt;p&gt;This was an absolutely &lt;strong&gt;great&lt;/strong&gt; post.  After fumbling around with ImageMagick and RMagick on OS X all day I was just about to hang it up like I&amp;#8217;d done a few months ago.  I wasn&amp;#8217;t working an absolutely clean install, so no other directions worked.  This did.  THAAAANKS!&lt;/p&gt;</description>
      <pubDate>Tue, 02 Dec 2008 00:17:42 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:7559fcf0-5b3c-4f72-9b52-89799c2ffae6</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-4157</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by manuel</title>
      <description>&lt;p&gt;Hi.
I install with this step but when try executing my web aplication in ruby on rails say this:&lt;/p&gt;


	&lt;p&gt;no such file to load&amp;#8212;RMagick&lt;/p&gt;


	&lt;p&gt;I test with this:
irb(main):001:0&amp;gt; require &amp;#8216;rubygems&amp;#8217;
=&amp;gt; true
irb(main):002:0&amp;gt; require &amp;#8216;rmagick&amp;#8217;
=&amp;gt; true&lt;/p&gt;


	&lt;p&gt;any idea? please.
thanks.&lt;/p&gt;</description>
      <pubDate>Tue, 11 Nov 2008 12:09:03 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:949532f4-a0db-41f2-bc79-4b5c2e24c00f</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-4128</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by b</title>
      <description>&lt;p&gt;when i try to install libwmf, and run the &amp;#8220;make&amp;#8221; command, I get the following error:&lt;/p&gt;


	&lt;p&gt;make: &lt;strong&gt;*&lt;/strong&gt; No rule to make target `clean&amp;#8217;.  Stop.&lt;/p&gt;


	&lt;p&gt;Is this some incompatibility with my compiler, and is the &amp;#8220;clean&amp;#8221; part needed (what does it do)?&lt;/p&gt;</description>
      <pubDate>Tue, 30 Sep 2008 16:26:13 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:4f652ee2-b80a-4739-8b94-e6dd803bb1d1</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-4031</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by Kyle</title>
      <description>&lt;p&gt;Thanks for this; saved me a bit of headache.&lt;/p&gt;


	&lt;p&gt;As of Sep 30, 2008, here&amp;#8217;s an updated version using curl and with 100% valid urls.&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://pastie.org/282226" rel="nofollow"&gt;http://pastie.org/282226&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 30 Sep 2008 16:21:30 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:4dfbab0f-360b-438f-b8fc-52add34a577f</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-4030</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by Cary</title>
      <description>&lt;p&gt;Thank you! Saved alot of time.&lt;/p&gt;</description>
      <pubDate>Wed, 10 Sep 2008 23:03:02 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:0fb7899c-515c-4f6b-9035-265d3d925f25</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-3974</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by Web Design Preston</title>
      <description>&lt;p&gt;Thanks to Julie for the URL&amp;#8217;s.  Saved me a heap of time.&lt;/p&gt;</description>
      <pubDate>Fri, 15 Aug 2008 13:47:05 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:cacd5e43-5037-43fa-a040-3cd2471949cd</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-3935</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by Jeffrey Krause</title>
      <description>&lt;p&gt;Here is the latest modified version which worked for me on a new leopard install, new links, new versions, etc:&lt;/p&gt;


&lt;pre&gt;
#!/bin/sh
curl -O &lt;a href="http://download.savannah.gnu.org/releases/freetype/freetype-2.3.7.tar.gz" rel="nofollow"&gt;http://download.savannah.gnu.org/releases/freetype/freetype-2.3.7.tar.gz&lt;/a&gt;
tar xzvf freetype-2.3.7.tar.gz
cd freetype-2.3.7
./configure --prefix=/usr/local
make
sudo make install
cd ..

curl -O &lt;a href="http://superb-west.dl.sourceforge.net/sourceforge/libpng/libpng-1.2.29.tar.bz2" rel="nofollow"&gt;http://superb-west.dl.sourceforge.net/sourceforge/libpng/libpng-1.2.29.tar.bz2&lt;/a&gt;
tar jxvf libpng-1.2.29.tar.bz2
cd libpng-1.2.29
./configure --prefix=/usr/local
make
sudo make install
cd ..

curl -O &lt;a href="http://quirkysoft.googlecode.com/files/jpegsrc.v6b.tar.gz" rel="nofollow"&gt;http://quirkysoft.googlecode.com/files/jpegsrc.v6b.tar.gz&lt;/a&gt;
tar xzvf jpegsrc.v6b.tar.gz
cd jpeg-6b
ln -s `which glibtool` ./libtool
export MACOSX_DEPLOYMENT_TARGET=10.5.4
./configure --enable-shared --prefix=/usr/local
make
sudo mkdir /usr/local/man/man1
sudo make install
cd ..

curl -O ftp://ftp.remotesensing.org/libtiff/tiff-3.8.2.tar.gz
tar xzvf tiff-3.8.2.tar.gz
cd tiff-3.8.2
./configure --prefix=/usr/local
make
sudo make install
cd ..

curl -O &lt;a href="http://voxel.dl.sourceforge.net/sourceforge/wvware/libwmf-0.2.8.4.tar.gz" rel="nofollow"&gt;http://voxel.dl.sourceforge.net/sourceforge/wvware/libwmf-0.2.8.4.tar.gz&lt;/a&gt;
tar xzvf libwmf-0.2.8.4.tar.gz
cd libwmf-0.2.8.4
make clean
./configure
make
sudo make install
cd ..

curl -O &lt;a href="http://www.littlecms.com/lcms-1.17.tar.gz" rel="nofollow"&gt;http://www.littlecms.com/lcms-1.17.tar.gz&lt;/a&gt;
tar xzvf lcms-1.17.tar.gz
cd lcms-1.17
make clean
./configure
make
sudo make install
cd ..

curl -O ftp://mirror.cs.wisc.edu/pub/mirrors/ghost/GPL/gs860/ghostscript-8.60.tar.gz
tar zxvf ghostscript-8.60.tar.gz
cd ghostscript-8.60/
./configure  --prefix=/usr/local
make
sudo make install
cd ..

curl -O ftp.yzu.edu.tw/mirror/pub1/Unix/Tex/CTAN/support/ghostscript/GPL/gs815/ghostscript-fonts-std-8.11.tar.gz
tar zxvf ghostscript-fonts-std-8.11.tar.gz
sudo mv fonts /usr/local/share/ghostscript

curl -O ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick-6.4.2-6.tar.gz
tar xzvf ImageMagick-6.4.2-6.tar.gz
cd ImageMagick-6.4.2
export CPPFLAGS=-I/usr/local/include
export LDFLAGS=-L/usr/local/lib
./configure --prefix=/usr/local --disable-static --with-modules --without-perl --without-magick-plus-plus --with-quantum-depth=8 --with-gs-font-dir=/usr/local/share/ghostscript/fonts
make
sudo make install
cd ..

sudo gem install rmagick
&lt;/pre&gt;</description>
      <pubDate>Tue, 12 Aug 2008 21:01:44 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:57c97798-e8a2-4f73-b783-ecabf6591704</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-3927</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by Bob F.</title>
      <description>&lt;p&gt;This worked pretty well on a brand new Leopard system. I used curl and adjusted some URLs, as mentioned by others already.&lt;/p&gt;


	&lt;p&gt;I&amp;#8217;d like to point out two problems:&lt;/p&gt;


	&lt;ol&gt;
	&lt;li&gt;It&amp;#8217;s important you build a later version of libpng, as there&amp;#8217;s a vulnerability in the version given here.&lt;/li&gt;
		&lt;li&gt;If you see this error during the installation phase of the jpeg &amp;#8221;/usr/local/man/man1/cjpeg.1: No such file or directory&amp;#8221; it just indicates that the directory /usr/local/man/man1 doesn&amp;#8217;t exist and you need to create it before running the install.&lt;/li&gt;
	&lt;/ol&gt;


	&lt;p&gt;Thanks for putting this together&amp;#8230; it saved me a ton of headaches.&lt;/p&gt;</description>
      <pubDate>Wed, 30 Jul 2008 00:05:13 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:4f31a999-21fa-4daf-ba83-87c85737b81b</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-3895</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by D. Starr</title>
      <description>&lt;p&gt;Hi, I&amp;#8217;m just wondering why you didn&amp;#8217;t compile Ghostscript as a framework (which seems to be the recommended way) and if you&amp;#8217;ve tested that your IM can actually call GS to delegate vector formats.&lt;/p&gt;</description>
      <pubDate>Fri, 06 Jun 2008 17:28:07 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:e3afa62f-06d3-472e-960e-482f8f3d4452</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-3687</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by Huy Tong</title>
      <description>&lt;p&gt;Nice script. I did the steps and it didn&amp;#8217;t work on my end. Something about the headers. I&amp;#8217;m trying the OSX installer now provided on the forge, I think it pretty much does what your script does but I&amp;#8217;ll wait and see.&lt;/p&gt;</description>
      <pubDate>Tue, 06 May 2008 16:24:28 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:5065e831-a7ca-4a0e-99ce-f86e666d40c5</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-3523</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by Lance Carlson</title>
      <description>&lt;p&gt;I think it&amp;#8217;s sudo gem install rmagick not RMagick. Otherwise everything worked pretty well with the urls from Julie.&lt;/p&gt;</description>
      <pubDate>Mon, 05 May 2008 05:55:31 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:fc3171aa-9cef-45d6-b710-37d315278ac3</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-3520</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by nick</title>
      <description>&lt;p&gt;Thank you very much! Everything worked! :)&lt;/p&gt;</description>
      <pubDate>Tue, 08 Apr 2008 10:30:47 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:3d97b8f6-d2db-4a67-9897-ac8b8dfc8760</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-3458</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by Julie</title>
      <description>&lt;p&gt;there was a problem with both ghostscript ftps, so I substituted:&lt;/p&gt;


	&lt;p&gt;wget &lt;a href="http://ufpr.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.60.tar.gz" rel="nofollow"&gt;http://ufpr.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.60.tar.gz&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;and&lt;/p&gt;


	&lt;p&gt;wget &lt;a href="http://ufpr.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-fonts-std-8.11.tar.gz" rel="nofollow"&gt;http://ufpr.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-fonts-std-8.11.tar.gz&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 11 Mar 2008 16:54:31 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:7bb48556-2319-4c39-aede-5309e97e570c</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-3379</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by Adam</title>
      <description>&lt;p&gt;@Peter: If you didn&amp;#8217;t figure this out already, the gem is in fact called &amp;#8216;rmagick&amp;#8217;, so &amp;#8220;sudo gem install rmagick&amp;#8221; should work for you.&lt;/p&gt;</description>
      <pubDate>Sun, 09 Mar 2008 00:12:39 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:6f90e0be-f365-41dd-8d72-736345390bb4</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-3376</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by Peter</title>
      <description>&lt;p&gt;hmmm, when i follow this guide, i eventually get this at the end (after gem install RMagick):
ERROR:  could not find RMagick locally or in a repository&lt;/p&gt;


	&lt;p&gt;any ideas/&lt;/p&gt;</description>
      <pubDate>Fri, 29 Feb 2008 20:26:44 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:954580bc-108b-429b-8ba5-4a77aabc44cb</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-3332</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by Justin Grevich</title>
      <description>&lt;p&gt;@Tim&lt;/p&gt;


	&lt;p&gt;You may also need to require &amp;#8216;rubygems&amp;#8217; before requiring RMagick in irb (depending if you are using an .irbrc or not). Somehow my OS X install of Ruby auto-installed an .irbrc for me. I posted an example of it here: &lt;a href="http://pastie.org/158471" rel="nofollow"&gt;http://pastie.org/158471&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;Hope that helps,&lt;/p&gt;


	&lt;p&gt;justin&lt;/p&gt;</description>
      <pubDate>Wed, 27 Feb 2008 22:55:08 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:17bcfb1c-3350-474a-84d4-420c47c019ed</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-3329</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by Dave Frey</title>
      <description>&lt;p&gt;Excellent, thanks a lot.&lt;/p&gt;


	&lt;p&gt;Your ImageMagick link was broken for me, but I found another here:
&lt;a href="http://ftp.surfnet.nl/pub/ImageMagick/ImageMagick-6.3.5-9.tar.gz" rel="nofollow"&gt;http://ftp.surfnet.nl/pub/ImageMagick/ImageMagick-6.3.5-9.tar.gz&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 28 Jan 2008 23:11:18 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:08e39203-7abc-48db-9e59-c6e6efd387df</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-3233</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by Robert Aganauskas</title>
      <description>@Tim: you have to require rubygems before rmagick i.e.
&lt;pre&gt;
irb(main):001:0&amp;gt; require 'rubygems'
=&amp;gt; true
irb(main):002:0&amp;gt; require 'RMagick'
=&amp;gt; true
&lt;/pre&gt;</description>
      <pubDate>Mon, 10 Dec 2007 05:26:03 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:bc183184-bb5e-4b16-b004-420c312e4764</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-3028</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by Patrick</title>
      <description>&lt;p&gt;thanks so much, worked like a champ.&lt;/p&gt;</description>
      <pubDate>Sat, 08 Dec 2007 04:57:24 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:c08630a2-f2da-4b14-954d-3c0259e00be4</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-3022</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by Markus Arike</title>
      <description>&lt;p&gt;I had great success with the rm_install.rb script that is available at RubyForge&amp;#8217;s RMagick &lt;a href="http://rmagick.rubyforge.org/"&gt;http://rmagick.rubyforge.org/&lt;/a&gt; page . It automates the process, much like the above script, but seems to do more clean up, error handling, etc. After trying to get it working on OSX for so long, to no avail, I finally have it. It&amp;#8217;s good day.&lt;/p&gt;</description>
      <pubDate>Fri, 30 Nov 2007 18:56:30 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:cc016478-8868-4a34-bd26-73e44528fcb4</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-2938</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by Simon Plenderleith</title>
      <description>&lt;p&gt;Dude&amp;#8230; you are an absolute saviour! I&amp;#8217;ve been going crazy trying to get ImageMagick working as I want it in Leopard. I changed the URLs as required and it worked great.&lt;/p&gt;


	&lt;p&gt;Thank you so much!&lt;/p&gt;</description>
      <pubDate>Wed, 28 Nov 2007 17:37:53 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:9b529b50-3b11-4c17-9ac0-c2263e8e9382</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-2893</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by kematzy</title>
      <description>&lt;p&gt;Thanks a lot!!  Worked a treat apart from the URL issues which were commented about above.&lt;/p&gt;</description>
      <pubDate>Fri, 23 Nov 2007 09:26:42 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:b681b301-9851-4b25-8fb1-94d54158bc20</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-2831</link>
    </item>
    <item>
      <title>"Installing RMagick on Leopard (without MacPorts or Fink)" by jm</title>
      <description>&lt;p&gt;A good link to compile wget once and for all on leopard :
&lt;a href="http://radio.javaranch.com/bear/2005/03/02/1109829480523.html"&gt;http://radio.javaranch.com/bear/2005/03/02/1109829480523.html&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;Thanks for this script !&lt;/p&gt;</description>
      <pubDate>Tue, 20 Nov 2007 08:52:59 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:1f93db30-f6f9-4a45-96ab-bf6380d534dc</guid>
      <link>http://onrails.org/articles/2007/11/03/installing-rmagick-on-leopard-without-macports-or-fink#comment-2826</link>
    </item>
  </channel>
</rss>
