Ticket #29266: macports.conf

File macports.conf, 5.3 KB (added by jonasjonas (Frank Hellenkamp), 13 years ago)

my macports.conf

Line 
1# MacPorts system wide configuration file
2# $Id: macports.conf.in 55280 2009-08-08 02:45:30Z jmr@macports.org $
3
4# Set the directory in which to install ports
5prefix                  /opt/local
6
7# Set the user to run MacPorts compiles, etc as when privileges are dropped during an install
8macportsuser            root
9
10# Where to store MacPorts working data
11portdbpath              /opt/local/var/macports
12
13# Type of storage to use for the port registry information, "flat" or "sqlite"
14portdbformat            sqlite
15
16# Type of installation to do for ports, "direct" or "image".  See macports.conf(5) and online documentation.
17portinstalltype         image
18
19# PATH settings that are used for external tools (configure, make, etc.) while installing ports. The default
20# paths are given in the example; it need not be uncommented.  Customizing binpath is intended for advanced users only.
21#binpath                /opt/local/bin:/opt/local/sbin:/bin:/sbin:/usr/bin:/usr/sbin
22
23# Directory containing Xcode Tools
24developer_dir       /Developer
25
26# Directory containing Applications from ports.
27applications_dir        /Applications/MacPorts
28
29# Directory containing Frameworks from ports.
30frameworks_dir          /opt/local/Library/Frameworks
31
32# Where to find the sources list.
33sources_conf            /opt/local/etc/macports/sources.conf
34
35# Where to find global variants definition file (optional)
36variants_conf           /opt/local/etc/macports/variants.conf
37
38# Create and use binary archive packages for installation/reinstallation ease
39portarchivemode         no
40
41# Where to store/retrieve ports binary archive files
42portarchivepath         /opt/local/var/macports/packages
43
44# Type of binary archive packages to create when using archive mode
45#
46# Note: Multiple types ARE allowed and must be a colon or comma
47# separated list of choices (NO spaces). Use of multiple types will
48# cause archive creation to build all the specified types in one step.
49# Unarchive uses multiple types as a search list to locate the archive,
50# first archive to match one of the specified types in order is used.
51#
52# Supported types: tgz (default), tar, tbz, tbz2, tlz, txz, xar, zip, cpgz, cpio
53portarchivetype         tgz
54
55# CPU architecture to compile for. Defaults to i386 or ppc on Mac OS X 10.5
56# and earlier, depending on the CPU type detected at runtime. On Mac OS X 10.6
57# the default is x86_64 if the CPU supports it, i386 otherwise.
58#build_arch                     i386
59
60# Use ccache (C/C++ compiler cache) - see http://ccache.samba.org/
61configureccache         no
62
63# Use distcc (distributed compiler) - see http://distcc.samba.org/
64configuredistcc         no
65
66# Use pipes rather than intermediate files when compiling C/C++/etc
67configurepipe           no
68
69# Lowered scheduling priority (0-20) to use for make when building ports
70buildnicevalue          20
71
72# Number of simultaneous make jobs (commands) to use when building ports. This
73# value may be set to 0 so the number of simultaneous make jobs will be set to
74# the number of CPU cores that are automatically detected, or the number of GB
75# of physical memory plus one, whichever is less.
76#buildmakejobs          0
77
78# Set whether to automatically execute "clean" after "install" of ports
79portautoclean           yes
80
81# Rsync server to fetch MacPorts sources from. Note that this is only used
82# for selfupdate. The source(s) for the ports tree are set in sources.conf.
83# Known mirrors at time of writing (see http://trac.macports.org/wiki/Mirrors
84# for the current list):
85#   rsync.macports.org        - California, USA (master)
86#   trd.no.rsync.macports.org - Trondheim, Norway
87rsync_server            rsync.macports.org
88
89# Rsync directory from which to pull the base/ component (infrastructure) of MacPorts
90rsync_dir                       release/base/
91
92# Rsync options
93rsync_options           -rtzv --delete-after
94
95# Options for Universal Binaries (+universal variant)
96
97# machine architectures
98universal_archs         x86_64 i386
99
100# Options for generated startup items
101# startupitem_type may be "default", "systemstarter", "launchd", or "none";
102# if the option is empty or "default" then a startupitem type appropriate
103# to the platform will be chosen. Mac OS X 10.4 Tiger and above will default to
104# launchd, while older Mac OS X systems will default to systemstarter. If
105# option "none" is chosen, port startupitems are ignored and no startupitems
106# are installed.
107startupitem_type        default
108
109# Extra environment variables to keep. Any variables listed here are added
110# to the list of variables that are not removed from the environment used
111# while processing ports
112# extra_env             KEEP_THIS THIS_TOO
113
114# Proxy support
115# Precedence is: env, macports.conf, System Preferences
116# That is, if it's set in the environment, that will be used instead of
117# anything here or in System Preferences.  Setting proxy_override_env to yes
118# will cause any proxies set here (or in System Preferences if set there but
119# not here) to override what's in the environment.
120# Note that System Preferences doesn't have an rsync proxy definition.
121# Also note, on 10.5, sudo will clear many environment variables including
122# those for proxy support.
123# Equivalent envioronment variables: http_proxy, HTTPS_PROXY, FTP_PROXY,
124# RSYNC_PROXY, NO_PROXY
125#
126#proxy_override_env    yes
127# HTTP proxy:
128#proxy_http            hostname:12345
129# HTTPS proxy:
130#proxy_https       hostname:12345
131# FTP proxy:
132#proxy_ftp         hostname:12345
133# rsync proxy:
134#proxy_rsync       hostname:12345
135# hosts not to go through the proxy (comma-separated, applies to HTTP, HTTPS,
136# and FTP, but not rsync):
137#proxy_skip            internal1, internal2, internal3