Magellan Linux

Annotation of /trunk/mage/usr/lib/mage/mage.rc.global

Parent Directory Parent Directory | Revision Log Revision Log


Revision 386 - (hide annotations) (download)
Mon Jul 17 20:52:38 2006 UTC (17 years, 9 months ago) by niro
File size: 1601 byte(s)
using variable rsync fetch options via mage.rc

1 niro 386 # $Header: /home/cvsd/magellan-cvs/magellan-src/mage/usr/lib/mage/mage.rc.global,v 1.4 2006-07-17 20:52:38 niro Exp $
2 niro 226 #
3     # mage.rc.global - global configuration file for mage
4     # will be overidden by /etc/mage.rc
5     #
6    
7     ## default locations
8     PKGDIR="/var/cache/mage/packages"
9     BUILDDIR="/var/tmp/magebuild"
10     INSTALLDB="/var/db/mage"
11     MAGEDIR="/usr/mage"
12     MLIBDIR="/usr/lib/mage"
13     VIRTUALDB_DEFAULTS="/etc/mage-profile/virtuals.defaults"
14     VIRTUALDB_FILE="${INSTALLDB}/virtuals"
15     SOURCEDIR="/var/cache/mage/sources"
16     BINDIR="${BUILDDIR}/builded"
17     SMAGESCRIPTSDIR="/var/cache/mage/smage"
18    
19     # set default install root to /
20     : ${MROOT=""}
21    
22     # default options
23     PKGSUFFIX="mpk"
24     VERBOSE="on"
25     MAGEDEBUG="off"
26     ARCH="i686"
27     : ${MAGE_UNINSTALL_TIMEOUT="5"}
28 niro 288 PACKAGES_SERVER_PATH="packages/${ARCH}"
29 niro 386 RSYNC_FETCH_OPTIONS="--recursive --links --perms --times --devices --timeout=600 --verbose --compress --progress --stats --delete --delete-after"
30 niro 226
31     # default build options
32     CHOST="${ARCH}-pc-linux-gnu"
33     CFLAGS="-mtune=${ARCH} -O2 -pipe"
34     CXXFLAGS="${CFLAGS}"
35     SMAGE_USE_CCACHE="false"
36     SMAGE_USE_DISTCC="false"
37     MAKEOPTS="-j2"
38    
39     # distcc specific
40     #DISTCC_HOSTS=""
41     DISTCC_DIR="${BUILDDIR}/.distcc"
42     DISTCC_VERBOSE="0"
43     DISTCC_LOG="/var/log/distcc.log"
44    
45     # default mirrors
46     MIRRORS="http://magellan-linux.de/magellan"
47     RSYNC="rsync://magellan-linux.de/mage-ix86"
48     SMAGE2RSYNC="rsync://magellan-linux.de/smage-cvs"
49 niro 288
50     # old distribution settings
51     # only for compat; will disapear soon
52     #USE_TESTING=true
53     #USE_UNSTABLE=true
54    
55     # new distribution settings
56     # internal default: MAGE_DISTRIBUTION=stable
57     # stable | testing | unstable
58 niro 298 : ${MAGE_DISTRIBUTION="stable"}