Magellan Linux

Diff of /branches/mage-next/src/smage2.sh

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

revision 602 by niro, Mon Nov 5 19:05:22 2007 UTC revision 1582 by niro, Wed Dec 28 12:04:33 2011 UTC
# Line 1  Line 1 
1  #!/bin/bash  #!/bin/bash
2    # $Id$
3    
4  # compiles/installs .smage2 source install scripts  # compiles/installs .smage2 source install scripts
5  # needs pkgbuild_dir (mage)  # needs pkgbuild_dir (mage)
6    
7  # SMAGE2  # TODO: record dynlib, gz | xz database
 # $Header: /home/cvsd/magellan-cvs/magellan-src/mage/usr/lib/mage/smage2.sh,v 1.61 2007-11-05 19:05:22 niro Exp $  
8    
 #01.10.2004  
 # added ccache support  
 # added distcc support  
9    
10  # set default user mage.rc  # set default user mage.rc
11  : ${MAGERC="/etc/mage.rc"}  : ${MAGERC="/etc/mage.rc"}
12    
13  ## setup ##  ## setup ##
 PKGSUFFIX="mpk"  
 SRCPKGSUFFIX="mpks"  
14  SMAGENAME="$1"  SMAGENAME="$1"
 SMAGESUFFIX="smage2"  
 MLIBDIR=/usr/lib/mage  
15  SMAGEVERSION="$( < ${MLIBDIR}/version)"  SMAGEVERSION="$( < ${MLIBDIR}/version)"
16    
 ## only for tests -> normally in /etc/rc.d/init.d/functions  
 COLRED="\033[1;6m\033[31m"  
 COLGREEN="\033[1;6m\033[32m"  
 COLYELLOW="\033[1;6m\033[33m"  
 COLBLUE="\033[1;6m\033[34m"  
 COLMAGENTA="\033[1;6m\033[35m"  
 COLWHITE="\033[1;6m\033[37m"  
 COLGRAY="\033[0;6m\033[37m"  
 COLBOLD="\033[1m"  
 COLDEFAULT="\033[0m"  
   
 if [[ ${NOCOLORS} = true ]]  
 then  
  COLRED=""  
  COLGREEN=""  
  COLYELLOW=""  
  COLBLUE=""  
  COLMAGENTA=""  
  COLWHITE=""  
  COLGRAY=""  
  COLBOLD=""  
  COLDEFAULT=""  
 fi  
   
