# $Id: macports.conf.in 124307 2014-08-22 15:38:20Z jmr@macports.org $ # MacPorts system-wide configuration file. # Commented-out values are defaults unless otherwise noted. # Directory under which MacPorts should install ports. This must be # where MacPorts itself is installed. prefix @prefix_expanded@ # User to run operations as when MacPorts drops privileges. #macportsuser @RUNUSR@ # Directory for MacPorts working data. portdbpath @localstatedir_expanded@/macports # Colon-delimited list of directories to search for external tools # (make(1), pkg-config(1), etc.). While installing ports, MacPorts uses # this list for PATH. Changing this setting is intended for advanced # users only and is unsupported. #binpath @prefix_expanded@/bin:@prefix_expanded@/sbin:/bin:/sbin:/usr/bin:/usr/sbin # Directory containing Xcode Tools. By default, MacPorts determines this # using xcode-select(1). #developer_dir @DEVELOPER_DIR@ # Location of PackageMaker. Defaults to # "${developer_dir}/Applications/Utilities/PackageMaker.app" with Xcode # 4.2 and earlier and "/Applications/PackageMaker.app" with 4.3 and later. #packagemaker_path /Applications/PackageMaker.app # Directory for application bundles installed by ports. applications_dir @MPAPPLICATIONSDIR@ # Directory for frameworks installed by ports. frameworks_dir @MPFRAMEWORKSDIR@ # Location of the MacPorts sources list. sources_conf @MPCONFIGDIR_EXPANDED@/sources.conf # Location of the MacPorts global variants definition file. Optional. variants_conf @MPCONFIGDIR_EXPANDED@/variants.conf # When MacPorts should build ports from source. # - ifneeded: Download binary archives if available; build from source # otherwise. # - always: Always build from source; never try fetching archives. # - never: Never build from source; try fetching archives and abort if # unavailable. #buildfromsource ifneeded # Type of archive to use for port images. Supported types are cpgz, # cpio, tar, tbz, tbz2, tgz, tlz, txz, xar, zip. #portarchivetype tbz2 # CPU architecture to target. Supported values are "ppc", "ppc64", # "i386", and "x86_64". Defaults to: # - OS X 10.5 and earlier: "ppc" on PowerPC, otherwise "i386". # - OS X 10.6 and later: "x86_64" on Intel 64, otherwise "i386". #build_arch i386 # Space-delimited list of CPU architectures to target when building # universal. Defaults to "i386 ppc" on OS X 10.5 and earlier and # "x86_64 i386" on OS X 10.6 and later. universal_archs @UNIVERSAL_ARCHS@ # Use ccache, a compiler cache for C, C++, Objective-C, and # Objective-C++. (See http://ccache.samba.org.) The "ccache" executable # must exist in one of the directories in binpath. #configureccache no # Directory for ccache's cached compiler output. #ccache_dir @localstatedir_expanded@/macports/build/.ccache # Maximum size of files stored in ccache's cache. Append "G", "M", or # "K" for gigabytes, megabytes, or kilobytes. #ccache_size 2G # Use distcc, a distributed compiler for C, C++, Objective-C, and # Objective-C++. (See http://distcc.org.) The "distcc" executable must # exist in one of the directories in binpath. #configuredistcc no # Use pipes rather than temporary files for communication between the # various stages of C, C++, Objective-C, and Objective-C++ compilation. #configurepipe yes # Lowered scheduling priority to use for commands run during configure, # build, and destroot. Accepted values are 0 (normal priority) through # 20 (lowest priority). #buildnicevalue 0 # Number of simultaneous make(1) jobs to use when building ports. If set # to 0, the number of jobs will be the lesser of: # - number of automatically-detected CPU cores # - gigabytes of physical memory + 1 #buildmakejobs 0 # umask value to use when a port installs its files. #destroot_umask 022 # Automatically execute "clean" after "install" of ports. #portautoclean yes # Keep logs after successful installations. #keeplogs no # The rsync server for fetching MacPorts base during selfupdate. This # setting is NOT used when downloading ports trees; ports trees are # configured using the file referenced by sources_conf. See # https://trac.macports.org/wiki/Mirrors#MacPortsSource for a list of # available servers. #rsync_server rsync.macports.org # Location of MacPorts base sources on rsync_server. If this references # a .tar file, a signed .rmd160 file must exist in the same directory # and will be used to verify its integrity. See # https://trac.macports.org/wiki/Mirrors#MacPortsSource to find the # correct rsync_dir for a particular rsync_server. #rsync_dir release/tarballs/base.tar # Options to pass to rsync when fetching MacPorts base and the ports tree. #rsync_options -rtzv --delete-after # Type of generated StartupItems. # - launchd: Create StartupItems for use with launchd. # - systemstarter: Create StartupItems for use with SystemStarter. # - rcng: Create StartupItems for use with the rc.d system. # - default: Create StartupItems for launchd on OS X and for rc.d on # other platforms. # - none: Disable creation of StartupItems. # This setting only applies when building ports from source. #startupitem_type default # Create system-level symlinks to generated StartupItems. If set to # "no", symlinks will not be created; otherwise, symlinks will be placed # in /Library/LaunchDaemons or /Library/LaunchAgents as appropriate. # This setting only applies when building ports from source. #startupitem_install yes # Extra environment variables to keep. MacPorts sanitizes its # environment while processing ports, keeping: # - DISPLAY # - DYLD_FALLBACK_FRAMEWORK_PATH, DYLD_FALLBACK_LIBRARY_PATH, # DYLD_FRAMEWORK_PATH, DYLD_INSERT_LIBRARIES, DYLD_LIBRARY_PATH # - JAVA_HOME # - ARCHIVE_SITE_LOCAL, MASTER_SITE_LOCAL, PATCH_SITE_LOCAL # - PORTSRC # - ALL_PROXY, FTP_PROXY, http_proxy, HTTPS_PROXY, NO_PROXY, RSYNC_PROXY # - GROUP, USER # - COLUMNS, LINES # Variables listed in extra_env are added to this list. This has no # default value; setting it is intended for advanced users and is # unsupported. (Note that sudo(8) sanitizes its environment on OS X 10.5 # and later, so it may have to be configured to pass the desired # variables to MacPorts.) #extra_env KEEP_THIS THIS_TOO # Override proxy-related environment variables. By default, MacPorts # takes proxy settings from the environment, from the proxy_* options # below, and from Network Preferences, in that order. If this is set to # "yes", MacPorts uses proxy_*, then Network Preferences, then the # environment. (Note that Network Preferences does not have a setting # for rsync proxies. Also note that sudo(8) sanitizes its environment on # OS X 10.5 and later, so it may have to be configured to pass desired # variables to MacPorts.) #proxy_override_env no # Proxies. These have no default values. The analogous environment # variables are "http_proxy", "HTTPS_PROXY", "FTP_PROXY", and # "RSYNC_PROXY". #proxy_http proxy1:12345 #proxy_https proxy2:67890 #proxy_ftp proxy3:02139 #proxy_rsync proxy4:11377 # Comma-delimited list of hosts that MacPorts should not access through # the HTTP, HTTPS, and FTP proxies. This does not apply to rsync, and it # has no default value. #proxy_skip host1, host2, host3 # Space-delimited lists of download hosts that MacPorts should not use # and that MacPorts should prefer, respectively, overriding the usual # ping time checks. These have no default values. #host_blacklist badhost1 badhost2 #preferred_hosts preferredhost1 preferredhost2 # Whether MacPorts should automatically run rev-upgrade after upgrading # ports. #revupgrade_autorun yes # Whether rev-upgrade should automatically rebuild ports with broken # linking or merely report the breakage. Supported values are "report" # and "rebuild". #revupgrade_mode rebuild # Space-delimited list of files and directories to delete after the # unarchive stage and before creating a pkg. Paths are interpreted # relative to prefix, and there is no default value. This is useful for # removing unnecessary files and directories prior to pkg or mpkg # deployment. #pkg_post_unarchive_deletions include share/doc share/man # Whether the user interface should ask interactive questions #ui_interactive yes