wiki:FAQ

Version 54 (modified by raimue (Rainer Müller), 15 years ago) (diff)

PHP5 now uses Apache2 by default

See also HOWTO section

Table of Contents

  1. General Questions
    1. A port fails to build
    2. I get the error "C compiler cannot create executables" when I try to install a port
    3. Is MacPorts Universal?
    4. Why is /opt/local the default install location for MacPorts?
    5. How do I remove or uninstall MacPorts?
    6. What are the folders in `${prefix}/var/macports/ for and why do they take up so much space?
    7. I get Error: checksum (md5/sha1/rmd160) mismatch for port. What can I do about it?
    8. Where can I find a GUI frontend for MacPorts?
    9. What do I do if port selfupdate doesn't work or the Rsync server refuses connections?
    10. When I run port list installed I see the identical versions of some ports installed, why?
  2. Software Questions
    1. Python fails to build
    2. How do I get readline support for MacPort's Python?
    3. Why can't I import foo in Python 2.5?
    4. Will MacPorts link to system libraries rather than its own?
    5. Why is MacPorts using its own libraries?
    6. GNOME has an empty menu
  3. Portfile Development and Maintenance Questions
    1. Is it possible to have a dependency on a specific variant of another port? E.g. "postgresql8 +server"?
    2. Why won't portindex work? I have a local repository set up
    3. Why was the cd command removed from trunk?
    4. What is the process for becoming a committer?
  4. Runtime Errors
    1. I try to disable a variant, but it just informs me of the proper usage for the port command
    2. When uninstalling a port I get an error like port uninstall failed: invalid command name "portuninstall::uninstall". What's going on?
    3. When trying to selfupdate, I get the error: failed to connect to rsync.macports.org: Connection refused (61)

General Questions

A port fails to build

Before filing a bug in the issue tracker, please make sure you have the latest version of MacPorts and of the ports tree by running

sudo port selfupdate

Also, make sure you have the latest version of Xcode. Old versions of Xcode are known to make certain ports fail.

I get the error "C compiler cannot create executables" when I try to install a port

You need to install Xcode. Ensure you include both X11SDK and Unix Development.

Is MacPorts Universal?

MacPorts works on both Intel- and PowerPC-based Macs, but the ports you install will be compiled only for the architecture you're currently running on. This means that if you migrate from, say, a PowerPC Mac to an Intel one and use Migration Assistant to copy your data to the new machine, you should reinstall all your ports on the new machine to rebuild them for Intel. It may be simpler to completely remove all of MacPorts and start fresh. See below for uninstallation instructions, but be sure to keep any configuration files you need.

For many ports, there's now an alternative: select the +universal variant when you build each port, and MacPorts will create universal binaries that work on both Intel and PowerPC. This can be useful if you anticipate migrating to a different Mac soon, or if you want to install MacPorts on an external hard drive that's used by both Intel- and PowerPC-based Macs. But note that because +universal is new, it may not work correctly for all ports, even if no error message is shown during installation. If you find a port that will not build with +universal, or if it builds but then does not work correctly, please file a bug report. If you can provide a patch to fix the problem, that's even better.

Some ports may only work on PowerPC Macs or only on Intel Macs. In some cases, these are bugs that need to be fixed. If there is a newer version of the software available, you should report this to the port maintainer. Maybe the new version works correctly on both architectures. If the port is already using the latest version, report the problem to the upstream authors of the software; the software may need to be updated. In other cases, the software may be specifically written for one processor architecture such that it will not be possible to make it available to the other.

See also Universal for a list of ports that were tested for +universal support and the results.

Why is /opt/local the default install location for MacPorts?

/opt/local was chosen so as to avoid stomping on other various installations (e.g. fink uses /sw to do the same); /usr/local is not a viable choice for several reasons:

  1. Some software (especially auto* tools from Gnu) look in /usr/local as a default location, which means MacPorts can't be easily isolated when needed
  2. /usr/local is usually reserved for the given system's admin to install items local to that system, and tends to be a bad choice to have taken over by a non-system port system
  3. gcc considers /usr/local to be a standard system directory, causing (at least) the include directory to be unable to appear early in the list of include directories, and hence causing MacPorts-installed items to be difficult to use properly for items which need them (where another version is installed elsewhere, like /usr/X11R6)

How do I remove or uninstall MacPorts?

MacPorts can be removed by issuing the following command from within Terminal using the regular bash shell (${prefix} being the directory onto which you installed MacPorts, /opt/local by default):

sudo rm -rf ${prefix} \
/Applications/MacPorts \
/Applications/DarwinPorts \
/Library/Tcl/macports1.0 \
/Library/Tcl/darwinports1.0 \
/Library/LaunchDaemons/org.macports.* \
/Library/StartupItems/DarwinPortsStartup \
/Library/Receipts/MacPorts*.pkg \
/Library/Receipts/DarwinPorts*.pkg \
/etc/manpaths.d/macports \
/etc/paths.d/macports

If you use another shell, such as tcsh, you may need to adopt the above to fit the syntax of your shell.

Please note that this command removes all software installed using MacPorts as well as MacPorts itself. This includes configuration files for any ports which were installed; if you need to keep them, back them up before the rm (they should be in /opt/local/etc).

This command does not remove files installed to locations outside the agreed directory tree. Thus ports that write in other places should be removed manually before removing MacPorts altogether. This includes at least xfig and transfig, but probably other X11 ports as well.

sudo port uninstall xfig
sudo port uninstall transfig

What are the folders in `${prefix}/var/macports/ for and why do they take up so much space?

