Ticket #60408: macports.conf

File macports.conf, 8.2 KB (added by RobK88, 4 years ago)
Line 
1# $Id: macports.conf.in 117120 2014-02-17 00:55:33Z jmr@macports.org $
2
3# MacPorts system-wide configuration file.
4# Commented-out values are defaults unless otherwise noted.
5
6# Directory under which MacPorts should install ports. This must be
7# where MacPorts itself is installed.
8prefix                  /opt/local
9
10# User to run operations as when MacPorts drops privileges.
11#macportsuser           macports
12
13# Directory for MacPorts working data.
14portdbpath              /opt/local/var/macports
15
16# Colon-delimited list of directories to search for external tools
17# (make(1), pkg-config(1), etc.). While installing ports, MacPorts uses
18# this list for PATH. Changing this setting is intended for advanced
19# users only and is unsupported.
20#binpath                /opt/local/bin:/opt/local/sbin:/bin:/sbin:/usr/bin:/usr/sbin
21
22# Directory containing Xcode Tools. By default, MacPorts determines this
23# using xcode-select(1).
24#developer_dir          /Applications/Xcode.app/Contents/Developer
25
26# Location of PackageMaker. Defaults to
27# "${developer_dir}/Applications/Utilities/PackageMaker.app" with Xcode
28# 4.2 and earlier and "/Applications/PackageMaker.app" with 4.3 and later.
29#packagemaker_path      /Applications/PackageMaker.app
30
31# Directory for application bundles installed by ports.
32applications_dir        /Applications/MacPorts
33
34# Directory for frameworks installed by ports.
35frameworks_dir          /opt/local/Library/Frameworks
36
37# Location of the MacPorts sources list.
38sources_conf            /opt/local/etc/macports/sources.conf
39
40# Location of the MacPorts global variants definition file. Optional.
41variants_conf           /opt/local/etc/macports/variants.conf
42
43# When MacPorts should build ports from source.
44# - ifneeded: Download binary archives if available; build from source
45#   otherwise.
46# - always: Always build from source; never try fetching archives.
47# - never: Never build from source; try fetching archives and abort if
48#   unavailable.
49cxx_stdlib                              libc++
50buildfromsource         always
51delete_la_files                 yes
52
53# Type of archive to use for port images. Supported types are cpgz,
54# cpio, tar, tbz, tbz2, tgz, tlz, txz, xar, zip.
55#portarchivetype        tbz2
56
57# CPU architecture to target. Supported values are "ppc", "ppc64",
58# "i386", and "x86_64". Defaults to:
59# - OS X 10.5 and earlier: "ppc" on PowerPC, otherwise "i386".
60# - OS X 10.6 and later: "x86_64" on Intel 64, otherwise "i386".
61#build_arch             i386
62
63# Space-delimited list of CPU architectures to target when building
64# universal. Defaults to "i386 ppc" on OS X 10.5 and earlier and
65# "x86_64 i386" on OS X 10.6 and later.
66universal_archs         x86_64 i386
67
68# Use ccache, a compiler cache for C, C++, Objective-C, and
69# Objective-C++. (See http://ccache.samba.org.) The "ccache" executable
70# must exist in one of the directories in binpath.
71#configureccache        no
72
73# Directory for ccache's cached compiler output.
74#ccache_dir             /opt/local/var/macports/build/.ccache
75
76# Maximum size of files stored in ccache's cache. Append "G", "M", or
77# "K" for gigabytes, megabytes, or kilobytes.
78#ccache_size            2G
79
80# Use distcc, a distributed compiler for C, C++, Objective-C, and
81# Objective-C++. (See http://distcc.org.) The "distcc" executable must
82# exist in one of the directories in binpath.
83#configuredistcc        no
84
85# Use pipes rather than temporary files for communication between the
86# various stages of C, C++, Objective-C, and Objective-C++ compilation.
87#configurepipe          yes
88
89# Lowered scheduling priority to use for commands run during configure,
90# build, and destroot. Accepted values are 0 (normal priority) through
91# 20 (lowest priority).
92#buildnicevalue         0
93
94# Number of simultaneous make(1) jobs to use when building ports. If set
95# to 0, the number of jobs will be the lesser of:
96# - number of automatically-detected CPU cores
97# - gigabytes of physical memory + 1
98#buildmakejobs          0
99
100# umask value to use when a port installs its files.
101#destroot_umask         022
102
103# Automatically execute "clean" after "install" of ports.
104#portautoclean          yes
105
106# Keep logs after successful installations.
107#keeplogs               no
108
109# The rsync server for fetching MacPorts base during selfupdate. This
110# setting is NOT used when downloading the ports tree; the sources for
111# the ports tree are set in sources.conf. See
112# https://trac.macports.org/wiki/Mirrors#MacPortsSource for a list of
113# available servers.
114#rsync_server           rsync.macports.org
115
116# Location of MacPorts base sources on rsync_server. If this references
117# a .tar file, a signed .rmd160 file must exist in the same directory
118# and will be used to verify its integrity. See
119# https://trac.macports.org/wiki/Mirrors#MacPortsSource to find the
120# correct rsync_dir for a particular rsync_server.
121#rsync_dir              release/tarballs/base.tar
122
123# Options to pass to rsync when fetching MacPorts base and the ports tree.
124#rsync_options          -rtzv --delete-after
125
126# Type of generated StartupItems.
127# - launchd: Create StartupItems for use with launchd.
128# - systemstarter: Create StartupItems for use with SystemStarter.
129# - rcng: Create StartupItems for use with the rc.d system.
130# - default: Create StartupItems for launchd on OS X and for rc.d on
131#   other platforms.
132# - none: Disable creation of StartupItems.
133#startupitem_type       default
134
135# Create system-level symlinks to generated StartupItems. If set to
136# "no", symlinks will not be created; otherwise, symlinks will be placed
137# in /Library/LaunchDaemons or /Library/LaunchAgents as appropriate.
138#startupitem_install    yes
139
140# Extra environment variables to keep. MacPorts sanitizes its
141# environment while processing ports, keeping:
142# - DISPLAY
143# - DYLD_FALLBACK_FRAMEWORK_PATH, DYLD_FALLBACK_LIBRARY_PATH,
144#   DYLD_FRAMEWORK_PATH, DYLD_INSERT_LIBRARIES, DYLD_LIBRARY_PATH
145# - JAVA_HOME
146# - ARCHIVE_SITE_LOCAL, MASTER_SITE_LOCAL, PATCH_SITE_LOCAL
147# - PORTSRC
148# - ALL_PROXY, FTP_PROXY, http_proxy, HTTPS_PROXY, NO_PROXY, RSYNC_PROXY
149# - GROUP, USER
150# - COLUMNS, LINES
151# Variables listed in extra_env are added to this list. This has no
152# default value; setting it is intended for advanced users and is
153# unsupported. (Note that sudo(8) sanitizes its environment on OS X 10.5
154# and later, so it may have to be configured to pass the desired
155# variables to MacPorts.)
156#extra_env              KEEP_THIS THIS_TOO
157
158# Override proxy-related environment variables. By default, MacPorts
159# takes proxy settings from the environment, from the proxy_* options
160# below, and from Network Preferences, in that order. If this is set to
161# "yes", MacPorts uses proxy_*, then Network Preferences, then the
162# environment. (Note that Network Preferences does not have a setting
163# for rsync proxies. Also note that sudo(8) sanitizes its environment on
164# OS X 10.5 and later, so it may have to be configured to pass desired
165# variables to MacPorts.)
166#proxy_override_env     no
167
168# Proxies. These have no default values. The analogous environment
169# variables are "http_proxy", "HTTPS_PROXY", "FTP_PROXY", and
170# "RSYNC_PROXY".
171#proxy_http             proxy1:12345
172#proxy_https            proxy2:67890
173#proxy_ftp              proxy3:02139
174#proxy_rsync            proxy4:11377
175
176# Comma-delimited list of hosts that MacPorts should not access through
177# the HTTP, HTTPS, and FTP proxies. This does not apply to rsync, and it
178# has no default value.
179#proxy_skip             host1, host2, host3
180
181# Space-delimited lists of download hosts that MacPorts should not use
182# and that MacPorts should prefer, respectively, overriding the usual
183# ping time checks. These have no default values.
184#host_blacklist         badhost1 badhost2
185#preferred_hosts        preferredhost1 preferredhost2
186
187# Whether MacPorts should automatically run rev-upgrade after upgrading
188# ports.
189#revupgrade_autorun     yes
190
191# Whether rev-upgrade should automatically rebuild ports with broken
192# linking or merely report the breakage. Supported values are "report"
193# and "rebuild".
194#revupgrade_mode        rebuild
195
196# Space-delimited list of files and directories to delete after the
197# unarchive stage and before creating a pkg. Paths are interpreted
198# relative to prefix, and there is no default value. This is useful for
199# removing unnecessary files and directories prior to pkg or mpkg
200# deployment.
201#pkg_post_unarchive_deletions   include share/doc share/man
202
203# default_compilers macports-clang-5.0 macports-clang-4.0 macports-clang-3.9 macports-clang-3.8 macports-clang-3.7 clang