17  # export default C locale  # export default C locale
18  export LC_ALL=C  export LC_ALL=C
19    
20  source /etc/mage.rc.global  source /etc/mage.rc.global
21  source ${MAGERC}  source ${MAGERC}
22    source ${MLIBDIR}/mage4.functions.sh
23    
24  # set PKGDIR and BUILDDIR and BINDIR to MROOT  # set PKGDIR and BUILDDIR and BINDIR to MROOT
25  if [[ -n ${MROOT} ]]  if [[ -n ${MROOT} ]]
# Line 59  then Line 29  then
29   export BINDIR=${MROOT}/${BINDIR}   export BINDIR=${MROOT}/${BINDIR}
30  fi  fi
31    
32    # sources the smage file and uses state from distribution file if exist
33    # may helpful for repository support later on
34    smagesource()
35    {
36     local file="$1"
37     local mystate
38     local mycodename
39    
40     source ${file}
41    
42     [[ -n ${STATE} ]] && mystate="${STATE}"
43    
44     # do not overide if local state was broken or disabled!
45     case ${STATE} in
46     broken) return ;;
47     disabled) return ;;
48     esac
49    
50     if [ -f ${SMAGESCRIPTSDIR}/distribution ]
51     then
52     source ${SMAGESCRIPTSDIR}/distribution
53     [[ -n ${STATE} ]] && mystate="${STATE}"
54     fi
55     # now switch state and export it
56     STATE="${mystate}"
57    }
58    
59  showversion()  showversion()
60  {  {
61   echo -en "Magellan Source Install v${SMAGEVERSION} "   echo -en "Magellan Source Install v${SMAGEVERSION} "
# Line 73  die() Line 70  die()
70   exit 1   exit 1
71  }  }
72    
73    die_pipestatus()
74    {
75     # the status change if we do any parameter declarations!!
76     # dont do this anymore, keep this in mind!
77     #
78     # local pos="$1"
79     # local comment="$2"
80     #
81     # [ ${PIPESTATUS[${pos}]} -ne 0 ] && die "${comment}"
82     #
83     [ ${PIPESTATUS[$1]} -ne 0 ] && die "$2"
84    }
85    
86  xtitle()  xtitle()
87  {  {
88   if [[ ${TERM} = xterm ]]   if [[ ${TERM} = xterm ]]
# Line 129  get_db_md5_sum() Line 139  get_db_md5_sum()
139    
140  download_sources()  download_sources()
141  {  {
   
142   [ -z "${SRC_URI}" ] && echo -e "\nNothing declared to download.\n" && return 0   [ -z "${SRC_URI}" ] && echo -e "\nNothing declared to download.\n" && return 0
143    
144   local EOA=${#SRC_URI[*]}   local count=${#SRC_URI[*]}
145   local my_SRC_URI   local uri
146   local my_SRC_URI_DEST   local subdir
147   local my_SRC_URI_MIRROR   local outputdir
148   local my_SOURCEDIR   local db_md5_file="${MD5DIR}/$(basename ${SMAGENAME} .${SMAGESUFFIX}).md5"
149   local DB_MD5_SUM_FILE="${MD5DIR}/$(basename ${SMAGENAME} .${SMAGESUFFIX}).md5"   local fetching
150   local FETCHING   local i
  local i mirror  
   
   
  # install SRCDIR/PNAME if not exist  
  [ ! -d ${SOURCEDIR}/${PNAME} ] && install -d ${SOURCEDIR}/${PNAME}  
151    
152   # check if FETCHING is needed   # check if FETCHING is needed
153   ( cd ${SOURCEDIR}/${PNAME}; md5sum --check ${DB_MD5_SUM_FILE} &> /dev/null )   if mchecksum --rundir "${SOURCEDIR}/${PNAME}" --file "${db_md5_file}" --method md5
  if [[ $? = 0 ]]  
154   then   then
155   # md5's ok, no fetching needed   # md5's ok, no fetching needed
156   FETCHING=false   fetching=false
157   else   else
158   FETCHING=true   fetching=true
159   fi   fi
160    
161   for ((i=0; i < EOA; i++))   if [[ ${fetching} = true ]]
162   do   then
163   # url to file   for ((i=0; i < count; i++))
164   my_SRC_URI="$(echo ${SRC_URI[${i}]} | cut -d' ' -f1)"   do
165     # url to file
166   # subdir in sources dir; the my_SRCI_URI file goes to there   uri="${SRC_URI[${i}]%%' '*}"
  my_SRC_URI_DEST="$(echo ${SRC_URI[${i}]} | cut -d' ' -f2)"  
   
  # if my_src_uri_dest is not equal my_src_uri; than an other dir is used  
  if [[ ${my_SRC_URI_DEST} != ${my_SRC_URI} ]]  
  then  
  my_SOURCEDIR="${SOURCEDIR}/${PNAME}/${my_SRC_URI_DEST}"  
  else  
  my_SOURCEDIR="${SOURCEDIR}/${PNAME}"  
  fi  
   
  # if an mirrored file than replace first the mirror uri  
  if [[ -n $(echo ${my_SRC_URI} | grep 'mirror://') ]]  
  then  
  for mirror in ${MIRRORS}  
  do  
  my_SRC_URI_MIRROR="$(echo ${my_SRC_URI} | sed "s|mirror:/|${mirror}/sources|g")"  
   
  if [[ ${FETCHING} = true ]]  
  then  
  echo -e "${COLBLUE}==>${COLGREEN} fetching ${my_SRC_URI_MIRROR}${COLDEFAULT}"  
  wget \  
  --passive-ftp \  
  --tries 3 \  
  --continue \  
  --progress bar \  
  --directory-prefix="${my_SOURCEDIR}" \  
  "${my_SRC_URI_MIRROR}"  
  if [[ $? = 0 ]]  
  then  
  break  
  else  
  continue  
  fi  
  fi  
  done  
  elif [[ -n $(echo ${my_SRC_URI} | grep 'sourceforge://') ]]  
  then  
  for mirror in ${SOURCEFORGE_MIRRORS}  
  do  
  my_SRC_URI_MIRROR="$(echo ${my_SRC_URI} | sed "s|sourceforge:/|${mirror}|g")"  
   
  if [[ ${FETCHING} = true ]]  
  then  
  echo -e "${COLBLUE}==>${COLGREEN} fetching ${my_SRC_URI_MIRROR}${COLDEFAULT}"  
  wget \  
  --passive-ftp \  
  --tries 3 \  
  --continue \  
  --progress bar \  
  --directory-prefix="${my_SOURCEDIR}" \  
  "${my_SRC_URI_MIRROR}"  
  if [[ $? = 0 ]]  
  then  
  break  
  else  
  continue  
  fi  
  fi  
  done  
  elif [[ -n $(echo ${my_SRC_URI} | grep 'gnu://') ]]  
  then  
  for mirror in ${GNU_MIRRORS}  
  do  
  my_SRC_URI_MIRROR="$(echo ${my_SRC_URI} | sed "s|gnu:/|${mirror}|g")"  
   
  if [[ ${FETCHING} = true ]]  
  then  
  echo -e "${COLBLUE}==>${COLGREEN} fetching ${my_SRC_URI_MIRROR}${COLDEFAULT}"  
  wget \  
  --passive-ftp \  
  --tries 3 \  
  --continue \  
  --progress bar \  
  --directory-prefix="${my_SOURCEDIR}" \  
  "${my_SRC_URI_MIRROR}"  
  if [[ $? = 0 ]]  
  then  
  break  
  else  
  continue  
  fi  
  fi  
  done  
  elif [[ -n $(echo ${my_SRC_URI} | grep 'kde://') ]]  
  then  
  for mirror in ${KDE_MIRRORS}  
  do  
  my_SRC_URI_MIRROR="$(echo ${my_SRC_URI} | sed "s|kde:/|${mirror}|g")"  
167    
168   if [[ ${FETCHING} = true ]]   # subdir in sources dir; the my_SRCI_URI file goes to there
169   then   subdir="${SRC_URI[${i}]##*' '}"
  echo -e "${COLBLUE}==>${COLGREEN} fetching ${my_SRC_URI_MIRROR}${COLDEFAULT}"  
  wget \  
  --passive-ftp \  
  --tries 3 \  
  --continue \  
  --progress bar \  
  --directory-prefix="${my_SOURCEDIR}" \  
  "${my_SRC_URI_MIRROR}"  
  if [[ $? = 0 ]]  
  then  
  break  
  else  
  continue  
  fi  
  fi  
  done  
  elif [[ -n $(echo ${my_SRC_URI} | grep 'gnome://') ]]  
  then  
  for mirror in ${GNOME_MIRRORS}  
  do  
  my_SRC_URI_MIRROR="$(echo ${my_SRC_URI} | sed "s|gnome:/|${mirror}|g")"  
170    
171   if [[ ${FETCHING} = true ]]   # if $subdir is not equal with $uri then an other dir is used
172   then   if [[ ${uri} != ${subdir} ]]
  echo -e "${COLBLUE}==>${COLGREEN} fetching ${my_SRC_URI_MIRROR}${COLDEFAULT}"  
  wget \  
  --passive-ftp \  
  --tries 3 \  
  --continue \  
  --progress bar \  
  --directory-prefix="${my_SOURCEDIR}" \  
  "${my_SRC_URI_MIRROR}"  
  if [[ $? = 0 ]]  
  then  
  break  
  else  
  continue  
  fi  
  fi  
  done  
  else  
  if [[ ${FETCHING} = true ]]  
173   then   then
174   echo -e "${COLBLUE}==>${COLGREEN} fetching ${my_SRC_URI}${COLDEFAULT}"   outputdir="${SOURCEDIR}/${PNAME}/${subdir}"
175   wget \   else
176   --passive-ftp \   outputdir="${SOURCEDIR}/${PNAME}"
  --tries 3 \  
  --continue \  
  --progress bar \  
  --directory-prefix="${my_SOURCEDIR}" \  
  "${my_SRC_URI}"  
177   fi   fi
  fi  
178    
179   # unset them to be shure   echo -e "${COLBLUE}==>${COLGREEN} fetching ${uri}${COLDEFAULT}"
180   unset my_SRC_URI   mdownload --uri "${uri}" --dir "${outputdir}" || die "Could not download '${uri}'"
  unset my_SRC_URI_DEST  
  unset my_SRC_URI_MIRROR  
  unset my_SOURCEDIR  
  done  
181    
182   # recheck md5 sums   # unset them to be sure
183   echo   unset uri
184   echo -e "${COLBLUE}===${COLGREEN} Checking MD5 sums:${COLDEFAULT}"   unset subdir
185   ( cd ${SOURCEDIR}/${PNAME}; md5sum --check ${DB_MD5_SUM_FILE} ) || die "md5 failed"   unset outputdir
186   echo   done
187    
188     # recheck md5 sums after download
189     echo
190     echo -e "${COLBLUE}===${COLGREEN} Checking MD5 sums:${COLDEFAULT}"
191     mchecksum --rundir "${SOURCEDIR}/${PNAME}" --file "${db_md5_file}" --method md5 || die "md5 failed"
192     echo
193     else
194     echo -e "${COLBLUE}===${COLGREEN} All sources already fetched, nothing to do${COLDEFAULT}"
195     fi
196    
197   # not needed anymore   # not needed anymore
198   unset SRC_URI   unset SRC_URI
199  }  }
200    
201  # dummy function, used if that not exist in smage file  # dummy function, used if that does not exist in smage file
202  src_prepare()  src_prepare()
203  {  {
204   echo "no src_prepare defined"   echo "no src_prepare defined"
  sleep 2  
205   return 0   return 0
206  }  }
207    
208  # dummy function, used if that not exist in smage file  # dummy function, used if that does not exist in smage file
209  src_compile()  src_compile()
210  {  {
211   echo "no src_compile defined"   echo "no src_compile defined"
  sleep 2  
212   return 0   return 0
213  }  }
214    
215  # dummy function, used if that not exist in smage file  # dummy function, used if that does not exist in smage file
216    src_check()
217    {
218     echo "no src_check defined"
219     return 0
220    }
221    
222    # dummy function, used if that does not exist in smage file
223  src_install()  src_install()
224  {  {
225   echo "no src_install defined"   echo "no src_install defined"
  sleep 2  
226   return 0   return 0
227  }  }
228    
# Line 362  mconfigure() Line 241  mconfigure()
241   ./configure \   ./configure \
242   --prefix=/usr \   --prefix=/usr \
243   --host=${CHOST} \   --host=${CHOST} \
244     --build=${CHOST} \
245   --mandir=/usr/share/man \   --mandir=/usr/share/man \
246   --infodir=/usr/share/info \   --infodir=/usr/share/info \
247   --datadir=/usr/share \   --datadir=/usr/share \
# Line 439  munpack() Line 319  munpack()
319   popd > /dev/null   popd > /dev/null
320   fi   fi
321   ;;   ;;
322     xz)
323     IFTAR="$(basename $SRCFILE .xz)"
324     IFTAR="${IFTAR##*.}"
325     if [[ ${IFTAR} = tar ]]
326     then
327     tar --no-same-owner -xvJf ${SOURCEDIR}/${PNAME}/${SRCFILE} -C ${DEST} || die ".tar.xz unpack failed."
328     else
329     pushd ${DEST} > /dev/null
330     xzcat ${SOURCEDIR}/${PNAME}/${SRCFILE} > ${DEST}/$(basename ${SRCFILE} .xz) || die ".xz unpack failed."
331     popd > /dev/null
332     fi
333     ;;
334   tbz2|mpks|mpk)   tbz2|mpks|mpk)
335   tar --no-same-owner -xvjf ${SOURCEDIR}/${PNAME}/${SRCFILE} -C ${DEST} || die ".tbz2 unpack failed."   tar --no-same-owner -xvjf ${SOURCEDIR}/${PNAME}/${SRCFILE} -C ${DEST} || die ".tbz2 unpack failed."
336   ;;   ;;
337   tgz)   tgz)
338   tar --no-same-owner -xvzf ${SOURCEDIR}/${PNAME}/${SRCFILE} -C ${DEST} || die ".tgz unpack failed."   tar --no-same-owner -xvzf ${SOURCEDIR}/${PNAME}/${SRCFILE} -C ${DEST} || die ".tgz unpack failed."
339   ;;   ;;
340     txz|mpkzs|mpkz)
341     tar --no-same-owner -xvJf ${SOURCEDIR}/${PNAME}/${SRCFILE} -C ${DEST} || die ".txz unpack failed."
342     ;;
343   rar)   rar)
344   unrar x ${SOURCEDIR}/${PNAME}/${SRCFILE} ${DEST}  || die ".rar unpack failed."   unrar x ${SOURCEDIR}/${PNAME}/${SRCFILE} ${DEST}  || die ".rar unpack failed."
345   ;;   ;;
# Line 452  munpack() Line 347  munpack()
347   unzip ${SOURCEDIR}/${PNAME}/${SRCFILE} -d ${DEST} || die ".zip unpack failed."   unzip ${SOURCEDIR}/${PNAME}/${SRCFILE} -d ${DEST} || die ".zip unpack failed."
348   ;;   ;;
349   rpm)   rpm)
350   pushd ${BUILDDIR} > /dev/null   pushd ${DEST} > /dev/null
351   rpm2targz ${SOURCEDIR}/${PNAME}/${SRCFILE} || die "rpm2targz: .rpm unpack failed."   rpm2targz ${SOURCEDIR}/${PNAME}/${SRCFILE} || die "rpm2targz: .rpm unpack failed."
352   tar --no-same-owner -xvzf ${SRCFILE/.rpm/.tar.gz} || die "tar: .rpm unpack failed."   tar --no-same-owner -xvzf ${SRCFILE/.rpm/.tar.gz} || die "tar: .rpm unpack failed."
353   if [[ -f ${BUILDDIR}/${SRCFILE/.rpm/.tar.gz} ]]   if [[ -f ${DEST}/${SRCFILE/.rpm/.tar.gz} ]]
354   then   then
355   rm ${BUILDDIR}/${SRCFILE/.rpm/.tar.gz}   rm ${DEST}/${SRCFILE/.rpm/.tar.gz}
356   fi   fi
357   ;;   ;;
358   *)   *)
# Line 498  mpatch() Line 393  mpatch()
393  mlibtoolize()  mlibtoolize()
394  {  {
395   local opts="$@"   local opts="$@"
396   [[ -z ${opts} ]] && opts="--copy --force"   [[ -z ${opts} ]] && opts="--verbose --install --force"
397    
398   libtoolize ${opts} || die "running: mlibtoolize ${opts}"   libtoolize ${opts} || die "running: mlibtoolize ${opts}"
399  }  }
400    
401    mautoreconf()
402    {
403     local opts="$@"
404     [[ -z ${opts} ]] && opts="--verbose --install --force"
405    
406     autoreconf ${opts} || die "running: mautoreconf ${opts}"
407    }
408    
409  minstalldocs()  minstalldocs()
410  {  {
411   local docfiles   local docfiles
412     local doc
413   docfiles="$@"   docfiles="$@"
414    
415   if [ ! -d ${BINDIR}/usr/share/doc/${PNAME}-${PVER} ]   if [ ! -d ${BINDIR}/usr/share/doc/${PNAME}-${PVER} ]
# Line 513  minstalldocs() Line 417  minstalldocs()
417   install -d ${BINDIR}/usr/share/doc/${PNAME}-${PVER} || die "creating doc dirs."   install -d ${BINDIR}/usr/share/doc/${PNAME}-${PVER} || die "creating doc dirs."
418   fi   fi
419    
420   for i in ${docfiles}   for doc in ${docfiles}
421   do   do
422   cat ${i} | gzip -9c > ${i}.gz || die "gzipping docs."   if [ -f ${doc} ]
423   install -m 0644 ${SRCDIR}/${i}.gz \   then
424   ${BINDIR}/usr/share/doc/${PNAME}-${PVER} || die "coping docs."   if [[ ${SMAGE_COMPRESSDOC} = true ]]
425     then
426     cat ${doc} | gzip -9c > ${BINDIR}/usr/share/doc/${PNAME}-${PVER}/${doc}.gz || die "gzipping +installing ${doc}."
427     chmod 0644 ${BINDIR}/usr/share/doc/${PNAME}-${PVER}/${doc}.gz || die "fixing permissions of ${doc}."
428     else
429     install -m 0644 ${SRCDIR}/${i} ${BINDIR}/usr/share/doc/${PNAME}-${PVER} || die "installing ${doc}."
430     fi
431     fi
432   done   done
433  }  }
434    
# Line 525  mstriplibs() Line 436  mstriplibs()
436  {  {
437   local stripdir="$@"   local stripdir="$@"
438    
439   [ -z "${stripdir}" ] && stripdir=${BINDIR}   [[ -z ${stripdir} ]] && stripdir="${BINDIR}"
440   find ${stripdir} | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null   [[ -z ${STRIP_DYN_LIB} ]] && STRIP_DYN_LIB="--strip-debug"
441     find ${stripdir} ! -type d | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs --no-run-if-empty strip ${STRIP_DYN_LIB} 2> /dev/null
442  }  }
443    
444  mstripbins()  mstripbins()
445  {  {
446   local stripdir="$@"   local stripdir="$@"
447    
448   [ -z "${stripdir}" ] && stripdir=${BINDIR}   [[ -z ${stripdir} ]] && stripdir="${BINDIR}"
449   find ${stripdir} | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null   [[ -z ${STRIP_DYN_BIN} ]] && STRIP_DYN_BIN="--strip-debug"
450     find ${stripdir} ! -type d | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs --no-run-if-empty strip ${STRIP_DYN_BIN} 2> /dev/null
451    }
452    
453    mstripstatic()
454    {
455     local stripdir="$@"
456    
457     [[ -z ${stripdir} ]] && stripdir="${BINDIR}"
458     [[ -z ${STRIP_STATIC_LIB} ]] && STRIP_STATIC_LIB="--strip-debug"
459     find ${stripdir} ! -type d | xargs file | grep "ar archive" | cut -f 1 -d : | xargs --no-run-if-empty strip ${STRIP_STATIC_LIB} 2> /dev/null
460    }
461    
462    mstriplibtoolarchive()
463    {
464     local stripdir="$@"
465    
466     [[ -z ${stripdir} ]] && stripdir="${BINDIR}"
467     find ${stripdir} ! -type d -name \*.la | xargs file | grep "libtool library" | cut -f 1 -d : | xargs --no-run-if-empty rm -f -- 2> /dev/null
468    }
469    
470    mpurgetargets()
471    {
472     local stripdir="$@"
473     local target
474    
475     [[ -z ${stripdir} ]] && stripdir=${BINDIR}
476     # nothing to do in this case
477     [[ -z ${PURGE_TARGETS[*]} ]] && return
478    
479     for target in ${PURGE_TARGETS[*]}
480     do
481     # check if target is a regex pattern without any slashes
482     if [[ ${target} = ${target//\/} ]]
483     then
484     find ${BINDIR} -type f -name "${target}" | xargs --no-run-if-empty rm -f -- 2> /dev/null
485     else
486     rm -f -- ${target} 2> /dev/null
487     fi
488     done
489    }
490    
491    mcompressdocs()
492    {
493     local bindir="$@"
494    
495     if [ -d ${bindir}/usr/share/man ]
496     then
497     echo -e "${COLBLUE}===${COLGREEN} compressing man-pages ...${COLDEFAULT}"
498     ${MLIBDIR}/compressdoc -g -9 ${bindir}/usr/share/man
499     fi
500    
501     if [ -d ${bindir}/usr/share/info ]
502     then
503     echo -e "${COLBLUE}===${COLGREEN} compressing info-pages ...${COLDEFAULT}"
504     ${MLIBDIR}/compressdoc -g -9 ${bindir}/usr/share/info
505     fi
506  }  }
507    
508  sminclude()  sminclude()
# Line 650  EOF Line 618  EOF
618  # special tags:  # special tags:
619  #   PKGTYPE               type of pkg  #   PKGTYPE               type of pkg
620  #   INHERITS              which functions get included  #   INHERITS              which functions get included
621  #   SPECIAL_FUNCTIONS     special functions wich should also be added  #   SPECIAL_FUNCTIONS     special functions which should also be added
622  #                         warning: they get killed before the build starts !  #                         warning: they get killed before the build starts !
623    #   SPLIT_PACKAGES        names of all subpackages which are splitted from parent
624    #   SPLIT_PACKAGE_BASE    base package name for splitpackages
625    #                         (only in the resulting magefile}
626  #  #
627  #   MAGE_TREE_DEST        target destination of the generated tree  #   MAGE_TREE_DEST        target destination of the generated tree
628  #   REGEN_MAGE_TREE       set to 'true' to enable this  #   REGEN_MAGE_TREE       set to 'true' to enable this
# Line 662  build_mage_script() Line 633  build_mage_script()
633   local magefile   local magefile
634   local dest   local dest
635   local target   local target
636     local split_pkg_base
637   local sym   local sym
638   local depname   local depname
639    
# Line 669  build_mage_script() Line 641  build_mage_script()
641   : ${MAGE_TREE_DEST=${BUILDDIR}/mage-tree}   : ${MAGE_TREE_DEST=${BUILDDIR}/mage-tree}
642    
643   # determinate which suffix this mage file should get, if any   # determinate which suffix this mage file should get, if any
644   [ -n "$1" ] && target="-$1"   [[ $1 = --target ]] && shift && target="-$1"
645    
646     # mark package as splitpackage
647     [[ $1 = --split-pkg-base ]] && shift && split_pkg_base="$1"
648    
649   # name of magefile   # name of magefile
650   magefile="${PNAME}${target}-${PVER}-${PBUILD}.mage"   magefile="${PNAME}${target}-${PVER}-${PBUILD}.mage"
# Line 685  build_mage_script() Line 660  build_mage_script()
660   # now build the mage file   # now build the mage file
661   > ${dest}   > ${dest}
662    
  # header  
  echo '# $Header: /home/cvsd/magellan-cvs/magellan-src/mage/usr/lib/mage/smage2.sh,v 1.61 2007-11-05 19:05:22 niro Exp $' >> ${dest}  
  echo  >> ${dest}  
   
663   # pgkname and state   # pgkname and state
664   echo "PKGNAME=\"${PNAME}${target}-${PVER}-\${ARCH}-${PBUILD}\"" >> ${dest}   echo "PKGNAME=\"${PNAME}${target}-${PVER}-\${ARCH}-${PBUILD}\"" >> ${dest}
665   echo "STATE=\"${STATE}\"" >> ${dest}   echo "STATE=\"${STATE}\"" >> ${dest}
  echo >> ${dest}  
666    
667   # description and homepage   # description and homepage
668   echo "DESCRIPTION=\"${DESCRIPTION}\"" >> ${dest}   echo "DESCRIPTION=\"${DESCRIPTION}\"" >> ${dest}
669   echo "HOMEPAGE=\"${HOMEPAGE}\"" >> ${dest}   echo "HOMEPAGE=\"${HOMEPAGE}\"" >> ${dest}
  echo >> ${dest}  
670    
671   # special tags and vars   # special tags and vars
672   echo "PKGTYPE=\"${PKGTYPE}\""  >> ${dest}   echo "PKGTYPE=\"${PKGTYPE}\""  >> ${dest}
673    
674   # echo MAGE_TARGETS ## note -target is needed !   # echo MAGE_TARGETS ## note -target is needed !
675   echo "MAGE_TARGETS=\"${target}\"" >> ${dest}   echo "MAGE_TARGETS=\"${target}\"" >> ${dest}
676   echo >> ${dest}  
677     # split package base
678     echo "SPLIT_PACKAGE_BASE=\"${split_pkg_base}\"" >> ${dest}
679    
680   # add special vars   # add special vars
681   if [ -n "${SPECIAL_VARS}" ]   if [ -n "${SPECIAL_VARS}" ]
# Line 715  build_mage_script() Line 686  build_mage_script()
686   # being tricky here :)   # being tricky here :)
687   echo "${i}=\"$(eval echo \$${i})\"" >> ${dest}   echo "${i}=\"$(eval echo \$${i})\"" >> ${dest}
688   done   done
  echo  >> ${dest}  
689   fi   fi
690    
691   # add at least all includes   # add at least all includes
# Line 727  build_mage_script() Line 697  build_mage_script()
697   do   do
698   echo -n " ${i}"  >> ${dest}   echo -n " ${i}"  >> ${dest}
699   done   done
700   echo  >> ${dest}   # a CRLF is needed here!
701     echo >> ${dest}
702   fi   fi
  echo >> ${dest}  
703    
704   # deps and provides   # deps and provides
705   echo "DEPEND=\"$(fix_mage_deps "${target}" "${DEPEND}")\"" >> ${dest}   echo "DEPEND=\"$(fix_mage_deps "${target}" "${DEPEND}")\"" >> ${dest}
  echo >> ${dest}  
706   echo "SDEPEND=\"$(fix_mage_deps "${target}" "${SDEPEND}")\"" >> ${dest}   echo "SDEPEND=\"$(fix_mage_deps "${target}" "${SDEPEND}")\"" >> ${dest}
  echo >> ${dest}  
707   echo "PROVIDE=\"${PROVIDE}\"" >> ${dest}   echo "PROVIDE=\"${PROVIDE}\"" >> ${dest}
  echo >> ${dest}  
708    
709   # add special functions   # add special functions
710   if [ -n "${SPECIAL_FUNCTIONS}" ]   if [ -n "${SPECIAL_FUNCTIONS}" ]
# Line 747  build_mage_script() Line 714  build_mage_script()
714   do   do
715   # add to mage (quotes needed !)   # add to mage (quotes needed !)
716   typeset -f "${i}" >> ${dest}   typeset -f "${i}" >> ${dest}
  echo >> ${dest}  
717   # unset to be safe (quotes needed !)   # unset to be safe (quotes needed !)
718   #unset "${i}" <-- later to get every target built   #unset "${i}" <-- later to get every target built
719   done   done
  echo  >> ${dest}  
720   fi   fi
721    
722   # pre|post-install|removes   # pre|post-install|removes
723   typeset -f preinstall >> ${dest}   typeset -f preinstall >> ${dest}
  echo  >> ${dest}  
724   typeset -f postinstall >> ${dest}   typeset -f postinstall >> ${dest}
  echo  >> ${dest}  
725   typeset -f preremove >> ${dest}   typeset -f preremove >> ${dest}
  echo  >> ${dest}  
726   typeset -f postremove >> ${dest}   typeset -f postremove >> ${dest}
  echo  >> ${dest}  
727  }  }
728    
729  regen_mage_tree()  regen_mage_tree()
730  {  {
731   local i   local subpackage
732    
733   # build them only if requested   # build them only if requested
734   if [[ ${REGEN_MAGE_TREE} = true ]]   if [[ ${REGEN_MAGE_TREE} = true ]]
735   then   then
736   # run it without targets   # run it without targets
737   if [ -z "${MAGE_TARGETS}" ]   if [[ -n ${MAGE_TARGETS} ]]
738   then   then
739     # build for each target a mage file
740     # run it with several targets
741   echo   echo
742   build_mage_script   for subpackage in ${MAGE_TARGETS}
743     do
744     build_mage_script --target "${subpackage}"
745     done
746   echo   echo
  else  
747    
748   # build for each target an mage file   # run it for splitpackages
749     elif [[ -n ${SPLIT_PACKAGES} ]]
750     then
751     local split_pkg_base="${PNAME}"
752     # save smage environment
753     split_save_variables
754     # build for each subpackage a mage file
755   # run it with several targets   # run it with several targets
756   for i in ${MAGE_TARGETS}   echo
757     for subpackage in ${SPLIT_PACKAGES}
758   do   do
759   echo   # get the right variables for the split
760   build_mage_script "${i}"   export PNAME="${subpackage}"
761   echo   split_info_${subpackage}
762     # get the preinstall etc
763     split_export_inherits ${subpackage}
764     build_mage_script --split-pkg-base "${split_pkg_base}"
765     # delete split preinstall etc
766     split_delete_inherits ${subpackage}
767     # restore smage environment
768     split_restore_variables
769   done   done
770     echo
771     # unset all saved smage variables
772     split_unset_variables
773    
774     else
775     echo
776     build_mage_script
777     echo
778   fi   fi
779   fi   fi
780    
# Line 818  regen_mage_tree() Line 805  regen_mage_tree()
805   unset postremove   unset postremove
806  }  }
807    
808    split_save_variables()
809    {
810     export SAVED_PNAME="${PNAME}"
811     export SAVED_PVER="${PVER}"
812     export SAVED_PBUILD="${PBUILD}"
813     export SAVED_PCATEGORIE="${PCATEGORIE}"
814     export SAVED_DESCRIPTION="${DESCRIPTION}"
815     export SAVED_HOMEPAGE="${HOMEPAGE}"
816     export SAVED_SPECIAL_VARS="${SPECIAL_VARS}"
817     export SAVED_STATE="${STATE}"
818     export SAVED_PKGTYPE="${PKGTYPE}"
819     export SAVED_INHERITS="${INHERITS}"
820     export SAVED_DEPEND="${DEPEND}"
821     export SAVED_SDEPEND="${SDEPEND}"
822     export SAVED_PROVIDE="${PROVIDE}"
823     export SAVED_NOPKGBUILD="${NOPKGBUILD}"
824     export SAVED_PKGTYPE="${PKGTYPE}"
825    
826     # bindir too
827     export SAVED_BINDIR="${BINDIR}"
828    
829     # export the SPLIT_PACKAGE_BASE
830     export SPLIT_PACKAGE_BASE="${SAVED_PNAME}"
831    
832     # functions
833     if [[ ! -z $(typeset -f preinstall) ]]
834     then
835     # rename the old one
836     local saved_preinstall
837     saved_preinstall=SAVED_$(typeset -f preinstall)
838     eval "${saved_preinstall}"
839     export -f SAVED_preinstall
840     fi
841    
842     if [[ ! -z $(typeset -f postinstall) ]]
843     then
844     # rename the old one
845     local saved_postinstall
846     saved_postinstall=SAVED_$(typeset -f postinstall)
847     eval "${saved_postinstall}"
848     export -f SAVED_postinstall
849     fi
850    
851     if [[ ! -z $(typeset -f preremove) ]]
852     then
853     # rename the old one
854     local saved_preremove
855     saved_preremove=SAVED_$(typeset -f preremove)
856     eval "${saved_preremove}"
857     export -f SAVED_preremove
858     fi
859    
860     if [[ ! -z $(typeset -f postremove) ]]
861     then
862     # rename the old one
863     local saved_postremove
864     saved_postremove=SAVED_$(typeset -f postremove)
865     eval "${saved_postremove}"
866     export -f SAVED_postremove
867     fi
868    }
869    
870    split_restore_variables()
871    {
872     export PNAME="${SAVED_PNAME}"
873     export PVER="${SAVED_PVER}"
874     export PBUILD="${SAVED_PBUILD}"
875     export PCATEGORIE="${SAVED_PCATEGORIE}"
876     export DESCRIPTION="${SAVED_DESCRIPTION}"
877     export HOMEPAGE="${SAVED_HOMEPAGE}"
878     export SPECIAL_VARS="${SAVED_SPECIAL_VARS}"
879     export STATE="${SAVED_STATE}"
880     export PKGTYPE="${SAVED_PKGTYPE}"
881     export INHERITS="${SAVED_INHERITS}"
882     export DEPEND="${SAVED_DEPEND}"
883     export SDEPEND="${SAVED_SDEPEND}"
884     export PROVIDE="${SAVED_PROVIDE}"
885     export NOPKGBUILD="${SAVED_NOPKGBUILD}"
886     export PKGTYPE="${SAVED_PKGTYPE}"
887    
888     # bindir too
889     export BINDIR="${SAVED_BINDIR}"
890    
891     # functions
892     if [[ ! -z $(typeset -f SAVED_preinstall) ]]
893     then
894     # rename the old one
895     local saved_preinstall
896     saved_preinstall=$(typeset -f SAVED_preinstall)
897     eval "${saved_preinstall/SAVED_/}"
898     export -f preinstall
899     fi
900    
901     if [[ ! -z $(typeset -f SAVED_postinstall) ]]
902     then
903     # rename the old one
904     local saved_postinstall
905     saved_postinstall=$(typeset -f SAVED_postinstall)
906     eval "${saved_postinstall/SAVED_/}"
907     export -f postinstall
908     fi
909    
910     if [[ ! -z $(typeset -f SAVED_preremove) ]]
911     then
912     # rename the old one
913     local saved_preremove
914     saved_preremove=$(typeset -f SAVED_preremove)
915     eval "${saved_preremove/SAVED_/}"
916     export -f preremove
917     fi
918    
919     if [[ ! -z $(typeset -f SAVED_postremove) ]]
920     then
921     # rename the old one
922     local saved_postremove
923     saved_postremove=$(typeset -f SAVED_postremove)
924     eval "${saved_postremove/SAVED_/}"
925     export -f postremove
926     fi
927    }
928    
929    split_unset_variables()
930    {
931     # unset saved vars; not needed anymore
932     unset SAVED_PNAME
933     unset SAVED_PVER
934     unset SAVED_PBUILD
935     unset SAVED_PCATEGORIE
936     unset SAVED_DESCRIPTION
937     unset SAVED_HOMEPAGE
938     unset SAVED_SPECIAL_VARS
939     unset SAVED_STATE
940     unset SAVED_PKGTYPE
941     unset SAVED_INHERITS
942     unset SAVED_DEPEND
943     unset SAVED_SDEPEND
944     unset SAVED_PROVIDE
945     unset SAVED_BINDIR
946     unset SAVED_NOPKGBUILD
947     unset SAVED_PKGTYPE
948     unset SPLIT_PACKAGE_BASE
949     unset -f SAVED_preinstall
950     unset -f SAVED_postinstall
951     unset -f SAVED_preremove
952     unset -f SAVED_postremove
953    }
954    
955    split_export_inherits()
956    {
957     local subpackage="$1"
958     local func
959     local newfunc
960    
961     for func in preinstall postinstall preremove postremove
962     do
963     if [[ ! -z $(typeset -f ${func}_${subpackage}) ]]
964     then
965     newfunc=$(typeset -f ${func}_${subpackage})
966     newfunc="${newfunc/_${subpackage} (/ (}"
967     eval "${newfunc}"
968     fi
969     done
970    }
971    
972    split_delete_inherits()
973    {
974     local subpackage="$1"
975     local func
976    
977     for func in preinstall postinstall preremove postremove
978     do
979     if [[ ! -z $(typeset -f ${func}_${subpackage}) ]]
980     then
981     unset -f ${func}
982     fi
983     done
984     }
985    
986  export_inherits()  export_inherits()
987  {  {
988   local include="$1"   local include="$1"
# Line 879  generate_package_md5sum() Line 1044  generate_package_md5sum()
1044   # fix target as it may be empty !   # fix target as it may be empty !
1045   [ -n "${target}" ] && target="-${target}"   [ -n "${target}" ] && target="-${target}"
1046    
1047    
1048   # build pkgname   # build pkgname
1049   pkgname="${pname}${target}-${pver}-${parch}-${pbuild}"   pkgname="${pname}${target}-${pver}-${parch}-${pbuild}"
1050    
# Line 898  generate_package_md5sum() Line 1064  generate_package_md5sum()
1064   : ${MAGE_TREE_DEST=${BUILDDIR}/mage-tree}   : ${MAGE_TREE_DEST=${BUILDDIR}/mage-tree}
1065    
1066   # setup md5 dir   # setup md5 dir
1067   dest="${MAGE_TREE_DEST}/${pcat}/${pname}/md5"   dest="${MAGE_TREE_DEST}/${pcat}/${pname}${target}/md5"
1068   install -d ${dest}   install -d ${dest}
1069    
1070   # gen md5sum   # gen md5sum
# Line 936  source_pkg_build() Line 1102  source_pkg_build()
1102   echo -e "${COLGREEN}Source package ${COLBLUE}${PNAME}-${PVER}-${PBUILD}.${SRCPKGSUFFIX} ${COLGREEN}successfully builded.${COLDEFAULT}"   echo -e "${COLGREEN}Source package ${COLBLUE}${PNAME}-${PVER}-${PBUILD}.${SRCPKGSUFFIX} ${COLGREEN}successfully builded.${COLDEFAULT}"
1103  }  }
1104    
1105    step_by_step()
1106    {
1107     if [[ ${STEP_BY_STEP} = true ]]
1108     then
1109     echo -e "${COLRED}Step-by-step enabled! Paused after $1.${COLDEFAULT}"
1110     echo "Press [enter] to continue"
1111     read
1112     fi
1113    }
1114    
1115    
1116  # print out our version  # print out our version
1117  showversion  showversion
# Line 962  fi Line 1138  fi
1138  # creates md5sums for smages to given dir  # creates md5sums for smages to given dir
1139  if [[ $1 = calcmd5 ]]  if [[ $1 = calcmd5 ]]
1140  then  then
1141   if [ $# -ge 3 ]   if [ $# -ge 2 ]
1142   then   then
1143   SMAGENAME="$2"   SMAGENAME="$2"
1144   MD5DIR="$3"   MD5DIR="$3"
1145   source ${SMAGENAME} || die "download source failed"   [[ -z ${MD5DIR} ]] && MD5DIR="$(dirname ${SMAGENAME})/md5"
1146    
1147     smagesource ${SMAGENAME} || die "download source failed"
1148    
1149   # overridable sourcedir; must be declared after source of the smage2   # overridable sourcedir; must be declared after source of the smage2
1150   CALC_SOURCEDIR="${CALC_SOURCEDIR:="${SOURCEDIR}/${PNAME}"}"   CALC_SOURCEDIR="${CALC_SOURCEDIR:="${SOURCEDIR}/${PNAME}"}"
# Line 1018  then Line 1196  then
1196   echo   echo
1197   else   else
1198   echo "Usage: Calculating MD5 Sums:"   echo "Usage: Calculating MD5 Sums:"
1199   echo "    $(basename $0) calcmd5 /path/to/SMAGENAME /path/to/MD5DIR"   echo "    $(basename $0) calcmd5 /path/to/SMAGENAME [/path/to/MD5DIR]"
1200   echo   echo
1201   echo   echo
1202   echo "Export the CALC_SOURCEDIR variable to override current SOURCEDIRs."   echo "Export the CALC_SOURCEDIR variable to override current SOURCEDIRs."
# Line 1040  then Line 1218  then
1218   # get smage   # get smage
1219   SMAGENAME="$2"   SMAGENAME="$2"
1220   MD5DIR="$(dirname ${SMAGENAME})/md5"   MD5DIR="$(dirname ${SMAGENAME})/md5"
1221   source ${SMAGENAME} || die "download source failed"   smagesource ${SMAGENAME} || die "download source failed"
1222    
1223   download_sources   download_sources
1224   exit 0   exit 0
# Line 1052  then Line 1230  then
1230   # set correct SMAGENAME   # set correct SMAGENAME
1231   SMAGENAME="$2"   SMAGENAME="$2"
1232   MD5DIR="$(dirname ${SMAGENAME})/md5"   MD5DIR="$(dirname ${SMAGENAME})/md5"
1233   source ${SMAGENAME} || die "regen: smage2 not found"   smagesource ${SMAGENAME} || die "regen: smage2 not found"
1234    
1235   regen_mage_tree   regen_mage_tree
1236    
1237   # build md5sum for existing packages   # build several targets
1238   generate_package_md5sum \   if [[ -n ${MAGE_TARGETS} ]]
1239   --pcat "${PCATEGORIE}" \   then
1240   --pname "${PNAME}" \   for target in ${MAGE_TARGETS}
1241   --pver "${PVER}" \   do
1242   --pbuild "${PBUILD}" \   # build md5sum for existing packages
1243   --parch "${ARCH}" \   generate_package_md5sum \
1244   --target "${target}"   --pcat "${PCATEGORIE}" \
1245     --pname "${PNAME}" \
1246     --pver "${PVER}" \
1247     --pbuild "${PBUILD}" \
1248     --parch "${ARCH}" \
1249     --target "${target}"
1250     done
1251    
1252     # build several subpackages
1253     elif [[ -n ${SPLIT_PACKAGES} ]]
1254     then
1255     split_save_variables
1256     for subpackage in ${SPLIT_PACKAGES}
1257     do
1258     # get the right variables for the split
1259     export PNAME="${subpackage}"
1260     split_info_${subpackage}
1261     # build md5sum for existing packages
1262     generate_package_md5sum \
1263     --pcat "${PCATEGORIE}" \
1264     --pname "${PNAME}" \
1265     --pver "${PVER}" \
1266     --pbuild "${PBUILD}" \
1267     --parch "${ARCH}"
1268     # restore smage environment
1269     split_restore_variables
1270     done
1271     # unset all saved smage variables
1272     split_unset_variables
1273    
1274     else
1275     # build md5sum for existing packages
1276     generate_package_md5sum \
1277     --pcat "${PCATEGORIE}" \
1278     --pname "${PNAME}" \
1279     --pver "${PVER}" \
1280     --pbuild "${PBUILD}" \
1281     --parch "${ARCH}"
1282     fi
1283    
1284   exit 0   exit 0
1285  fi  fi
# Line 1076  then Line 1292  then
1292    
1293   echo -e "${COLGREEN}create-src-tarball called for ${COLBLUE}${SMAGENAME}${COLGREEN} ...${COLDEFAULT}"   echo -e "${COLGREEN}create-src-tarball called for ${COLBLUE}${SMAGENAME}${COLGREEN} ...${COLDEFAULT}"
1294    
1295   source ${SMAGENAME} || die "regen: smage2 not found"   smagesource ${SMAGENAME} || die "regen: smage2 not found"
1296    
1297   if [[ -d ${SOURCEDIR}/${PNAME} ]]   if [[ -d ${SOURCEDIR}/${PNAME} ]]
1298   then   then
# Line 1125  fi Line 1341  fi
1341  [ -z "${CFLAGS}" ] && die "no CFLAGS variable found in ${MAGERC}"  [ -z "${CFLAGS}" ] && die "no CFLAGS variable found in ${MAGERC}"
1342  [ -z "${CXXFLAGS}" ] && die "no CXXFLAGS variable found in ${MAGERC}"  [ -z "${CXXFLAGS}" ] && die "no CXXFLAGS variable found in ${MAGERC}"
1343    
1344  source ${SMAGENAME} || die "source failed"  smagesource ${SMAGENAME} || die "source failed"
1345  PKGNAME="${PNAME}-${PVER}-${ARCH}-${PBUILD}"  PKGNAME="${PNAME}-${PVER}-${ARCH}-${PBUILD}"
1346  MD5DIR="$(dirname ${SMAGENAME})/md5"  MD5DIR="$(dirname ${SMAGENAME})/md5"
1347    SMAGE_LOG_CMD="tee -a /var/log/smage/${PKGNAME}.log"
1348    
1349  xtitle "Compiling ${PKGNAME}"  xtitle "Compiling ${PKGNAME}"
1350  echo -e "${COLGREEN}Compiling ${PKGNAME}${COLDEFAULT}"  echo -e "${COLGREEN}Compiling ${PKGNAME}${COLDEFAULT}"
# Line 1150  fi Line 1367  fi
1367  # fixes some issues with these functions  # fixes some issues with these functions
1368  export -f src_prepare || die "src_prepare export failed"  export -f src_prepare || die "src_prepare export failed"
1369  export -f src_compile || die "src_compile export failed"  export -f src_compile || die "src_compile export failed"
1370    export -f src_check || die "src_check export failed"
1371  export -f src_install || die "src_install export failed"  export -f src_install || die "src_install export failed"
1372    
1373  # fixes some compile issues  # fixes some compile issues
# Line 1167  export MAKEOPTS="${MAKEOPTS}" || die "MA Line 1385  export MAKEOPTS="${MAKEOPTS}" || die "MA
1385  # setup ccache  # setup ccache
1386  [[ ${SMAGE_USE_CCACHE} = true ]] && setup_ccache_environment  [[ ${SMAGE_USE_CCACHE} = true ]] && setup_ccache_environment
1387    
1388  # small sleep to show our settings  # clean up builddir if a previously one exist
 sleep 1  
   
 # cleans up build if a previously one exists  
1389  if [ -d ${BUILDDIR} ]  if [ -d ${BUILDDIR} ]
1390  then  then
1391   rm -rf ${BUILDDIR}/* || die "couldn't cleanup \$BUILDDIR."   rm -rf ${BUILDDIR}/* || die "couldn't cleanup \$BUILDDIR."
1392  fi  fi
1393  install -d ${BUILDDIR} || die "couldn't create \$BUILDDIR."  install -d ${BUILDDIR} || die "couldn't create \$BUILDDIR."
1394    
1395  # cleans up srcdir if a previously unpacked one exists  # clean up srcdir if a previously unpacked one exist
1396  if [ -d ${SRCDIR} ]  if [ -d ${SRCDIR} ]
1397  then  then
1398   rm -rf ${SRCDIR}   rm -rf ${SRCDIR}
1399  fi  fi
1400    
1401  # cleans up bindir if a previous build exists or creates a new one  # clean up bindir if a previous build exist or create a new one
1402  if [ -d ${BINDIR} ]  if [ -d ${BINDIR} ]
1403  then  then
1404   rm -rf ${BINDIR}   rm -rf ${BINDIR}
1405  fi  fi
1406  install -d ${BINDIR} || die "couldn't create \$BINDIR."  install -d ${BINDIR} || die "couldn't create \$BINDIR."
1407    
1408  # cleans up package temp dir if a previous build exists  # clean up package temp dir if a previous build exist
1409  if [ -d ${BUILDDIR}/${PKGNAME} ]  if [ -d ${BUILDDIR}/${PKGNAME} ]
1410  then  then
1411   rm -rf ${BUILDDIR}/${PKGNAME}   rm -rf ${BUILDDIR}/${PKGNAME}
1412  fi  fi
1413    
1414  # cleans up timestamp if one exists  # setup build logging
1415  if [ -f /var/tmp/timestamp ]  [[ ! -d /var/log/smage ]] && install -d /var/log/smage
1416    echo -e "### Build started on $(date) ###\n" > /var/log/smage/${PKGNAME}.log
1417    
1418    src_prepare | ${SMAGE_LOG_CMD}
1419    die_pipestatus 0 "src_prepare failed"
1420    step_by_step $_
1421    
1422    src_compile | ${SMAGE_LOG_CMD}
1423    die_pipestatus 0 "src_compile failed"
1424    step_by_step $_
1425    
1426    # only run checks if requested
1427    if [[ ${MAGE_CHECK} != true ]]
1428  then  then
1429   mage rmstamp   echo "MAGE_CHECK not requested; src_check() will not be run!" | ${SMAGE_LOG_CMD}
1430     step_by_step src_check
1431    else
1432     src_check | ${SMAGE_LOG_CMD}
1433     die_pipestatus 0 "src_check failed"
1434     step_by_step $_
1435  fi  fi
1436    
1437  src_prepare || die "src_prepare failed"  # build several subpackages
1438  src_compile || die "src_compile failed"  if [[ -n ${SPLIT_PACKAGES} ]]
1439  src_install || die "src_install failed"  then
1440     # save bindir & pname
1441     split_save_variables
1442     export SAVED_BINDIR="${BINDIR}"
1443     for subpackage in ${SPLIT_PACKAGES}
1444     do
1445     if typeset -f src_install_${subpackage} > /dev/null
1446     then
1447     # export subpackage bindir
1448     export BINDIR="${SAVED_BINDIR}_${subpackage}"
1449     # export PNAME, several internal function and include
1450     # rely on this variable
1451     export PNAME="${subpackage}"
1452    
1453     echo
1454     echo -en "${COLBLUE}*** ${COLDEFAULT}"
1455     echo -en "  Running ${COLGREEN}split src_install()${COLDEFAULT}"
1456     echo -en " for subpkg: ${COLBLUE}${PNAME}${COLDEFAULT}"
1457     echo -e " - basepkg: ${COLBLUE}${SPLIT_PACKAGE_BASE}${COLDEFAULT} ..."
1458    
1459     src_install_${subpackage} | ${SMAGE_LOG_CMD}
1460     die_pipestatus 0 "src_install_${subpackage} failed"
1461     step_by_step $_
1462     fi
1463     done
1464     # restore bindir & pname
1465     split_restore_variables
1466     # unset all saved smage variables
1467     split_unset_variables
1468    else
1469     src_install | ${SMAGE_LOG_CMD}
1470     die_pipestatus 0 "src_install failed"
1471     step_by_step $_
1472    fi
1473    
1474  # compressing doc, info & man files  # compressing doc, info & man files
1475  if [ -d ${BUILDDIR}/builded/usr/share/man ]  if [[ -n ${SPLIT_PACKAGES} ]]
1476  then  then
1477   echo -e "${COLBLUE}===${COLGREEN} compressing man-pages ...${COLDEFAULT}"   for subpackage in ${SPLIT_PACKAGES}
1478   ${MLIBDIR}/compressdoc -g -9 ${BUILDDIR}/builded/usr/share/man   do
1479     mcompressdocs ${BINDIR}_${subpackage}
1480     done
1481    else
1482     mcompressdocs ${BINDIR}
1483    fi
1484    
1485    if [[ ${SMAGE_STRIP_LIBTOOL} = true ]]
1486    then
1487     if [[ -n ${SPLIT_PACKAGES} ]]
1488     then
1489     for subpackage in ${SPLIT_PACKAGES}
1490     do
1491     echo -e "${COLBLUE}===${COLGREEN} stripping libtool archives for '${subpackage}' ...${COLDEFAULT}"
1492     mstriplibtoolarchive ${BINDIR}_${subpackage}
1493     done
1494     else
1495     echo -e "${COLBLUE}===${COLGREEN} stripping libtool archives ...${COLDEFAULT}"
1496     mstriplibtoolarchive ${BINDIR}
1497     fi
1498  fi  fi
1499    
1500  if [ -d ${BUILDDIR}/builded/usr/share/info ]  if [[ ${SMAGE_PURGE} = true ]]
1501  then  then
1502   echo -e "${COLBLUE}===${COLGREEN} compressing info-pages ...${COLDEFAULT}"   if [[ -n ${SPLIT_PACKAGES} ]]
1503   ${MLIBDIR}/compressdoc -g -9 ${BUILDDIR}/builded/usr/share/info   then
1504     for subpackage in ${SPLIT_PACKAGES}
1505     do
1506     echo -e "${COLBLUE}===${COLGREEN} purging all purge targets in '${subpackage}' ...${COLDEFAULT}"
1507     mpurgetargets ${BINDIR}_${subpackage}
1508     done
1509     else
1510     echo -e "${COLBLUE}===${COLGREEN} purging all purge targets ...${COLDEFAULT}"
1511     mpurgetargets ${BINDIR}
1512     fi
1513  fi  fi
1514    
1515  # stripping all bins and libs  # stripping all bins and libs
# Line 1226  case ${NOSTRIP} in Line 1518  case ${NOSTRIP} in
1518   echo -e "NOSTRIP=true detected; Package will not be stripped ..."   echo -e "NOSTRIP=true detected; Package will not be stripped ..."
1519   ;;   ;;
1520   *)   *)
1521   echo -e "${COLBLUE}===${COLGREEN} stripping binaries ...${COLDEFAULT}"   if [[ -n ${SPLIT_PACKAGES} ]]
1522   mstripbins ${BINDIR}   then
1523   echo -e "${COLBLUE}===${COLGREEN} stripping libraries ...${COLDEFAULT}"   for subpackage in ${SPLIT_PACKAGES}
1524   mstriplibs ${BINDIR}   do
1525     echo -e "${COLBLUE}===${COLGREEN} stripping binaries for '${subpackage}' ...${COLDEFAULT}"
1526     mstripbins ${BINDIR}_${subpackage}
1527     echo -e "${COLBLUE}===${COLGREEN} stripping dynamic libraries for '${subpackage}' ...${COLDEFAULT}"
1528     mstriplibs ${BINDIR}_${subpackage}
1529     echo -e "${COLBLUE}===${COLGREEN} stripping static libraries for '${subpackage}' ...${COLDEFAULT}"
1530     mstripstatic ${BINDIR}_${subpackage}
1531     done
1532     else
1533     echo -e "${COLBLUE}===${COLGREEN} stripping binaries ...${COLDEFAULT}"
1534     mstripbins ${BINDIR}
1535     echo -e "${COLBLUE}===${COLGREEN} stripping dynamic libraries ...${COLDEFAULT}"
1536     mstriplibs ${BINDIR}
1537     echo -e "${COLBLUE}===${COLGREEN} stripping static libraries ...${COLDEFAULT}"
1538     mstripstatic ${BINDIR}
1539     fi
1540   ;;   ;;
1541  esac  esac
1542    
# Line 1240  case ${NOPKGBUILD} in Line 1547  case ${NOPKGBUILD} in
1547   ;;   ;;
1548   *)   *)
1549   # build several targets   # build several targets
1550   if [ -n "${MAGE_TARGETS}" ]   if [[ -n ${MAGE_TARGETS} ]]
1551   then   then
1552   for target in ${MAGE_TARGETS}   for target in ${MAGE_TARGETS}
1553   do   do
1554   # check if an special target_pkgbuild exists   # check if a special target_pkgbuild exists
1555   if typeset -f ${target}_pkgbuild > /dev/null   if typeset -f ${target}_pkgbuild > /dev/null
1556   then   then
1557   # run it   # run it
# Line 1266  case ${NOPKGBUILD} in Line 1573  case ${NOPKGBUILD} in
1573    
1574   echo -e "${COLGREEN}\nPackage ${PNAME}-${target}-${PVER}-${ARCH}-${PBUILD} successfully builded.\n${COLDEFAULT}"   echo -e "${COLGREEN}\nPackage ${PNAME}-${target}-${PVER}-${ARCH}-${PBUILD} successfully builded.\n${COLDEFAULT}"
1575   done   done
1576    
1577     # build several subpackages
1578     elif [[ -n ${SPLIT_PACKAGES} ]]
1579     then
1580     split_save_variables
1581     for subpackage in ${SPLIT_PACKAGES}
1582     do
1583     # get the right variables for the split
1584     export PNAME="${subpackage}"
1585     split_info_${PNAME}
1586    
1587     # jump to next one if NOPKGBUILD is set in split_info
1588     case ${NOPKGBUILD} in
1589     true|TRUE|yes|y) continue ;;
1590     esac
1591    
1592     # check if an special subpackage_pkgbuild exists
1593     if typeset -f ${PNAME}_pkgbuild > /dev/null
1594     then
1595     # run it
1596     ${PNAME}_pkgbuild
1597     fi
1598     # now create the target package
1599     ${MLIBDIR}/pkgbuild_dir.sh \
1600     "${PNAME}-${PVER}-${ARCH}-${PBUILD}" \
1601     "${BINDIR}_${PNAME}" || die "split_package: ${PNAME} package-build failed"
1602    
1603     # build pkg-md5-sum if requested
1604     generate_package_md5sum \
1605     --pcat "${PCATEGORIE}" \
1606     --pname "${PNAME}" \
1607     --pver "${PVER}" \
1608     --pbuild "${PBUILD}" \
1609     --parch "${ARCH}"
1610    
1611     echo -e "${COLGREEN}\nPackage ${PNAME}-${PVER}-${ARCH}-${PBUILD} successfully builded.\n${COLDEFAULT}"
1612    
1613     # restore smage environment
1614     split_restore_variables
1615     done
1616     # unset all saved smage variables
1617     split_unset_variables
1618    
1619   else   else
1620   ${MLIBDIR}/pkgbuild_dir.sh ${PKGNAME} ${BINDIR} || die "package-build failed"   ${MLIBDIR}/pkgbuild_dir.sh ${PKGNAME} ${BINDIR} || die "package-build failed"
1621    
# Line 1285  case ${NOPKGBUILD} in Line 1635  case ${NOPKGBUILD} in
1635   ;;   ;;
1636  esac  esac
1637    
1638    if [[ ${SMAGE_BUILD_LOGGING} != false ]]
1639    then
1640     bzip2 -9f /var/log/smage/${PKGNAME}.log
1641    else
1642     [[ -f /var/log/smage/${PKGNAME}.log ]] && rm /var/log/smage/${PKGNAME}.log
1643    fi
1644    
1645  # for sure  # for sure
1646  unset NOPKGBUILD  unset NOPKGBUILD
1647  unset NOSTRIP  unset NOSTRIP

Legend:
Removed from v.602  
changed lines
  Added in v.1582