man porthier says: "MacPorts runtime data", but it contains some more subfolders:

build

Is used during the building of ports, usually it contains only empty folders, does not take much space. During the building of a port there is a soft link ${prefix}/var/macports/sources/rsync.macports.org/release/ports/<category>/<name>/work pointing to the corresponding folder here.

distfiles

The downloaded sources of each built port, could be removed with port clean --dist <port>.

packages

Containing the binary archive of each installed port. Could be removed with port clean --archive <port> <version>+<variant>. These files are helpfull for uninstalling and later reinstalling the exact same ports (eg. for testing something). Only unpacking the archive is needed and no build will be performed. If these archives are never needed they can be disabled in ${prefix}/etc/ports/ports.conf with the portarchivemode option.

receipts

Contains detail information about each installed port, eg. which files belong to the port with corresponding checksums.

software

Contains the installed software itself. If a port is activated its files are hard links in the ${prefix} folders to the corresponding files here. port uninstall <port> <version>+<variant> would remove it from here, but then this port can not be used anymore.

sources

In the subfolder rsync.macports.org/release/base are the MacPorts sources themselves (e.g., for the port(1) command). A port selfupdate updates this from the MacPorts rsync server. In the subfolder rsync.macports.org/release/ports are folders for each port category and the ports themselves therein, where the corresponding Portfile and patches are found. port sync and also port selfupdate update this from the MacPorts rsync server.

I get Error: checksum (md5/sha1/rmd160) mismatch for port. What can I do about it?

MacPorts computes checksums of downloaded files to ensure they aren't corrupted and haven't been tampered with. Each portfile lists the checksums for the files that the port will download (using md5, sha1 and/or rmd160). If the computed checksum of the downloaded file doesn't match the one listed in the portfile, that means the file you downloaded is not the one the port designer used when creating the port, and so MacPorts stops the installation.

The first thing you should do if you get a checksum error is update your ports with sudo port sync — can you install the port now? If so, it means somebody else encountered the same checksum mismatch before and already fixed it.

