Fix livecd-stage1 livecd use flag bug; stage4 doc cleanups;autoresume points after...
[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.15 2005/11/30 21:37:58 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 # autoresume = Attempt to resume a failed build, clear the autoresume flags with 
24 #              the -a option to the catalyst cmdline.  -p will clear the 
25 #              autoresume flags as well as your pkgcache and kerncache.
26 #              ( This option is not fully tested, bug reports welcome ) 
27 options="pkgcache kerncache seedcache snapcache"
28
29 # sharedir specifies where all of the catalyst runtime executables are. Most
30 # users do not need to change this.
31 sharedir="/usr/lib/catalyst"
32
33 # storedir specifies where catalyst will store everything that it builds, and
34 # also where it will put its temporary files and caches.
35 storedir="/var/tmp/catalyst"
36
37 # portdir specifies the source portage tree used by the snapshot target.
38 # portdir="/usr/portage"
39
40 # snapshot_cache specifies where the snapshots will be cached to if snapcache is
41 # enabled in the options.
42 # snapshot_cache="<path_to_new_cache_dir>"
43
44 # envscript allows users to set options such as http proxies, MAKEOPTS,
45 # GENTOO_MIRRORS, or any other environment variables needed for building.
46 # The envscript file sets environment variables like so:
47 # export FOO="bar"
48
49 #envscript="/root/catalyst-env.sh"