Magellan Linux

Diff of /branches/mage-next/conf/mage.rc.example

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 24 by niro, Wed Jan 5 05:08:01 2005 UTC revision 1682 by niro, Mon Feb 6 10:17:24 2012 UTC
# Line 1  Line 1 
1  PKGDIR="/var/cache/mage/packages"  # /etc/mage.rc - local mage configuration file
2  BUILDDIR="/var/tmp/magebuild"  # use this file to override any settings of mage.rc.global
3  INSTALLDB="/var/db/mage"  # $Id$
 MAGEDIR="/usr/mage"  
 VERBOSE="on"  
 MAGEDEBUG="off"  
 ARCH=i686  
4    
5    # Default mirrors and download options
6  MIRRORS="http://magellan-linux.de/magellan"  MIRRORS="http://magellan-linux.de/magellan"
7  RSYNC="rsync://magellan-linux.de/mage-ix86"  RSYNC="rsync://magellan-linux.de/mage-ix86"
8    
9    # All supported global features in mage/smage:
10  # for developers or source-install only:  # You can negate any feature with a ! in front
11  #BINDIR="${BUILDDIR}/builded"  #
12  #CHOST="${ARCH}-pc-linux-gnu"  #      autosvc|!autosvc
13  #CFLAGS="-s -mcpu=${ARCH} -O2 -pipe"  #          * Automatically start/stop/restarts services on installation
14  #CXXFLAGS="${CFLAGS}"  #      buildlog|!buildlog
15    #          * Enables logging of smage builds
16  # smage2 directories  #          * Currently for src_pepare, src_compile, src_install functions only
17  #SOURCEDIR="/var/cache/mage/sources"  #          * For developers only
18  #SMAGESCRIPTSDIR="/var/cache/mage/smage"  #      ccache|!ccache
19  #SMAGE2RSYNC="rsync://magellan-linux.de/smage-ix86"  #          * Enable ccache support in smage
20    #          * ccache must be installed to use this feature
21  # enable ccache support; make sure you have dev-util/ccache installed.  #          * For developers only
22  #SMAGE_USE_CCACHE=true  #      check|!check
23    #          * Runs the check function src_check() after completing src_compile()
24  # enable distcc support; make sure you have dev-util/distcc installed.  #          * For developers only
25  #SMAGE_USE_DISTCC=true  #      compressdoc|!compressdoc
26    #          * Enables compression of man, info and other doc files for minimizing diskspace usage
27  # you can either put your hosts here or use distcc-config,  #          * For developers only
28  # or export them into environment.  #      debug|!debug
29  #DISTCC_HOSTS="192.168.0.214 192.168.0.190"  #          * Enables or disables debug mode
30    #          * Do not touch this feature if you don't know what you are doing
31  # distcc temp and state directory.  #          * The debug mode may break things like resolving dependencies
32  # when you run any distccmon-xxx you must point them to it,  #          * For developers only
33  # to be able to see any proggress.  #      distcc|!distcc
34  #   e.g.: DISTCC_DIR=/var/tmp/magebuild/.distcc distccmon-text  #          * Enable distcc support in smage
35  #DISTCC_DIR="${BUILDDIR}/.distcc"  #          * distcc must be installed to use this feature
36    #          * For developers only
37  # set verbose/debug mode on; you should pipe this into a logfile,  #      kernelsrcunpack|!kernelsrcunpack
38  # rather to let syslogd manage this stuff  #          * Automatically unpacks any kernel-source tarballs to /usr/src
39  #DISTCC_VERBOSE=0    # 0=off; 1=on  #      libtool|!libtool
40    #          * Includes .la libtool archives in builded packages, to remove them set !libtool
41  # place where your distcc logfile belongs.  #          * For developers only
42  # this file may get very big; be warned.  #      linuxsymlink|!linuxsymlink
43  #DISTCC_LOG=/var/log/distcc.log  #          * Automatically updates the /usr/src/linux symlink to the installed kernel-sources version
44    #          * Requires the kernelsrcunpack feature to be activated
45  # how many jobs will be compiled at the same time.  #      pkgbuild|!pkgbuild
46  # please set this value twice to your numbers of cpus.  #          * Enables or disables the package build process
47  #MAKEOPTS=-j2  #          * !buildpkg feature is only intended to be used for special-cases,
48    #          * like virtuals and not to be a global feature. Use this with care.
49    #          * Only disable this feature, if you know what you are doing!
50    #          * For developers only
51    #      purge|!purge
52    #          * Purges files specified by PURGE_TARGETS array from every package build
53    #          * Do not touch this feature if you don't know what you are doing
54    #          * For developers only
55    #      qalint|!qalint
56    #          * Quality assurance checks will be run while building a package
57    #          * Magellan lint utilities must be installed to use this feature
58    #          * Only enable this feature for QA purposes only,
59    #          * pkgbuild may fail even on non-fatal errors and warnings
60    #          * For developers only
61    #      regentree|!regentree
62    #          * Automatically import packages in the mage-tree after building with smage
63    #          * The target mage-tree can be defined with the MAGE_TREE_DEST variable
64    #          * For developers only
65    #      srcpkgbuild|!srcpkgbuild
66    #          * Enable this to create source-tarballs on-the-fly when building packages
67    #          * For developers only
68    #      static|!static
69    #          * Let mconfigure() enable or disable compilation of static libraries
70    #          * For developers only
71    #      stepbystep|!stepbystep
72    #          * Enables step-by-step execution of the smage-file for debugging
73    #          * Currently for src_pepare(), src_compile(), src_check(), src_install() functions
74    #          * For developers only
75    #      strip|!strip
76    #          * Enables stripping to remove debugging symbols of resulting binaries
77    #          * For developers only
78    #      verbose|!verbose
79    #          * Enables or disables verbose mode
80    #
81    # To individually change these features within a smage file, you can use the msetfeature() function
82    #
83    #MAGE_FEATURES=( "autosvc" "ccache" "distcc" "verbose" )

Legend:
Removed from v.24  
changed lines
  Added in v.1682