How to build ImageMagick and install RMagick with MacPorts on Mac OS X Leopard

October 27th, 2007

Oh holy day, brand new operating system for me to poke my grubby little fingers at!

Leopard is a piece of work that is for sure, but for some of us getting back to the bliss that was the Rails development environment on Tiger will take a little doing. In today’s journey will get RMagick running again.

Apple has provided us with a near complete rails environment out of the box, but there are two big missing pieces: the mysql gem, and rmagick.

Normally, we would simply install rmagick with:

sudo port install ImageMagick
sudo gem install rmagick

But it turns out the tiff port in macports fails to build when using apples new implementation of opengl in leopard. so:

Getting RMagick, Leopard-Style

sudo port install tiff -macosx  #disables the linkage with Apple's open gl
sudo port install ImageMagick
sudo gem install rmagick

Simple as that.

Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • DZone
  • Digg
  • Reddit
  • del.icio.us
  • Blue Dot
  • StumbleUpon
  • Netscape
  • Ma.gnolia
  • Slashdot
  • Technorati
  • NewsVine
  • Netvouz

27 Responses to “How to build ImageMagick and install RMagick with MacPorts on Mac OS X Leopard”

  1. Stephan Says:

    Thanks! That’s just what I was looking into. It’s great to see how issues are found and solved by the community.

  2. Jordi Says:

    But is that using Apple’s ruby and rubygems, or MacPorts? I figured out the -macosx part, but my gem won’t build. Bitching about missing freetype, which is installed.

    Which ruby were you using?

  3. Jordi Says:

    Nevermind. I did sudo port install ImageMagick +no_x11, which means I had to do sudo port install ghostscript as well before installing the gem. Problem solved!

  4. InVisible Blog » Rails Stack on Leopard Says:

    [...] following the instructions at NullStyle [...]

  5. BryanD Says:

    I’m running into an issue when trying to install ImageMagick. I get the following error:

    sudo port install ImageMagick Error: Unable to execute port: invalid command name “destroot.violate_mtree”

    Any idea what’s going on?

    Thanks!

  6. Greg Says:

    BryanD…. Do sudo port selfupdate to get 1.5.2 which will fix that issue.

  7. napyfab:blog» Blog Archive » links for 2007-10-30 Says:

    [...] How to build ImageMagick and install RMagick with MacPorts on Mac OS X Leopard | Educate. Liberate. (tags: leopard ruby imagemagick rmagick mac rubyonrails osx rails macports gems guide) [...]

  8. aiwilliams Says:

    Thanks a TON!

  9. jonathan Says:

    I did the steps above, but this I got a “cannot find libMagick” error. Does anyone have any ideas?

    jonathan@:~$ sudo gem install rmagick Password: Need to update 1 gems from http://gems.rubyforge.org . complete Building native extensions. This could take a while… ERROR: While executing gem … (Gem::Installer::ExtensionBuildError) ERROR: Failed to build gem native extension.

    ruby gem_extconf.rb install rmagick

    sh configure

    Configuring RMagick 1.15.10 checking for gcc… gcc checking for C compiler default output file name… a.out checking whether the C compiler works… yes checking whether we are cross compiling… no checking for suffix of executables… checking for suffix of object files… o checking whether we are using the GNU C compiler… yes checking whether gcc accepts -g… yes checking for gcc option to accept ISO C89… none needed checking for gcc option to accept ISO C99… -std=gnu99 checking for gcc -std=gnu99 option to accept ISO Standard C… (cached) -std=gnu99 checking for ruby… /usr/bin/ruby checking for Magick-config… Magick-config checking for InitializeMagick in -lMagick… no configure: error: Can’t install RMagick. Can’t find libMagick or one of the dependent libraries. Check the config.log file for more detailed information. RMagick configuration failed with status 1.

    Gem files will remain installed in /Library/Ruby/Gems/1.8/gems/rmagick-1.15.10 for inspection. Results logged to /Library/Ruby/Gems/1.8/gems/rmagick-1.15.10/gem_make.out

    jonathan:~$ echo $PATH /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/local/bin:/usr/texbin:/opt/local/bin:/opt/local/sbin

    I went to config.log and saw this part above when it exited:

    ld: library not found for -ltiff collect2: ld returned 1 exit status configure:3243: $? = 1 configure: failed program was: | /* confdefs.h. / | #define PACKAGENAME “RMagick” | #define PACKAGETARNAME “RMagick-1.15.10.tar.gz” | #define PACKAGEVERSION “1.15.10″ | #define PACKAGESTRING “RMagick 1.15.10″ | #define PACKAGE_BUGREPORT “rmagick@rubyforge.org” | / end confdefs.h. / | | / Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern “C” | #endif | char InitializeMagick (); | int | main () | { | return InitializeMagick (); | ; | return 0; | }

    Any help would be appreciated!

  10. Ruby on Rails with Leopard (localhost, sites, apache, mysql, rmagick) at funkensturm. | Blog Says:

    [...] man mit MacPort RMagick installiert, ist hier schön [...]

  11. HowTo: ImageMagick + RMagick via Macports für Tiger at funkensturm. | Blog Says:

    [...] nun auch RMagick für ein aktuelles Projekt brauchte, dachte ich ich nehm einfach die Anleitung von hier (ok steht ja schon im Posttitel ist für Leopard und nicht für Tiger) Das hat natürlich nicht [...]

  12. Attila Says:

    Hi!

    Little bit different topic, but i tried to install rail mail, and the repo is not online! Could you make it alive?

    Thanks!

  13. nruest Says:

    sudo port install tiff -macosx

    yields:

    Error: Target org.macports.configure returned: configure failure: shell command ” cd “/opt/local/var/macports/build/optlocalvarmacportssourcesrsync.macports.orgreleaseportsgraphicsjpeg/work/jpeg-6b” && ./configure –prefix=/opt/local –enable-shared –enable-static ” returned error 1 Command output: checking for gcc… no checking for cc… no configure: error: no acceptable cc found in $PATH

    any ideas?

    thanks!

  14. nruest Says:

    Problem solved – install the apple developers package.

  15. Teabass - Andrew Nesbitt's Blog » Super Simple Ruby on Rails Install with MacPorts (for Leopard) Says:

    [...] This post might help too: http://nullstyle.com/2007/10/27/how-to-build-imagemagick-and-install-rmagick-with-macports-on-mac-os... [...]

  16. Bradley Coudriet » Leopard, ImageMagick gem Says:

    [...] http://nullstyle.com/2007/10/27/how-to-build-imagemagick-and-install-rmagick-with-macports-on-mac-os... Posted by Bradley Coudriet on Nov 21 2007 under web development, ruby, howto [...]

  17. Adam Hutchison Says:

    Just a heads-up… After solving the GCC issues by installing Xcode 3.0, I had some other issues getting this installed due to a missing GNUTAR in /usr/bin. For some reason, it was not existent on my factory Leopard install. I can’t be sure that it wasn’t there and somehow removed, but copying getting a copy of TAR from a Tiger install and dropping it into /usr/bin did the trick. Also, be sure to symlink tar to gnutar (ln -s /usr/bin/tar /usr/bin/gnutar), as MacPorts looks for /usr/bin/gnutar

  18. Installing RMagick on Leopard : reinventar Says:

    [...] Unfortunately it’s still a game of luck, pacience and preseverance. Luckily I followed the tutorial at onRails.org and managed to get things running after some time installing everything by hand from the source.  I guess the alternative would be to use something like MacPorts to install RMagick. [...]

  19. Andreas Gehret Says:

    Thanks a lot for the hint! Worked perfectly for me!

  20. renAbirero Says:

    Thanks !

  21. jomen Says:

    i had to set the path in /etc/paths.d to include “/opt/local/bin” for the “sudo gem install rmagick” to work

    otherwise alles gut, thanks

    j

  22. chrissflea's me2DAY Says:

    짹의 생각…

    바쁜 와중에 레일즈에서 이미지를 업로드 하는 PaperClip을 테스트 해봤다. 일단 Piston이 없어서 설치했고, 섬네일이 안나와서 보니까 RMagick이 설치안되어 있길래 gem 설치하려 했더니 안되서 이…

  23. Adhermedy Says:

    Good text!, bro

  24. Alan Bradburne » Blog Archive » Rails, MySQL and ImageMagick on OS X Leopard Says:

    [...] Just a note to myself for getting my other machines Rails environments up and running properly. Basically a collection of info from the Rails Weblog Angry Fly and NullStyle [...]

  25. Bookmarks for November 25th at dpwolf/blog Says:

    [...] How to build ImageMagick and install RMagick with MacPorts on Mac OS X Leopard | Educate. Liberate. – Guide to installing ImageMagick image processing tool from the command line using MacPorts. [...]

  26. Zubin Says:

    FYI – this worked for me:

    sudo port install ImageMagick && sudo gem install rmagick

    Perhaps a Leopard update fixed whatever wasn’t working before…?

  27. rmagick auf Mac Leopard » 42online Says:

    [...] Nach vielen Irrungen und Wirrungen hier die simple Lösung aus diesem Blog: [...]

Leave a Reply

parasite medications face wrinkles cialis approval treating chlamydia revatio efects colon cleaning buy discount viagra online buy xanax with no prescription cures for throat infection soma or valium ambien and side effects generic cheap viagra free phentermine medication skelaxin treatment for leukemia osteoporosis medication side effects cheap xanax without prescription skin fungal infection alcoholism medical treatment improve the appearance of skin pravachol online parasite infestation help for adhd ambien 10 cheap pain med how to use clomid aspirin soma dose cialis online cialis acne prescription gabapentin dosage skin swelling coreg buy vitamin a anti smoking buy extendaquin antibiotic herbs treating bipolar disorder levitra buy depression relief increased blood flow insomnia sleep problems generic cheap viagra viagra online cheap cialis advice test natural antibiotics discount medicines for pets scabies cure cheap order buy teeth whitening purchase viagra on line natural viagra products breast enlargement cheap bactrim xanax price asthma medication lexapro medicine med help online increase womens sex drive problems breathing how to stop smoking viagra cialis compare buy cialis online anxiety meds effective acne products buying ambien sexual power causes of chest pain diabetes treatment how to reduce high blood pressure where can i order phentermine arthritis therapy tamiflu flu buy plan b online herbs for breast growth phentermine without a perscription effects of ultram male body building chloramphenicol antibiotic hair loss products for men effects of allegra dogs health problems natural constipation remedies what are beta-blockers increasing breast size naturally canada over the counter antibiotics pharmacy top hair loss pharma kamagra profesional cialis big muscles cost of birth control arthritis help natural cure for erectile dysfunction natural eye drops legality of buying cialis online bactrim dosages medicine on line cheap viagra online prescription dog s health arthritis support reducing blood pressure canada drug store tablets to stop smoking best body building products hair loss treatment online lamictal drug atenolol interaction stopping smoking generic imitrex breast enhancer menopause cures women enhancement cat health info symptoms high blood pressure valium high pet medicine cheap phentermine without a prescription cat care safe place viagra online xanax by mail how to improve sleep cheap pfizer viagra cialis cod healthy pets avandamet body acne treatment cancer treatments buy vardenafil online blood pressure diet nexium prilosec vs how to white teeth ear infection symptoms hoodia weight loss abdominal pain symptoms ambien dosages scabies cure ciprofloxacin 500mg cheapest cialis uk how to stop hair loss valium without a prescription viagra from usa cialis without rx anti depression drugs treating urinary tract infection dark spot on skin pharmacy information us hiv treatment guidelines muscles pain relieve asthma cures tricor tablets breast cancer drugs purchase viagra online without prescription pain pregnancy relief weight loss how to where buy viagra health bone disorder celebrex generic tooth whitening california levitra buy levitra medicines to reduce heart rate sexual power drug lower blood pressure medication gonorrhea order prilosec online imitrex new weight loss drug celexa buy omega 3 best fat blockers relief from constipation buy alcoholism medications help sleep problems phentermine with hoodia beta-blocker med cialis best on-line drugstore stop premature ejaculation free home neck pain relief weight loss foods drug zyban how to reduce blood pressure buy griseofulvin without prescription online diazepam treatment of heart attacks levitra doses betablockers purchase levitra in canada pain behind knee shoulder pain gernic viagra how to make my teeth white order prilosec no prescription cialis online new breast cancer drug medication for high blood pressure dog thyroid cancer care cialis cod cat irritable bowel syndrome treating aids in africa discount erectile dysfunction medications tips for increasing breast size herpes varicella body building products clozapine medication levitra viagra cialis low price skin care tips flomax prescription xanax without perscription prescription drugs diuretics prescription new hair loss remedies citalopram 20mg buy weight loss product natural eye drops drug stores levitra 50mg teeth whitening california depression in men cialas on line buy generic depakote sex with levitra natural penis enlarger breast cost enhancement canada online pharmacy viagra light cure for pain coumadin information woman diet pills progesterone clomid discount viagra online building your body skin allergies relafen effectiveness omeprazole dosage tooth whitening california hair loss hair care information Buy Cialis Online breast enhancement products pills for acne weight loss drug doxycycline pregnant weight loss systems medical weight loss mass muscle skin disease cheap pain relief pain medications generic side effects medication to stop smoking levitra do for men xanax dosages older dog health prozac type 2 diabetes controlling high blood pressure promethazine cheapest carisoprodol persistent diarrhea phosphatidylserine complex remedies for stomach ulcers coumadin information how to lower blood pressure a reliever of arthritic pain rhinitis treatment beta blockers side effects discount cialis levitra viagra asthma treatments drugs for anxiety reason for high blood pressure actonel dosage aciphex how to buy viagra online no hangover blood pressure drug names prevacid online human parasite dogs weight discount vitamins supplements improving immune system how to increase fertility online xanax clozapine medication parkinson medications thyroid dogs alternative therapy for rheumatoid arthritis avodart prescription clomid prescription blood pressure treatment drugs acai berries phentermine with hoodia treating urinary tract infection weight loss vitamins causes of high blood pressure effects klonopin herpes medicine natural penis enlarger how to purchase cialis natural dog remedies cephalexin sinus viagra in mexico expected weight loss with phentermine asthma attack treatment valium no prescribtion treatment for high blood pressure buy paxil online cheap antibiotics online sildenafil 100mg healthy pet treats drugs weight loss muscle pain treatment how to improve sleep sleep disorder treatment zyrtec pills generic for zocor gonorrhea women symptoms diet supplements that work medication gonorrhea carisoprodol mg ambien doses acne tips ambien cost ulcers stomach generic imitrex spironolactone effects xenical mexico prescriptions male enhancements cure for high blood pressure neck muscle pain breast enhancement products new natural treatment for menopause symptoms heart failure drug therapy diabetes medical buy prescription drugs flomax generic buy viagra soft flavored buy lotrisone cream nutrition and bone health mirtazapine depression quit smoking programs cimetidine dose fertility in women bacteria producing antibiotics online viagra prescription online viagra buy periactin anti nausea medications gonorrhea cure nexium generic cheapest generic levitra natural pain cures lotensin buy ultram drug ramipril irritable bowel treatments pet health insurance weight loss products cheap hypnotherapy courses uk nexium generic type 2 diabetes metoprolol dose buy stromectol cialis buy online cephalexin prescription hypothyroidism treatments breast enlargement elevated blood pressure viagra online store safe pain reliever back medication on line osteoporosis exercises diazepam lorazepam discount viagra generic buy cabergoline revatio drug new depression treatments buy penisole dog health information drug list high blood pressure How To Buy Viagra cholesterol information diflucan otc blood pressure drug names medication metformin buy valium online cheap new depression treatments alternative hair loss cures penis enhancement pills cat health help drugs diet male sexual power diovan arthritis natural cure cheap cialis tadalafil dosage of valium enhancement breast buy viagra online cheap How Do I Order Viagra Online soma zolpidem dosage herpes drug arthritis natural cure zyban no prescription stroke treatment hyaluronic acid buy infection lung Viagra Cialis Online free hoodia treatment bacterial infections order phentermine levitra medicine care for a cat hyaluronic acid buy immune system supplement lanoxin generic atenolol withdrawal control of pain cheap fast valium ambien doses valium used symptoms of heart failure order bactroban buy cialis line natures antibiotic causes for high blood pressure cheap viagra online natural muscle and joint health different treatments of alcoholism buy viagra professional hair loss home remedy diuretic medication depression relief breast enhancer pills allergies online prescriptions viagra medication to stop smoking order flagyl depression relief beta blockers dangers of high blood pressure increasing penis size natural constipation remedies buy cheap tadalafil uk colon cleanes treatment for infertility stop smoking remedies how to white teeth where to order soma addictive ambien clomid sale new antibiotic drug help sleep problems buy discount viagra online