MacPorts on Mavericks

Kommentieren Oct 24 2013 .txt, .json, .md

Nach einem Update auf Mavericks kann es vorkommen, dass macports nicht mehr lauffähig ist und alle Aktualisierungen abbricht.

Folgendes hat bei mir geholfen:


xcode-select --install



xcodebuild -license



curl -O https://distfiles.macports.org/MacPorts/MacPorts-2.2.0.tar.bz2



tar jxvf MacPorts-2.2.0.tar.bz2



cd MacPorts-2.2.0



CC=/usr/bin/cc ./configure --prefix=/opt/local --with-install-user=root 

--with-install-group=admin --with-directory-mode=0755 --enable-readline 

--with-tclpackage=/Library/Tcl 

--with-tcl=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/System/Library/Frameworks/Tcl.framework 

--with-tclinclude=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/System/Library/Frameworks/Tcl.framework/Headers



make



make install

Danach kann man wie gewohnt macports aktualisieren.

via