vote up 4 vote down star
1

Which do you use?

I am just in the process of installing sqlite3 from MacPorts (Mac version is 3.1.3 and Python 2.5 seems to be linked to a newer version, fileformat is new...) and have to download all the tools I'm sure fink allready knows about again = so far I have allways found everything with fink...

Which of the two do you use? Both? Are there any problems with using both side by side?

flag

11 Answers

vote up 6 vote down check

I read the article by Dan Benjamin, and don't see how it applies. In fact, both fink and darwinports follow the advice in it, substituting /usr/local with /sw or /opt/local.

That said, I have both on my Intel desktop and g4 laptop, and haven't had a problem running both. The only potential drawback is having different versions the same package, and running the wrong one since its first in your path. I generally install whatever I can using fink (simply because it was the fist one I installed), and using darwinports for packages fink doesn't have.

link|flag
vote up 3 vote down

I find I usualy prefer whichever one I'm not using at the time.

link|flag
2  
+1 Hilarious, and true. Well done. – Matt S. Oct 8 at 17:31
vote up 0 vote down

I use MacPorts. I've not used Fink much, so I can't give much of a comparison; we use Fink at work to maintain Unix-y software on our Macs, but that's it. I used to just compile stuff by hand into /usr/local, but since I began using MacPorts, I haven't looked back.

I do know that the Tcl scripts that are used by MacPorts are simple enough to write that I've written my own and helped to add a few new pieces of software to the MacPorts repo, so that's definitely a plus. (Maybe this is just as easy to do with Fink -- I wouldn't know.) I've also noticed that software gets updated pretty quickly in MacPorts -- for example, recently, new versions of GHC and Mercurial were available almost as soon as they were released. This is also a plus.

link|flag
vote up 2 vote down

I've used both Fink and macports

I used Fink for a few years from 2002-2005, back then it then there was no macPorts (it was called Darwin ports). The main reason I used Fink was because it provided binary distribution. This was a must on G3 with 512Mb

Fastforward 2008. I got an intel based mac. Fink had only outdated binary distributions for my platform. So I moved to macports, since I'm going to be compiling everything from source anyway.

I've found some difficulties installing some ports from Macports with a fresh install (mainly due to playing around with variants or conflicts with libraries installed by apple). Otherwise it has been fine and the community is responsive.

I haven't tried fink since but it seems that many of the ports in the stable tree are outdated.

However, there is no reason to install both on your system. The only problems that may arrise are

  1. Duplicate installations of the same libraries
  2. Related to 1, but you might get conflicts between libraries installed by either method depending on which one the conf script finds first. However it is the same problem with apple provided libraries.
link|flag
vote up 1 vote down

I tried Fink and got frustrated with it, though I've long since forgotten the details of why. I switched to MacPorts back when it was still DarwinPorts, and now I'm getting frustrated with it instead.

I find about half my development toolchain needs to be tweaked or rebuilt by hand after I've tried installing tools with MacPorts. I use Darcs for revision control, which requires GHC to build. I install both through MacPorts and discover that MacPorts is typically lagging weeks to months behind the current version of Darcs, so I end up using the stock Darcs to download current code and rebuild from scratch.

I've had such misadventures with selecting a toolchain for Python 2.5, PostgreSQL, psycopg, and SQLAlchemy that I'd rather go hide in a corner than think about it again.

In short, you might as well pick either Fink or MacPorts at random and then expect to spend a significant amount of time fixing or augmenting it.

link|flag
vote up 1 vote down

My fairly brief experience with DarwinPorts was not very satisfying. Switching to Fink made the old Debian user in me feel right and home, and for the (mostly scientific) tools I use the most I have found it to be very up-to-date.

Of course, I use source archive to get bleeding-edge updates. Sometime I get package build bugs, too. C'est la vie.

link|flag
vote up 0 vote down

Just a warning about Fink if you are behind a network proxy. The index is updated by either rsync or cvs. If neither can be proxied by your server, you can't update your local package list...

Didn't realise there was an alternative though, will try MacPorts.

link|flag
MacPorts also uses rsync for syncing, but it also supports alternatives over HTTP, see trac.macports.org/wiki/howto/… and trac.macports.org/wiki/howto/… – Raim Feb 17 at 19:09
vote up 0 vote down

This is a little subjective, but I prefer MacPorts. I've setup MacPorts to run from the trunk for the latest portfile releases. I had previously used fink, but the packages always seemed to be out of date.

link|flag
vote up 3 vote down

My impression is that Fink is more comprehensive, but MacPorts is more up-to-date. Installing both side-by-side will result in a lot of duplicated packages, but I'm not sure it will cause any real problems.

link|flag
No problems so far. I run both of them side-by-side. – ayaz Dec 25 '08 at 7:08
vote up 1 vote down

I have used both, although infrequently. I have not encountered a problem in using them side-by-side, although I can't recall a case where I was installing tools or dependencies between the two repositories.

link|flag
vote up 0 vote down

I actually download and compile any new tools to /usr/local/ instead of using fink or darwinports. Dan Benjamin has a great article on why.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.