Forward port the changes from catalyst 1.1.9 to 1.1.10.10 to catalyst2. Need to...
[catalyst.git] / files / catalyst.conf
1 # Copyright 1999-2005 Gentoo Foundation
2 # Distributed under the terms of the GNU General Public License v2
3 # $Header: /var/cvsroot/gentoo/src/catalyst/files/catalyst.conf,v 1.12 2005/08/09 19:02:31 rocket Exp $
4
5 # Simple desriptions of catalyst settings. Please refer to the online
6 # documentation for more information.
7
8 # distdir specifies where your distfiles are located. This setting should
9 # work fine for most default installations.
10 distdir="/usr/portage/distfiles"
11
12 # options set different build-time options for catalyst. Some examples are:
13 # ccache = enables build time ccache support (highly recommended)
14 # distcc = enable distcc support for building. You have to set distcc_hosts in
15 #       your spec file.
16 # pkgcache = keeps a tbz2 of every built package (useful if your build stops
17 #       prematurely)
18 # kerncache = keeps a tbz2 of your built kernel and modules (useful if your
19 #       build stops in livecd-stage2)
20 # seedcache = use the build output of a previous target if it exists to speed up 
21 #       the copy
22 # snapcache = cache the snapshot so that it can be bind-mounted into the chroot.
23 options="pkgcache kerncache"
24
25 # sharedir specifies where all of the catalyst runtime executables are. Most
26 # users do not need to change this.
27 sharedir="/usr/lib/catalyst"
28
29 # storedir specifies where catalyst will store everything that it builds, and
30 # also where it will put its temporary files and caches.
31 storedir="/var/tmp/catalyst"
32
33 # snapshot_cache specifies where the snapshots will be cached to if snapcache is
34 # enabled in the options.
35 # snapshot_cache="<path_to_new_cache_dir>"
36
37 # envscript allows users to set options such as http proxies, MAKEOPTS,
38 # GENTOO_MIRRORS, or any other environment variables needed for building.
39 # The envscript file sets environment variables like so:
40 # export FOO="bar"
41
42 #envscript="/root/catalyst-env.sh"