Magellan Linux

Contents of /trunk/mlivecdbuild/profiles/default-R11-unstable-x86_64/mage.rc

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2151 - (show annotations) (download)
Fri Jul 19 11:45:37 2013 UTC (10 years, 9 months ago) by niro
File size: 4280 byte(s)
-add R11 unstable profiles
1 # /etc/mage.rc - local mage configuration file
2 # use this file to override any settings of mage.rc.global
3 # $Id$
4
5 MAGE_DISTRIBUTION="unstable"
6 MAGE_UNINSTALL_TIMEOUT=0
7
8 # Default mirrors and download options
9 MIRRORS="http://magellan-linux.de/magellan/R11-${MAGE_DISTRIBUTION}"
10 RSYNC="rsync://magellan-linux.de/mage-R11-${MAGE_DISTRIBUTION}"
11 SMAGE2RSYNC="rsync://magellan-linux.de/smage-R11-${MAGE_DISTRIBUTION}"
12
13 # Arch specific options and build flags
14 ARCH="x86_64"
15 CHOST="${ARCH}-pc-linux-gnu"
16 CFLAGS="-mtune=generic -O2 -pipe"
17 CXXFLAGS="${CFLAGS}"
18 LDFLAGS="-Wl,--as-needed"
19 MAKEOPTS="-j2"
20 PACKAGES_SERVER_PATH="packages/${ARCH}"
21
22 # All supported global features in mage/smage:
23 # You can negate any feature with a ! in front
24 # Please use the MAGE_FEATURES array to override these settings in local mage.rc
25 #
26 # autosvc|!autosvc
27 # * Automatically start/stop/restarts services on installation
28 # buildlog|!buildlog
29 # * Enables logging of smage builds
30 # * Currently for src_pepare, src_compile, src_install functions only
31 # * For developers only
32 # ccache|!ccache
33 # * Enable ccache support in smage
34 # * ccache must be installed to use this feature
35 # * For developers only
36 # check|!check
37 # * Runs the check function src_check() after completing src_compile()
38 # * For developers only
39 # compressdoc|!compressdoc
40 # * Enables compression of man, info and other doc files for minimizing diskspace usage
41 # * For developers only
42 # debug|!debug
43 # * Enables or disables debug mode
44 # * Do not touch this feature if you don't know what you are doing
45 # * The debug mode may break things like resolving dependencies
46 # * For developers only
47 # distcc|!distcc
48 # * Enable distcc support in smage
49 # * distcc must be installed to use this feature
50 # * For developers only
51 # kernelsrcunpack|!kernelsrcunpack
52 # * Automatically unpacks any kernel-sources tarballs to /usr/src
53 # libtool|!libtool
54 # * Includes .la libtool archives in builded packages, to remove them set !libtool
55 # * For developers only
56 # linuxsymlink|!linuxsymlink
57 # * Automatically updates the /usr/src/linux symlink to the installed kernel-sources version
58 # * Requires the kernelsrcunpack feature to be activated
59 # pkgbuild|!pkgbuild
60 # * Enables or disables the package build process
61 # * !buildpkg feature is only intended to be used for special-cases,
62 # * like virtuals and not to be a global feature. Use this with care.
63 # * Only disable this feature, if you know what you are doing!
64 # * For developers only
65 # purge|!purge
66 # * Purges files specified by PURGE_TARGETS array from every package build
67 # * Do not touch this feature if you don't know what you are doing
68 # * For developers only
69 # qalint|!qalint
70 # * Quality assurance checks will be run while building a package
71 # * Magellan lint utilities must be installed to use this feature
72 # * Only enable this feature for QA purposes only,
73 # * pkgbuild may fail even on non-fatal errors and warnings
74 # * For developers only
75 # regentree|!regentree
76 # * Automatically import packages in the mage-tree after building with smage
77 # * The target mage-tree can be defined with the MAGE_TREE_DEST variable
78 # * For developers only
79 # stepbystep|!stepbystep
80 # * Enables step-by-step execution of the smage-file for debugging
81 # * Currently for src_pepare(), src_compile(), src_check(), src_install() functions
82 # * For developers only
83 # srcpkgbuild|!srcpkgbuild
84 # * Enable this to create source-tarballs on-the-fly when building packages
85 # * For developers only
86 # strip|!strip
87 # * Enables stripping to remove debugging symbols of resulting binaries
88 # * For developers only
89 # verbose|!verbose
90 # * Enables or disables verbose mode
91 #
92 # To individually change these features within a smage file, you can use the msetfeature() function
93 #
94 #MAGE_FEATURES=( "autosvc" "ccache" "distcc" "verbose" )