Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1555 - (show annotations) (download)
Tue Dec 27 10:55:36 2011 UTC (12 years, 4 months ago) by niro
File size: 2934 byte(s)
-moved ARCH to arch options and added all extension defaults to mage.rc.global
1 # mage.rc.global - global configuration file for mage
2 # $Id$
3 #
4 # !! Do not edit this file, it will be overwritten on update. !!
5 # !! Use /etc/mage.rc instead to override any settings. !!
6 #
7
8 ## Default locations
9 PKGDIR="/var/cache/mage/packages"
10 SRCPKGDIR="/var/cache/mage/packages/sources"
11 BUILDDIR="/var/tmp/magebuild"
12 INSTALLDB="/var/db/mage"
13 MAGEDIR="/usr/mage"
14 MLIBDIR="/usr/lib/mage"
15 VIRTUALDB_DEFAULTS="/etc/mage-profile/virtuals.defaults"
16 VIRTUALDB_FILE="${INSTALLDB}/virtuals"
17 SOURCEDIR="/var/cache/mage/sources"
18 BINDIR="${BUILDDIR}/builded"
19 SMAGESCRIPTSDIR="/var/cache/mage/smage"
20
21 # Set default install root to /
22 : ${MROOT=""}
23
24 # Set default user mage.rc
25 : ${MAGERC="/etc/mage.rc"}
26
27 # Distribution settings
28 # Internal default: MAGE_DISTRIBUTION=stable
29 # stable | testing | unstable
30 : ${MAGE_DISTRIBUTION="stable"}
31
32 # Default options
33 VERBOSE="on"
34 MAGEDEBUG="off"
35 : ${MAGE_UNINSTALL_TIMEOUT="3"}
36 PACKAGES_SERVER_PATH="packages/${ARCH}"
37
38 # Default fetch options for rsync
39 RSYNC_FETCH_OPTIONS="--recursive --links --perms --times --devices --timeout=600 --verbose --compress --progress --stats --delete --delete-after"
40
41 # Default fetch options for wget
42 WGET_FETCH_OPTIONS="--passive-ftp --tries 3 --continue --progress bar"
43
44 # Arch specific options and build flags
45 ARCH="i686"
46 CHOST="${ARCH}-pc-linux-gnu"
47 CFLAGS="-mtune=${ARCH} -O2 -pipe"
48 CXXFLAGS="${CFLAGS}"
49 SMAGE_USE_CCACHE="false"
50 SMAGE_USE_DISTCC="false"
51 MAKEOPTS="-j2"
52
53 # Strip options
54 STRIP_DYN_LIB="--strip-unneeded"
55 STRIP_DYN_BIN="--strip-all"
56 STRIP_STATIC_LIB="--strip-debug"
57
58 # Extension defaults
59 # Do not modify these settings unless you know what you are doing
60 PKGSUFFIX="mpk"
61 SRCPKGSUFFIX="mpks"
62 MAGESUFFIX="mage"
63 SMAGESUFFIX="smage2"
64
65 # Distcc specific settings
66 #DISTCC_HOSTS=""
67 DISTCC_DIR="${BUILDDIR}/.distcc"
68 DISTCC_VERBOSE="0"
69 DISTCC_LOG="/var/log/distcc.log"
70
71 # Default mirrors and download options
72 MIRRORS="http://magellan-linux.de/magellan"
73 GNU_MIRRORS="ftp://ftp.gnu.org/pub/gnu ftp://ftp.cs.tu-berlin.de/pub/gnu"
74 SOURCEFORGE_MIRRORS="http://belnet.dl.sourceforge.net/sourceforge http://mesh.dl.sourceforge.net/sourceforge"
75 GNOME_MIRRORS="http://ftp.gnome.org/pub/gnome/sources/ ftp://ftp.gnome.org/pub/gnome/sources/"
76 KDE_MIRRORS="ftp://ftp.kde.org/pub/kde/stable ftp://ftp-stud.fht-esslingen.de/pub/Mirrors/ftp.kde.org/pub/kde/stable"
77 RSYNC="rsync://magellan-linux.de/mage-ix86"
78 SMAGE2RSYNC="rsync://magellan-linux.de/smage-cvs"
79
80 # enables on-the-fly regeneration of the mage tree via smage2 files.
81 # MAGE_TREE_DEST must be also set. You should set it to the same as MAGEDIR.
82 #REGEN_MAGE_TREE=true
83 MAGE_TREE_DEST="${MAGEDIR}"
84
85 # creates on-the-fly source-tarballs when building packages with smage2
86 #CREATE_SRC_PKG_TARBALL=true
87
88 # enables step-by-step execution of the smage-file (for debugging only)
89 #STEP_BY_STEP=true
90
91 # disables logging of smage builds
92 # currently for src_pepare, src_compile, src_install functions only
93 #SMAGE_BUILD_LOGGING=false