1 | # MacPorts system wide configuration file |
---|
2 | # $Id: macports.conf.in 31197 2007-11-18 06:06:14Z jmpp@macports.org $ |
---|
3 | |
---|
4 | # Set the directory in which to install ports |
---|
5 | prefix /opt/local |
---|
6 | |
---|
7 | # Where to store MacPorts working data |
---|
8 | portdbpath /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 /usr/X11R6 |
---|
19 | |
---|
20 | # Where to find the sources list. |
---|
21 | sources_conf /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 yes |
---|
28 | |
---|
29 | # Where to store/retrieve ports binary archive files |
---|
30 | portarchivepath /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, tlz, xar, zip, cpgz, cpio |
---|
41 | portarchivetype tgz |
---|
42 | |
---|
43 | # Use ccache (C/C++ compiler cache) - see http://ccache.samba.org/ |
---|
44 | configureccache no |
---|
45 | |
---|
46 | # Use distcc (distributed compiler) - see http://distcc.samba.org/ |
---|
47 | configuredistcc no |
---|
48 | |
---|
49 | # Use pipes rather than intermediate files when compiling C/C++/etc |
---|
50 | configurepipe no |
---|
51 | |
---|
52 | # Lowered scheduling priority (0-20) to use for make when building ports |
---|
53 | buildnicevalue 0 |
---|
54 | |
---|
55 | # Number of simultaneous make jobs (commands) to use when building ports |
---|
56 | buildmakejobs 1 |
---|
57 | |
---|
58 | # Set whether to automatically execute "clean" after "install" of ports |
---|
59 | portautoclean no |
---|
60 | |
---|
61 | # Rsync server to fetch MacPorts sources from |
---|
62 | rsync_server rsync.macports.org |
---|
63 | |
---|
64 | # Rsync directory from which to pull the base/ component (infrastructure) of MacPorts |
---|
65 | rsync_dir release/base/ |
---|
66 | |
---|
67 | # Rsync options |
---|
68 | rsync_options -rtzv --delete-after |
---|
69 | |
---|
70 | # Options for generated startup items |
---|
71 | # startupitem_type may be "default", "systemstarter", "launchd", or "none"; |
---|
72 | # if the option is empty or "default" then a startupitem type appropriate |
---|
73 | # to the platform will be chosen. Tiger will default to launchd, while |
---|
74 | # older Mac OS X systems will default to systemstarter. If option "none" |
---|
75 | # is chosen, port startupitems are ignored and no startupitems are installed. |
---|
76 | startupitem_type default |
---|
77 | |
---|
78 | # Extra environment variables to keep. Any variables listed here are added |
---|
79 | # to the list of variables that are not removed from the environment used |
---|
80 | # while processing ports |
---|
81 | # extra_env KEEP_THIS THIS_TOO |
---|