Magellan Linux

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

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