Magellan Linux

Diff of /trunk/mage/usr/lib/mage/mage.rc.global.in

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

revision 1554 by niro, Tue Dec 27 10:53:47 2011 UTC revision 1583 by niro, Wed Dec 28 12:06:30 2011 UTC
# Line 30  SMAGESCRIPTSDIR="/var/cache/mage/smage" Line 30  SMAGESCRIPTSDIR="/var/cache/mage/smage"
30  : ${MAGE_DISTRIBUTION="stable"}  : ${MAGE_DISTRIBUTION="stable"}
31    
32  # Default options  # Default options
 PKGSUFFIX="mpk"  
33  VERBOSE="on"  VERBOSE="on"
34  MAGEDEBUG="off"  MAGEDEBUG="off"
 ARCH="i686"  
35  : ${MAGE_UNINSTALL_TIMEOUT="3"}  : ${MAGE_UNINSTALL_TIMEOUT="3"}
 PACKAGES_SERVER_PATH="packages/${ARCH}"  
   
 # Default fetch options for rsync  
 RSYNC_FETCH_OPTIONS="--recursive --links --perms --times --devices --timeout=600 --verbose --compress --progress --stats --delete --delete-after"  
36    
37  # Default fetch options for wget  # enables on-the-fly regeneration of the mage tree via smage2 files.
38  WGET_FETCH_OPTIONS="--passive-ftp --tries 3 --continue --progress bar"  # MAGE_TREE_DEST must be also set. You should set it to the same as MAGEDIR.
39    #REGEN_MAGE_TREE=true
40    MAGE_TREE_DEST="${MAGEDIR}"
41    
42  # Arch specific options and build flags  # Arch specific options and build flags
43    ARCH="i686"
44  CHOST="${ARCH}-pc-linux-gnu"  CHOST="${ARCH}-pc-linux-gnu"
45  CFLAGS="-mtune=${ARCH} -O2 -pipe"  CFLAGS="-mtune=${ARCH} -O2 -pipe"
46  CXXFLAGS="${CFLAGS}"  CXXFLAGS="${CFLAGS}"
47    LDFLAGS="-Wl,--as-needed"
48  SMAGE_USE_CCACHE="false"  SMAGE_USE_CCACHE="false"
49  SMAGE_USE_DISTCC="false"  SMAGE_USE_DISTCC="false"
50  MAKEOPTS="-j2"  MAKEOPTS="-j2"
# Line 56  STRIP_DYN_LIB="--strip-unneeded" Line 54  STRIP_DYN_LIB="--strip-unneeded"
54  STRIP_DYN_BIN="--strip-all"  STRIP_DYN_BIN="--strip-all"
55  STRIP_STATIC_LIB="--strip-debug"  STRIP_STATIC_LIB="--strip-debug"
56    
57    # Extension defaults
58    #  Do not modify these settings unless you know what you are doing
59    PKGSUFFIX="mpk"
60    SRCPKGSUFFIX="mpks"
61    MAGESUFFIX="mage"
62    SMAGESUFFIX="smage2"
63    
64    # Purge targets
65    # Array with all files which shall be removed from every package on build-time
66    # Do not touch these settings if you don't know what you are doing
67    PURGE_TARGETS=( usr/share/info/dir )
68    
69  # Distcc specific settings  # Distcc specific settings
70  #DISTCC_HOSTS=""  #DISTCC_HOSTS=""
71  DISTCC_DIR="${BUILDDIR}/.distcc"  DISTCC_DIR="${BUILDDIR}/.distcc"
# Line 70  GNOME_MIRRORS="http://ftp.gnome.org/pub/ Line 80  GNOME_MIRRORS="http://ftp.gnome.org/pub/
80  KDE_MIRRORS="ftp://ftp.kde.org/pub/kde/stable ftp://ftp-stud.fht-esslingen.de/pub/Mirrors/ftp.kde.org/pub/kde/stable"  KDE_MIRRORS="ftp://ftp.kde.org/pub/kde/stable ftp://ftp-stud.fht-esslingen.de/pub/Mirrors/ftp.kde.org/pub/kde/stable"
81  RSYNC="rsync://magellan-linux.de/mage-ix86"  RSYNC="rsync://magellan-linux.de/mage-ix86"
82  SMAGE2RSYNC="rsync://magellan-linux.de/smage-cvs"  SMAGE2RSYNC="rsync://magellan-linux.de/smage-cvs"
83    PACKAGES_SERVER_PATH="packages/${ARCH}"
84    
85  # enables on-the-fly regeneration of the mage tree via smage2 files.  # Default fetch options for rsync
86  # MAGE_TREE_DEST must be also set. You should set it to the same as MAGEDIR.  RSYNC_FETCH_OPTIONS="--recursive --links --perms --times --devices --timeout=600 --verbose --compress --progress --stats --delete --delete-after"
87  #REGEN_MAGE_TREE=true  # Default fetch options for wget
88  MAGE_TREE_DEST="${MAGEDIR}"  WGET_FETCH_OPTIONS="--passive-ftp --tries 3 --continue --progress bar"
89    
90  # creates on-the-fly source-tarballs when building packages with smage2  # creates on-the-fly source-tarballs when building packages with smage2
91  #CREATE_SRC_PKG_TARBALL=true  #CREATE_SRC_PKG_TARBALL=true

Legend:
Removed from v.1554  
changed lines
  Added in v.1583