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