If updating doesn't help, then you should attempt to discover why there is a checksum mismatch. There are several possible reasons:

  1. The file is corrupt. If it was corrupted by the transfer, download it again (port clean --all <portname> and port install <portname>). If it is corrupted on the server, there is not much you can do about it. Open a bug in Trac and assign it to the port's maintainer. As for solving the problem: if there are other mirrors, try one of them. You can also ask if someone has a complete file they can send you on the MacPorts users' mailing list.
  2. The developer has performed a "stealth upgrade". Sometimes upstream developers make "stealth upgrades" in which they change the contents of their distribution archive but not its version number, without informing MacPorts of this change. Perhaps the developer has repackaged the distribution with a different archiving program, or has fixed typos in the included documentation or made other presumably minor changes that did not warrant a regular release. This practice is not recommended because of the obvious difficulties it presents to MacPorts and other port systems that compute package checksums. Attempt to get confirmation from the developer of the software that this has occurred. If the developer cannot be reached, attempt to determine yourself whether a stealth upgrade has happened. Search the Internet and try to locate the older version of the archive that matches the checksum in the portfile. Also download the version currently available on the developer's site, extract both, and compare the contents (for example with diff -r -u <old> <new>). If the changes look minor and benign, or there are no changes at all, then it is safe for you to update the checksum in the portfile, and the port maintainer should be informed of this so that they can make the change official. If you cannot determine whether a stealth upgrade has taken place, ask for help on the users' mailing list.
  3. The file has been tampered with. It is perhaps somewhat unlikely yet theoretically possible (and it has happened a few times in practice) that the archive being distributed by the developer (or by a mirror) has been genuinely compromised. If a hacker was able to manipulate the developer's (or the mirror's) server, the hacker could have uploaded a revised archive containing malware (a virus, a trojan horse, a spam-sending platform, etc.) of the hacker's choosing, and you would certainly not want to install such software. You must attempt to determine, as above, whether this has occurred by contacting the developer, or by locating an older version of the archive and comparing them. You can also contact the port maintainer or the users' mailing list.
  4. A proxy is blocking your request. Some internet connections are protected by a proxy which may not allow file downloads, tar/zip downloads, or may not allow your particular computer to access the internet without being specifically allowed. In that case, the proxy may return a simple "disallowed" message (with an erroneous 200 status), which MacPorts mistakes for the file that should be downloaded. Examining the content of the downloaded file will determine if this is the case. If so, contact your network administrator for access.

Where can I find a GUI frontend for MacPorts?

There are several GUIs for MacPorts in development.

  • PortAuthority has been around for a long time. It's shareware and costs $20.
  • Pallet is a new GUI under development which can be installed with MacPorts by running sudo port install pallet.
  • Porticus is another new GUI currently in development.

What do I do if port selfupdate doesn't work or the Rsync server refuses connections?

First try sudo port -d selfupdate to get all errors to display. If your connection to the rsync server fails you may get blocked by a firewall or other network control software. If you run PeerGuardian disable all filters or create an exception for rsync.macports.org.

If getting through a firewall is not a possibility, there are other methods you can use which are a bit more manual:

When I run port list installed I see the identical versions of some ports installed, why?

Using port list installed will give confusing results as the 'list' command bases its version information only on what is the currently-available version; so if you have port foo installed at versions 1 and 2 (with 2 being the current version available), list installed will only show foo at version 2, twice.

Instead, use port installed which will show the version which is actually installed.

Software Questions

Python fails to build

If you get an error building Python like

Python/mactoolboxglue.c:440: warning: return makes integer from pointer without a cast Python/mactoolboxglue.c:440

your Xcode installation is incomplete (you are missing e.g. the QuickTime SDK).

How do I get readline support for MacPort's Python?

If you're using python24, install the py-readline port.

If you're using python25, install py25-readline.

Why can't I import foo in Python 2.5?

A number of "standard python modules" are built separately from the python25 port:

  • zlib (py25-zlib)
  • _hashlib (py25-hashlib)
  • _ssl (py25-socket-ssl)
  • _bsddb (py25-bsddb)
  • _sqlite3 (py25-sqlite3)
  • _tkinter (py25-tkinter)
  • bz2 (py25-bz2)
  • gdbm (py25-gdbm)
  • readline (py25-readline)
  • _curses, _curses_panel (py25-curses)

For further information about readline support in python25, see the above FAQ question. People with a FreeBSD background will find themselves familiar with this schema.

Will MacPorts link to system libraries rather than its own?

No, MacPorts maintains its own libraries.

Why is MacPorts using its own libraries?

