| 1 | # MacPorts system wide configuration file, tests module |
|---|
| 2 | # $Id$ |
|---|
| 3 | |
|---|
| 4 | # Set the directory in which to install ports |
|---|
| 5 | prefix /tmp/macports-tests/opt/local |
|---|
| 6 | |
|---|
| 7 | # Where to store MacPorts working data |
|---|
| 8 | portdbpath /tmp/macports-tests/opt/local/var/macports |
|---|
| 9 | |
|---|
| 10 | # Type of storage to use for the port registry information, "flat" or "sqlite" |
|---|
| 11 | # NOTE: sqlite not yet supported. |
|---|
| 12 | portdbformat flat |
|---|
| 13 | |
|---|
| 14 | # Type of installation to do for ports, "direct" or "image". See macports.conf(5) and online documentation. |
|---|
| 15 | portinstalltype image |
|---|
| 16 | |
|---|
| 17 | # Directory containing the X11 installation. |
|---|
| 18 | x11prefix /tmp/macports-tests/usr/X11R6 |
|---|
| 19 | |
|---|
| 20 | # Where to find the sources list. |
|---|
| 21 | sources_conf /tmp/macports-tests/opt/local/etc/macports/sources.conf |
|---|
| 22 | |
|---|
| 23 | # Where to find global variants definition file (optional) |
|---|
| 24 | #variants_conf /opt/local/etc/macports/variants.conf |
|---|
| 25 | |
|---|
| 26 | # Create and use binary archive packages for installation/reinstallation ease |
|---|
| 27 | portarchivemode no |
|---|
| 28 | |
|---|
| 29 | # Where to store/retrieve ports binary archive files |
|---|
| 30 | portarchivepath /tmp/macports-tests/opt/local/var/macports/packages |
|---|
| 31 | |
|---|
| 32 | # Type of binary archive packages to create when using archive mode |
|---|
| 33 | # |
|---|
| 34 | # Note: Multiple types ARE allowed and must be a colon or comma |
|---|
| 35 | # separated list of choices (NO spaces). Use of multiple types will |
|---|
| 36 | # cause archive creation to build all the specified types in one step. |
|---|
| 37 | # Unarchive uses multiple types as a search list to locate the archive, |
|---|
| 38 | # first archive to match one of the specified types in order is used. |
|---|
| 39 | # |
|---|
| 40 | # Supported types: tgz (default), tar, tbz, tbz2, xar, zip, cpgz, cpio |
|---|
| 41 | portarchivetype tbz |
|---|
| 42 | |
|---|
| 43 | # Set whether to automatically execute "clean" after "install" of ports |
|---|
| 44 | portautoclean yes |
|---|
| 45 | |
|---|
| 46 | # Rsync server to fetch MacPorts sources from |
|---|
| 47 | rsync_server rsync.macports.org |
|---|
| 48 | |
|---|
| 49 | # Rsync directory from which to pull the base/ component (infrastructure) of MacPorts |
|---|
| 50 | rsync_dir release/base/ |
|---|
| 51 | |
|---|
| 52 | # Rsync options |
|---|
| 53 | rsync_options -rtzv --delete-after |
|---|
| 54 | |
|---|
| 55 | # Options for generated startup items |
|---|
| 56 | # startupitem_type may be "default", "systemstarter", or "launchd"; |
|---|
| 57 | # if the option is empty or "default" then a startupitem type appropriate |
|---|
| 58 | # to the platform will be chosen. Tiger will default to launchd, while |
|---|
| 59 | # older Mac OS X systems will default to systemstarter. |
|---|
| 60 | startupitem_type default |
|---|
| 61 | |
|---|
| 62 | # Extra environment variables to keep. Any variables listed here are added |
|---|
| 63 | # to the list of variables that are not removed from the environment used |
|---|
| 64 | # while processing ports |
|---|
| 65 | # extra_env KEEP_THIS THIS_TOO |
|---|
| 66 | extra_env ENVA ENVB |
|---|