When I first started programming AVR microcontrollers, Elliot Williams' Make: AVR Programming was my main reference (and still is for a lot of things). It was from this book that I got my programming environment setup through AVR CrossPack (which I believe included avrdude). Of course, I went this route because I was using a Mac. This worked great for the past 5 years but when I updated the OS, I ran into problems, two of which got me:
port install avr-gcc
port install avrdude
I then tried to build my code and got some mysterious errors about avr/io.h not being found. This made sense. Either uninstalling AVR CrossPack uninstalled the libraries or I was linked to the correct location. I couldn't find where the library was so I figured it got removed. Searching avr on macports I realized that their is an avr-libc port which has the libraries I was looking for. After installing that I updated the paths to the includes and libraries (which for me are installed in /opt/local/ and can be found by using the contents command with macports: port contents avr-libc) and was good to go. I hope this helps anyone who was updating their Mac OS!