There are several reasons to do so. First, it makes ports more compatible across different versions of Darwin/OS X. If we can rely on e. g. openssl 0.9.8 from MacPorts, we don't have to test every port that needs ssl for every available openssl installation. Apple's software tends to break from time to time (e. g. openssl refuses to build with an old zlib, but Apple shipped the old headers of the vulnerable zlib version). Third reason is up-to-dateness: Apple only features e. g. Python 2.3, not 2.4, with which some software does not work. The drawbacks on this behaviour also are minimal: Wasting 10MB for a Python installation is next to nothing if you have a GB-harddisk and gain consistency all the way in return.

GNOME has an empty menu

See the GNOME section of this Wiki for more information.

Portfile Development and Maintenance Questions

Is it possible to have a dependency on a specific variant of another port? E.g. "postgresql8 +server"?

No. The current state of the dependency engine is unable to handle specifying anything beyond "port X requires port Y" or "port X requires a file which can be provided by port Y." There have been discussions on revamping the engine (see the mailing list archives) but nothing concrete as yet. This is why the most useful variants really shouldn't be variants at all but rolled into the port itself.

This is ticket #126.

Why won't portindex work? I have a local repository set up

Your local repository needs the ports to be nested within a category for portindex to work, as explained in the relevant documentation.

Why was the cd command removed from trunk?

The cd command was removed from trunk in r28796. As of release 1.7.0 it will no longer be available for use in Portfiles. cd is harmful as it changes the current directory of the whole process and not only of the current Tcl interpreter. Also, it becomes unreliable when used inside phases and other phases begin to rely on it.

Please use absolute paths instead, starting with ${worksrcpath}. If you need to run a command with system, use it like system "cd ${worksrcpath} && autoreconf".

What is the process for becoming a committer?

The process is pretty much the same as for any other open source project. See the relevant documentation and the New commiters guide for what commit access to MacPorts entails.

Runtime Errors

I try to disable a variant, but it just informs me of the proper usage for the port command

When using

port <command> <portname> -<variant>

the dash in the command is going to be interpreted as an option, hence getting the usage message. It needs to be escaped away with a double-dash:

port <command> <portname> -- -<variant>

When uninstalling a port I get an error like port uninstall failed: invalid command name "portuninstall::uninstall". What's going on?

This is a known error caused by left overs from old MacPorts installations, specifically the ${prefix}/share/darwinports/Tcl/port1.0/portuninstall.tcl file that is no longer in the MacPorts source code (${prefix} expanding to whatever path was chosen upon initial installation of MacPorts, /opt/local by default). However, a reinstallation of the infrastructure (most commonly through port selfudpate) does not remove this file and therefore manual intervention is needed:

rm -f ${prefix}/share/darwinports/Tcl/port1.0/portuninstall.tcl
port -f selfupdate

These steps will remove the stray file and force a rebuild of the infrastructure, overriding the release number comparison done by "selfupdate" between the local copy and the one on the MacPorts rsync server. If this workaround does not clear the problem for you, please refer to the users mailing list with as much information as possible.

Be sure you have the latest MacPorts before removing portuninstall.tcl. I had the same problem that I couldn't uninstall ports and so I first ran a sudo port selfupdate to get the latest version of MacPorts and removed the tcl file afterwards. But when running sudo port -f selfupdate it gave me this error message: Failed to initialize ports system, couldn't read file "/opt/local/share/darwinports/Tcl/port1.0/portuninstall.tcl": no such file or directory and stopped working.

When trying to selfupdate, I get the error: failed to connect to rsync.macports.org: Connection refused (61)

Some firewalls, such as PeerGuardian, block connections to certain corporate IP addresses as a way to prevent software from "phoning home" and violating your privacy. Our main rsync server is hosted by Apple Inc. Self updating requires an rsync connection to download files, but this will be blocked. In order to work around this, you need to temporarily disable or white-list rsync.macports.org. Another alternative is to use another mirror that is not hosted by Apple.

The black list entry is all of Apple Inc's subnet, which is 17.0.0.0/8, in case you want to find it. PeerGuardian will filter your network connections even if it is not actively running as an application.