Magellan Linux

Diff of /trunk/mage/usr/lib/mage/smage2.sh

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

revision 1580 by niro, Wed Dec 28 11:58:28 2011 UTC revision 1631 by niro, Fri Jan 13 13:20:22 2012 UTC
# Line 10  Line 10 
10  # set default user mage.rc  # set default user mage.rc
11  : ${MAGERC="/etc/mage.rc"}  : ${MAGERC="/etc/mage.rc"}
12    
 ## setup ##  
 SMAGENAME="$1"  
 SMAGEVERSION="$( < ${MLIBDIR}/version)"  
   
13  # export default C locale  # export default C locale
14  export LC_ALL=C  export LC_ALL=C
15    
# Line 21  source /etc/mage.rc.global Line 17  source /etc/mage.rc.global
17  source ${MAGERC}  source ${MAGERC}
18  source ${MLIBDIR}/mage4.functions.sh  source ${MLIBDIR}/mage4.functions.sh
19    
20    ## setup ##
21    SMAGENAME="$1"
22    SMAGEVERSION="$(< ${MLIBDIR}/version)"
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} ]]
26  then  then
# Line 177  download_sources() Line 177  download_sources()
177   fi   fi
178    
179   echo -e "${COLBLUE}==>${COLGREEN} fetching ${uri}${COLDEFAULT}"   echo -e "${COLBLUE}==>${COLGREEN} fetching ${uri}${COLDEFAULT}"
180   mdownload --uri "${uri}" --dir "${outputdir}" || die "Could not download '${uri}'"   # always use verbose mode for source downloads
181     FVERBOSE=off msetfeature "verbose"
182     # do not die here, mchecksum catches download errors
183     mdownload --uri "${uri}" --dir "${outputdir}"
184    
185   # unset them to be sure   # unset them to be sure
186   unset uri   unset uri
# Line 201  download_sources() Line 204  download_sources()
204  # dummy function, used if that does not exist in smage file  # dummy function, used if that does not exist in smage file
205  src_prepare()  src_prepare()
206  {  {
207   echo "no src_prepare defined"   echo "no src_prepare defined; doing nothing ..."
208   return 0   return 0
209  }  }
210    
211  # dummy function, used if that does not exist in smage file  # dummy function, used if that does not exist in smage file
212  src_compile()  src_compile()
213  {  {
214   echo "no src_compile defined"   echo "no src_compile defined; doing nothing ..."
215   return 0   return 0
216  }  }
217    
218  # dummy function, used if that does not exist in smage file  # dummy function, used if that does not exist in smage file
219  src_check()  src_check()
220  {  {
221   echo "no src_check defined"   echo "no src_check defined; doing nothing ..."
222   return 0   return 0
223  }  }
224    
225  # dummy function, used if that does not exist in smage file  # dummy function, used if that does not exist in smage file
226  src_install()  src_install()
227  {  {
228   echo "no src_install defined"   echo "no src_install defined; doing nothing ..."
229   return 0   return 0
230  }  }
231    
# Line 236  mlibdir() Line 239  mlibdir()
239    
240  mconfigure()  mconfigure()
241  {  {
242     local myopts
243     if [[ ! -z ${CTARGET} ]]
244     then
245     myopts+=" --target=${CTARGET}"
246     fi
247     # if requested disable-static
248     if [[ ! -z $(./configure --help | grep -- '--.*able-static') ]]
249     then
250     if mqueryfeature '!static'
251     then
252     myopts+=" --disable-static"
253     else
254     myopts+=" --enable-static"
255     fi
256     fi
257    
258     # always enable shared by default
259     if [[ ! -z $(./configure --help | grep -- '--.*able-shared') ]]
260     then
261     myopts+=" --enable-shared"
262     fi
263    
264   if [ -x ./configure ]   if [ -x ./configure ]
265   then   then
266   ./configure \   ./configure \
# Line 248  mconfigure() Line 273  mconfigure()
273   --sysconfdir=/etc \   --sysconfdir=/etc \
274   --localstatedir=/var/lib \   --localstatedir=/var/lib \
275   --libdir=/usr/$(mlibdir) \   --libdir=/usr/$(mlibdir) \
276     ${myopts} \
277   "$@" || die "mconfigure failed"   "$@" || die "mconfigure failed"
278   else   else
279   echo "configure is not an executable ..."   echo "configure is not an executable ..."
# Line 343  munpack() Line 369  munpack()
369   rar)   rar)
370   unrar x ${SOURCEDIR}/${PNAME}/${SRCFILE} ${DEST}  || die ".rar unpack failed."   unrar x ${SOURCEDIR}/${PNAME}/${SRCFILE} ${DEST}  || die ".rar unpack failed."
371   ;;   ;;
372   zip|xpi)   zip|xpi|jar)
373   unzip ${SOURCEDIR}/${PNAME}/${SRCFILE} -d ${DEST} || die ".zip unpack failed."   unzip ${SOURCEDIR}/${PNAME}/${SRCFILE} -d ${DEST} || die ".zip unpack failed."
374   ;;   ;;
375   rpm)   rpm)
# Line 409  mautoreconf() Line 435  mautoreconf()
435  minstalldocs()  minstalldocs()
436  {  {
437   local docfiles   local docfiles
438     local doc
439   docfiles="$@"   docfiles="$@"
440    
441   if [ ! -d ${BINDIR}/usr/share/doc/${PNAME}-${PVER} ]   if [ ! -d ${BINDIR}/usr/share/doc/${PNAME}-${PVER} ]
# Line 416  minstalldocs() Line 443  minstalldocs()
443   install -d ${BINDIR}/usr/share/doc/${PNAME}-${PVER} || die "creating doc dirs."   install -d ${BINDIR}/usr/share/doc/${PNAME}-${PVER} || die "creating doc dirs."
444   fi   fi
445    
446   local i   for doc in ${docfiles}
  for i in ${docfiles}  
447   do   do
448   if [ -f ${i} ]   if [ -f ${doc} ]
449   then   then
450   cat ${i} | gzip -9c > ${i}.gz || die "gzipping docs."   if mqueryfeature "compressdoc"
451   install -m 0644 ${SRCDIR}/${i}.gz \   then
452   ${BINDIR}/usr/share/doc/${PNAME}-${PVER} || die "coping docs."   cat ${doc} | gzip -9c > ${BINDIR}/usr/share/doc/${PNAME}-${PVER}/$(basename ${doc}).gz || die "gzipping +installing ${doc}."
453     chmod 0644 ${BINDIR}/usr/share/doc/${PNAME}-${PVER}/$(basename ${doc}).gz || die "fixing permissions of ${doc}."
454     else
455     install -m 0644 ${SRCDIR}/${i} ${BINDIR}/usr/share/doc/${PNAME}-${PVER} || die "installing ${doc}."
456     fi
457   fi   fi
458   done   done
459  }  }
# Line 460  mstriplibtoolarchive() Line 490  mstriplibtoolarchive()
490   local stripdir="$@"   local stripdir="$@"
491    
492   [[ -z ${stripdir} ]] && stripdir="${BINDIR}"   [[ -z ${stripdir} ]] && stripdir="${BINDIR}"
493   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   find ${stripdir} ! -type d -name \*.la | xargs | grep "libtool library" | cut -f 1 -d : | xargs --no-run-if-empty rm -f -- 2> /dev/null
494  }  }
495    
496  mpurgetargets()  mpurgetargets()
# Line 540  setup_ccache_environment() Line 570  setup_ccache_environment()
570   fi   fi
571  }  }
572    
   
573  # fixes given dependencies to match a MAGE_TARGET  # fixes given dependencies to match a MAGE_TARGET
574  # fix_mage_deps -target s/depend # <-- note -target !  # fix_mage_deps -target s/depend # <-- note -target !
575  fix_mage_deps()  fix_mage_deps()
# Line 727  regen_mage_tree() Line 756  regen_mage_tree()
756   local subpackage   local subpackage
757    
758   # build them only if requested   # build them only if requested
759   if [[ ${REGEN_MAGE_TREE} = true ]]   if mqueryfeature regentree
760   then   then
761   # run it without targets   # run it without targets
762   if [[ -n ${MAGE_TARGETS} ]]   if [[ -n ${MAGE_TARGETS} ]]
# Line 790  regen_mage_tree() Line 819  regen_mage_tree()
819   unset STATE   unset STATE
820   unset DESCRIPTION   unset DESCRIPTION
821   unset HOMEPAGE   unset HOMEPAGE
822   unset PKGTYPE   # unset PKGTYPE <-- don't do that either; smage needs this var
823   unset INHERITS   unset INHERITS
824   unset DEPEND   unset DEPEND
825   unset SDEPEND   unset SDEPEND
# Line 816  split_save_variables() Line 845  split_save_variables()
845   export SAVED_DEPEND="${DEPEND}"   export SAVED_DEPEND="${DEPEND}"
846   export SAVED_SDEPEND="${SDEPEND}"   export SAVED_SDEPEND="${SDEPEND}"
847   export SAVED_PROVIDE="${PROVIDE}"   export SAVED_PROVIDE="${PROVIDE}"
848   export SAVED_NOPKGBUILD="${NOPKGBUILD}"   export SAVED_PKGTYPE="${PKGTYPE}"
849    
850     # special handling needed for mage features
851     # pkgbuild
852     mqueryfeature "pkgbuild" && export SAVED_FEATURE_PKGBUILD="pkgbuild"
853     mqueryfeature "!pkgbuild" && export SAVED_FEATURE_PKGBUILD="!pkgbuild"
854     # strip
855     mqueryfeature "strip" && export SAVED_FEATURE_STRIP="strip"
856     mqueryfeature "!strip" && export SAVED_FEATURE_STRIP="!strip"
857     # libtool
858     mqueryfeature "libtool" && export SAVED_FEATURE_LIBTOOL="libtool"
859     mqueryfeature "!libtool" && export SAVED_FEATURE_LIBTOOL="!libtool"
860     # compressdoc
861     mqueryfeature "compressdoc" && export SAVED_FEATURE_COMPRESSDOC="compressdoc"
862     mqueryfeature "!compressdoc" && export SAVED_FEATURE_COMPRESSDOC="!compressdoc"
863    
864   # bindir too   # bindir too
865   export SAVED_BINDIR="${BINDIR}"   export SAVED_BINDIR="${BINDIR}"
# Line 877  split_restore_variables() Line 920  split_restore_variables()
920   export DEPEND="${SAVED_DEPEND}"   export DEPEND="${SAVED_DEPEND}"
921   export SDEPEND="${SAVED_SDEPEND}"   export SDEPEND="${SAVED_SDEPEND}"
922   export PROVIDE="${SAVED_PROVIDE}"   export PROVIDE="${SAVED_PROVIDE}"
923   export NOPKGBUILD="${SAVED_NOPKGBUILD}"   export PKGTYPE="${SAVED_PKGTYPE}"
924    
925     # special handling needed for mage features
926     # pkgbuild
927     FVERBOSE=off msetfeature "${SAVED_FEATURE_PKGBUILD}"
928     # strip
929     FVERBOSE=off msetfeature "${SAVED_FEATURE_STRIP}"
930     # libtool
931     FVERBOSE=off msetfeature "${SAVED_FEATURE_LIBTOOL}"
932     # compressdoc
933     FVERBOSE=off msetfeature "${SAVED_FEATURE_COMPRESSDOC}"
934    
935   # bindir too   # bindir too
936   export BINDIR="${SAVED_BINDIR}"   export BINDIR="${SAVED_BINDIR}"
# Line 937  split_unset_variables() Line 990  split_unset_variables()
990   unset SAVED_SDEPEND   unset SAVED_SDEPEND
991   unset SAVED_PROVIDE   unset SAVED_PROVIDE
992   unset SAVED_BINDIR   unset SAVED_BINDIR
993   unset SAVED_NOPKGBUILD   unset SAVED_PKGTYPE
994     unset SAVED_FEATURE_PKGBUILD
995     unset SAVED_FEATURE_STRIP
996     unset SAVED_FEATURE_LIBTOOL
997     unset SAVED_FEATURE_COMPRESSDOC
998   unset SPLIT_PACKAGE_BASE   unset SPLIT_PACKAGE_BASE
999   unset -f SAVED_preinstall   unset -f SAVED_preinstall
1000   unset -f SAVED_postinstall   unset -f SAVED_postinstall
# Line 1037  generate_package_md5sum() Line 1094  generate_package_md5sum()
1094   # fix target as it may be empty !   # fix target as it may be empty !
1095   [ -n "${target}" ] && target="-${target}"   [ -n "${target}" ] && target="-${target}"
1096    
   
1097   # build pkgname   # build pkgname
1098   pkgname="${pname}${target}-${pver}-${parch}-${pbuild}"   pkgname="${pname}${target}-${pver}-${parch}-${pbuild}"
1099    
1100   # build pkg-md5-sum only if requested   # build pkg-md5-sum only if requested
1101   if [[ ${REGEN_MAGE_TREE} = true ]]   if mqueryfeature regentree
1102   then   then
1103   echo -ne "${COLBLUE}===${COLGREEN} generating md5's for ${pkgname}.${PKGSUFFIX} ... ${COLDEFAULT}"   echo -ne "${COLBLUE}===${COLGREEN} generating md5's for ${pkgname}.${PKGSUFFIX} ... ${COLDEFAULT}"
1104    
# Line 1097  source_pkg_build() Line 1153  source_pkg_build()
1153    
1154  step_by_step()  step_by_step()
1155  {  {
1156   if [[ ${STEP_BY_STEP} = true ]]   if mqueryfeature stepbystep
1157   then   then
1158   echo -e "${COLRED}Step-by-step enabled! Paused after $1.${COLDEFAULT}"   echo -e "${COLRED}Step-by-step enabled! Paused after $1.${COLDEFAULT}"
1159   echo "Press [enter] to continue"   echo "Press [enter] to continue"
# Line 1105  step_by_step() Line 1161  step_by_step()
1161   fi   fi
1162  }  }
1163    
1164    resume_stamp()
1165    {
1166     local step="$1"
1167     [[ ! -d ${BUILDDIR}/.stamps ]] && install -d ${BUILDDIR}/.stamps
1168     touch ${BUILDDIR}/.stamps/smage-${PKGNAME}-${step}
1169    }
1170    
1171    run_resume()
1172    {
1173     local step="$1"
1174    
1175     if mqueryfeature "resume" && [[ -f ${BUILDDIR}/.stamps/smage-${PKGNAME}-${step} ]]
1176     then
1177     echo -e "${COLMAGENTA}${step} already processed; doing nothing${COLDEFAULT}"
1178     return 0
1179     else
1180     return 1
1181     fi
1182    }
1183    
1184  # print out our version  # print out our version
1185  showversion  showversion
# Line 1117  then Line 1192  then
1192   exit 1   exit 1
1193  fi  fi
1194    
1195    # load supported mage features
1196    load_mage_features
1197    
1198  # updating smage2-scripts  # updating smage2-scripts
1199  if [[ $1 = update ]]  if [[ $1 = update ]]
1200  then  then
# Line 1301  fi Line 1379  fi
1379  if [ "$1" == "--src-tarball" -a -n "$2" ] || [ "$1" == "-st" -a -n "$2" ]  if [ "$1" == "--src-tarball" -a -n "$2" ] || [ "$1" == "-st" -a -n "$2" ]
1380  then  then
1381   SRCPKGTARBALL="${2}"   SRCPKGTARBALL="${2}"
1382   USE_SRC_PKG_TARBALL=true   msetfeature "srcpkgtarball"
1383    
1384   # abort if given file is not a source pkg   # abort if given file is not a source pkg
1385   [[ ${SRCPKGTARBALL##*.} != ${SRCPKGSUFFIX} ]] && die "${SRCPKGTARBALL} is not a valid src-pkg file."   [[ ${SRCPKGTARBALL##*.} != ${SRCPKGSUFFIX} ]] && die "${SRCPKGTARBALL} is not a valid src-pkg file."
# Line 1322  then Line 1400  then
1400   [[ ! -f ${SMAGENAME} ]] && die "Included smage2 file in src-tarball not found: ${SMAGENAME}"   [[ ! -f ${SMAGENAME} ]] && die "Included smage2 file in src-tarball not found: ${SMAGENAME}"
1401  fi  fi
1402    
1403    if [ "$1" == "--resume" -a -n "$2" ]
1404    then
1405     msetfeature "resume"
1406     SMAGENAME="$2"
1407    fi
1408    
1409  [ ! -e ${MLIBDIR}/pkgbuild_dir.sh ] && die "Error: ${MLIBDIR}/pkgbuild_dir.sh not found. Aborting."  [ ! -e ${MLIBDIR}/pkgbuild_dir.sh ] && die "Error: ${MLIBDIR}/pkgbuild_dir.sh not found. Aborting."
1410  [ -z "$(basename ${SMAGENAME} | grep .${SMAGESUFFIX})" ] &&  [ -z "$(basename ${SMAGENAME} | grep .${SMAGESUFFIX})" ] &&
# Line 1345  echo -e "${COLGREEN}Compiling ${PKGNAME} Line 1428  echo -e "${COLGREEN}Compiling ${PKGNAME}
1428  # auto regen mage tree if requested  # auto regen mage tree if requested
1429  regen_mage_tree  regen_mage_tree
1430    
1431  if [[ ${CREATE_SRC_PKG_TARBALL} = true ]]  if mqueryfeature "srcpkg"
1432  then  then
1433   if [[ -d ${SOURCEDIR}/${PNAME} ]]   if [[ -d ${SOURCEDIR}/${PNAME} ]]
1434   then   then
# Line 1355  then Line 1438  then
1438  fi  fi
1439    
1440  # download sources  # download sources
1441  [[ ${USE_SRC_PKG_TARBALL} != true ]] && download_sources  mqueryfeature "srcpkgtarball" || download_sources
1442    
1443  # fixes some issues with these functions  # fixes some issues with these functions
1444  export -f src_prepare || die "src_prepare export failed"  export -f src_prepare || die "src_prepare export failed"
# Line 1366  export -f src_install || die "src_instal Line 1449  export -f src_install || die "src_instal
1449  # fixes some compile issues  # fixes some compile issues
1450  export CHOST="${CHOST}" || die "CHOST export failed"  export CHOST="${CHOST}" || die "CHOST export failed"
1451  export CFLAGS="${CFLAGS}" || die "CFLAGS export failed"  export CFLAGS="${CFLAGS}" || die "CFLAGS export failed"
1452  export CXXFLAGS="${CFLAGS}" || die "CXXFLAGS export failed"  if [[ -z ${CXXFLAGS} ]]
1453    then
1454     export CXXFLAGS="${CFLAGS}" || die "CXXFLAGS export failed"
1455    else
1456     export CXXFLAGS="${CXXFLAGS}" || die "CXXFLAGS export failed"
1457    fi
1458    export LDFLAGS="${LDFLAGS}" || die "LDFLAGS export failed"
1459  export BINDIR="${BINDIR}" || die "BINDIR export failed"  export BINDIR="${BINDIR}" || die "BINDIR export failed"
1460  export MAKEOPTS="${MAKEOPTS}" || die "MAKEOPTS export failed"  export MAKEOPTS="${MAKEOPTS}" || die "MAKEOPTS export failed"
1461    
   
1462  # setup distcc  # setup distcc
1463  # setup for distcc goes *before* ccache, so ccache comes before distcc in path  # setup for distcc goes *before* ccache, so ccache comes before distcc in path
1464  [[ ${SMAGE_USE_DISTCC} = true ]] && setup_distcc_environment  mqueryfeature "distcc" && setup_distcc_environment
1465    
1466  # setup ccache  # setup ccache
1467  [[ ${SMAGE_USE_CCACHE} = true ]] && setup_ccache_environment  mqueryfeature "ccache" && setup_ccache_environment
1468    
1469  # clean up builddir if a previously one exist  if mqueryfeature "resume"
 if [ -d ${BUILDDIR} ]  
1470  then  then
1471   rm -rf ${BUILDDIR}/* || die "couldn't cleanup \$BUILDDIR."   echo -e "${COLMAGENTA}Resume requested; continuing previous build${COLDEFAULT}"
 fi  
 install -d ${BUILDDIR} || die "couldn't create \$BUILDDIR."  
1472    
1473  # clean up srcdir if a previously unpacked one exist   # setup build logging
1474  if [ -d ${SRCDIR} ]   [[ ! -d /var/log/smage ]] && install -d /var/log/smage
1475  then   if [[ -f /var/log/smage/${PKGNAME}.log.bz2 ]]
1476   rm -rf ${SRCDIR}   then
1477  fi   bunzip2 -f /var/log/smage/${PKGNAME}.log.bz2
1478     fi
1479     echo -e "### Resume started on $(date) ###\n" >> /var/log/smage/${PKGNAME}.log
1480    
1481  # clean up bindir if a previous build exist or create a new one  else
1482  if [ -d ${BINDIR} ]   # clean up builddir if a previously one exist
1483  then   if [ -d ${BUILDDIR} ]
1484   rm -rf ${BINDIR}   then
1485  fi   rm -rf ${BUILDDIR}/* || die "couldn't cleanup \$BUILDDIR."
1486  install -d ${BINDIR} || die "couldn't create \$BINDIR."   fi
1487     install -d ${BUILDDIR} || die "couldn't create \$BUILDDIR."
1488    
1489  # clean up package temp dir if a previous build exist   # clean up srcdir if a previously unpacked one exist
1490  if [ -d ${BUILDDIR}/${PKGNAME} ]   if [ -d ${SRCDIR} ]
1491  then   then
1492   rm -rf ${BUILDDIR}/${PKGNAME}   rm -rf ${SRCDIR}
1493  fi   fi
1494    
1495  # setup build logging   # clean up bindir if a previous build exist or create a new one
1496  [[ ! -d /var/log/smage ]] && install -d /var/log/smage   if [ -d ${BINDIR} ]
1497  echo -e "### Build started on $(date) ###\n" > /var/log/smage/${PKGNAME}.log   then
1498     rm -rf ${BINDIR}
1499  src_prepare | ${SMAGE_LOG_CMD}   fi
1500  die_pipestatus 0 "src_prepare failed"   install -d ${BINDIR} || die "couldn't create \$BINDIR."
 step_by_step $_  
   
 src_compile | ${SMAGE_LOG_CMD}  
 die_pipestatus 0 "src_compile failed"  
 step_by_step $_  
1501    
1502  # only run checks if requested   # clean up package temp dir if a previous build exist
1503  if [[ ${MAGE_CHECK} != true ]]   if [ -d ${BUILDDIR}/${PKGNAME} ]
1504  then   then
1505   echo "MAGE_CHECK not requested; src_check() will not be run!" | ${SMAGE_LOG_CMD}   rm -rf ${BUILDDIR}/${PKGNAME}
1506   step_by_step src_check   fi
1507  else  
1508   src_check | ${SMAGE_LOG_CMD}   # clean up stamps dir
1509   die_pipestatus 0 "src_check failed"   if [ -d ${BUILDDIR}/.stamps ]
1510   step_by_step $_   then
1511     rm -rf ${BUILDDIR}/.stamps
1512     fi
1513    
1514     # setup build logging
1515     [[ ! -d /var/log/smage ]] && install -d /var/log/smage
1516     echo -e "### Build started on $(date) ###\n" > /var/log/smage/${PKGNAME}.log
1517  fi  fi
1518    
1519  # build several subpackages  if [[ ${PKGTYPE} = virtual ]]
 if [[ -n ${SPLIT_PACKAGES} ]]  
1520  then  then
1521   # save bindir & pname   echo "virtual package detected; nothing will be build ..."
1522   split_save_variables   # automatically set !pkgbuild here too
1523   export SAVED_BINDIR="${BINDIR}"   msetfeature "!pkgbuild"
  for subpackage in ${SPLIT_PACKAGES}  
  do  
  if typeset -f src_install_${subpackage} > /dev/null  
  then  
  # export subpackage bindir  
  export BINDIR="${SAVED_BINDIR}_${subpackage}"  
  # export PNAME, several internal function and include  
  # rely on this variable  
  export PNAME="${subpackage}"  
   
  echo  
  echo -en "${COLBLUE}*** ${COLDEFAULT}"  
  echo -en "  Running ${COLGREEN}split src_install()${COLDEFAULT}"  
  echo -en " for subpkg: ${COLBLUE}${PNAME}${COLDEFAULT}"  
  echo -e " - basepkg: ${COLBLUE}${SPLIT_PACKAGE_BASE}${COLDEFAULT} ..."  
   
  src_install_${subpackage} | ${SMAGE_LOG_CMD}  
  die_pipestatus 0 "src_install_${subpackage} failed"  
  step_by_step $_  
  fi  
  done  
  # restore bindir & pname  
  split_restore_variables  
  # unset all saved smage variables  
  split_unset_variables  
1524  else  else
1525   src_install | ${SMAGE_LOG_CMD}   ( run_resume src_prepare || src_prepare ) | ${SMAGE_LOG_CMD}
1526   die_pipestatus 0 "src_install failed"   die_pipestatus 0 "src_prepare failed"
1527   step_by_step $_   resume_stamp src_prepare
1528     step_by_step src_prepare
1529    
1530     ( run_resume src_compile || src_compile ) | ${SMAGE_LOG_CMD}
1531     die_pipestatus 0 "src_compile failed"
1532     resume_stamp src_compile
1533     step_by_step src_compile
1534    
1535     # only run checks if requested
1536     if mqueryfeature "!check"
1537     then
1538     echo "!check detected; src_check() will not be run!" | ${SMAGE_LOG_CMD}
1539     else
1540     ( run_resume src_check || src_check ) | ${SMAGE_LOG_CMD}
1541     die_pipestatus 0 "src_check failed"
1542     resume_stamp src_check
1543     fi
1544     step_by_step src_check
1545    
1546     # build several subpackages
1547     if [[ -n ${SPLIT_PACKAGES} ]]
1548     then
1549     # save bindir & pname
1550     split_save_variables
1551     export SAVED_BINDIR="${BINDIR}"
1552     for subpackage in ${SPLIT_PACKAGES}
1553     do
1554     if typeset -f src_install_${subpackage} > /dev/null
1555     then
1556     # export subpackage bindir
1557     export BINDIR="${SAVED_BINDIR}_${subpackage}"
1558     # export PNAME, several internal function and include
1559     # rely on this variable
1560     export PNAME="${subpackage}"
1561    
1562     echo
1563     echo -en "${COLBLUE}*** ${COLDEFAULT}"
1564     echo -en "  Running ${COLGREEN}split src_install()${COLDEFAULT}"
1565     echo -en " for subpkg: ${COLBLUE}${PNAME}${COLDEFAULT}"
1566     echo -e " - basepkg: ${COLBLUE}${SPLIT_PACKAGE_BASE}${COLDEFAULT} ..."
1567    
1568     ( run_resume src_install_${subpackage} || src_install_${subpackage} ) | ${SMAGE_LOG_CMD}
1569     die_pipestatus 0 "src_install_${subpackage} failed"
1570     resume_stamp src_install_${subpackage}
1571     step_by_step src_install_${subpackage}
1572     fi
1573     done
1574     # restore bindir & pname
1575     split_restore_variables
1576     # unset all saved smage variables
1577     split_unset_variables
1578     else
1579     ( run_resume src_install || src_install ) | ${SMAGE_LOG_CMD}
1580     die_pipestatus 0 "src_install failed"
1581     resume_stamp src_install
1582     step_by_step src_install
1583     fi
1584  fi  fi
1585    
1586  # compressing doc, info & man files  # echo for sake of good-looking
1587  if [[ -n ${SPLIT_PACKAGES} ]]  echo
1588    
1589    if mqueryfeature "!compressdoc"
1590  then  then
1591   for subpackage in ${SPLIT_PACKAGES}   echo -e "!compressdoc detected; documentation will not be compressed ..."
1592   do  elif mqueryfeature "!pkgbuild"
1593   mcompressdocs ${BINDIR}_${subpackage}  then
1594   done   echo "!pkgbuild detected; skipping documentation compression..."
1595  else  else
1596   mcompressdocs ${BINDIR}   # compressing doc, info & man files
1597     if [[ -n ${SPLIT_PACKAGES} ]]
1598     then
1599     for subpackage in ${SPLIT_PACKAGES}
1600     do
1601     run_resume mcompressdoc_${subpackage} || mcompressdocs ${BINDIR}_${subpackage}
1602     resume_stamp mcompressdoc_${subpackage}
1603     done
1604     else
1605     run_resume mcompressdoc || mcompressdocs ${BINDIR}
1606     resume_stamp mcompressdoc
1607     fi
1608  fi  fi
1609    
1610  if [[ ${SMAGE_STRIP_LIBTOOL} = true ]]  if mqueryfeature "!libtool"
1611  then  then
1612     if mqueryfeature "!pkgbuild"
1613     then
1614     echo "!pkgbuild detected; skipping libtool archive stripping ..."
1615     else
1616   if [[ -n ${SPLIT_PACKAGES} ]]   if [[ -n ${SPLIT_PACKAGES} ]]
1617   then   then
1618   for subpackage in ${SPLIT_PACKAGES}   for subpackage in ${SPLIT_PACKAGES}
1619   do   do
1620   echo -e "${COLBLUE}===${COLGREEN} stripping libtool archives for '${subpackage}' ...${COLDEFAULT}"   echo -e "${COLBLUE}===${COLGREEN} stripping libtool archives for '${subpackage}' ...${COLDEFAULT}"
1621   mstriplibtoolarchive ${BINDIR}_${subpackage}   run_resume mstriplibtoolarchive_${subpackage} || mstriplibtoolarchive ${BINDIR}_${subpackage}
1622     resume_stamp mstriplibtoolarchive_${subpackage}
1623   done   done
1624   else   else
1625   echo -e "${COLBLUE}===${COLGREEN} stripping libtool archives ...${COLDEFAULT}"   echo -e "${COLBLUE}===${COLGREEN} stripping libtool archives ...${COLDEFAULT}"
1626   mstriplibtoolarchive ${BINDIR}   run_resume mstriplibtoolarchive || mstriplibtoolarchive ${BINDIR}
1627     resume_stamp mstriplibtoolarchive
1628   fi   fi
1629     fi
1630  fi  fi
1631    
1632  if [[ ${SMAGE_PURGE} = true ]]  if mqueryfeature "purge"
1633  then  then
1634     if mqueryfeature "!pkgbuild"
1635     then
1636     echo "!pkgbuild detected; skipping file purgation..."
1637     else
1638   if [[ -n ${SPLIT_PACKAGES} ]]   if [[ -n ${SPLIT_PACKAGES} ]]
1639   then   then
1640   for subpackage in ${SPLIT_PACKAGES}   for subpackage in ${SPLIT_PACKAGES}
1641   do   do
1642   echo -e "${COLBLUE}===${COLGREEN} purging all purge targets in '${subpackage}' ...${COLDEFAULT}"   echo -e "${COLBLUE}===${COLGREEN} purging all purge targets in '${subpackage}' ...${COLDEFAULT}"
1643   mpurgetargets ${BINDIR}_${subpackage}   run_resume mpurgetargets_${subpackage} || mpurgetargets ${BINDIR}_${subpackage}
1644     resume_stamp mpurgetargets_${subpackage}
1645   done   done
1646   else   else
1647   echo -e "${COLBLUE}===${COLGREEN} purging all purge targets ...${COLDEFAULT}"   echo -e "${COLBLUE}===${COLGREEN} purging all purge targets ...${COLDEFAULT}"
1648   mpurgetargets ${BINDIR}   run_resume mpurgetargets || mpurgetargets ${BINDIR}
1649     resume_stamp mpurgetargets
1650   fi   fi
1651     fi
1652  fi  fi
1653    
1654  # stripping all bins and libs  # stripping all bins and libs
1655  case ${NOSTRIP} in  if mqueryfeature "!strip"
1656   true|TRUE|yes|y)  then
1657   echo -e "NOSTRIP=true detected; Package will not be stripped ..."   echo -e "!strip detected; Package will not be stripped ..."
1658   ;;  elif mqueryfeature "!pkgbuild"
1659   *)  then
1660   if [[ -n ${SPLIT_PACKAGES} ]]   echo "!pkgbuild detected; skipping stripping of the package ..."
1661   then  else
1662   for subpackage in ${SPLIT_PACKAGES}   if [[ -n ${SPLIT_PACKAGES} ]]
1663   do   then
1664   echo -e "${COLBLUE}===${COLGREEN} stripping binaries for '${subpackage}' ...${COLDEFAULT}"   for subpackage in ${SPLIT_PACKAGES}
1665   mstripbins ${BINDIR}_${subpackage}   do
1666   echo -e "${COLBLUE}===${COLGREEN} stripping dynamic libraries for '${subpackage}' ...${COLDEFAULT}"   echo -e "${COLBLUE}===${COLGREEN} stripping binaries for '${subpackage}' ...${COLDEFAULT}"
1667   mstriplibs ${BINDIR}_${subpackage}   run_resume mstripbins_${subpackage} || mstripbins ${BINDIR}_${subpackage}
1668   echo -e "${COLBLUE}===${COLGREEN} stripping static libraries for '${subpackage}' ...${COLDEFAULT}"   resume_stamp mstripbins_${subpackage}
1669   mstripstatic ${BINDIR}_${subpackage}   echo -e "${COLBLUE}===${COLGREEN} stripping dynamic libraries for '${subpackage}' ...${COLDEFAULT}"
1670   done   run_resume mstriplibs_${subpackage} || mstriplibs ${BINDIR}_${subpackage}
1671   else   resume_stamp mstriplibs_${subpackage}
1672   echo -e "${COLBLUE}===${COLGREEN} stripping binaries ...${COLDEFAULT}"   echo -e "${COLBLUE}===${COLGREEN} stripping static libraries for '${subpackage}' ...${COLDEFAULT}"
1673   mstripbins ${BINDIR}   run_resume mstripstatic_${subpackage} || mstripstatic ${BINDIR}_${subpackage}
1674   echo -e "${COLBLUE}===${COLGREEN} stripping dynamic libraries ...${COLDEFAULT}"   resume_stamp mstripstatic_${subpackage}
1675   mstriplibs ${BINDIR}   done
1676   echo -e "${COLBLUE}===${COLGREEN} stripping static libraries ...${COLDEFAULT}"   else
1677   mstripstatic ${BINDIR}   echo -e "${COLBLUE}===${COLGREEN} stripping binaries ...${COLDEFAULT}"
1678   fi   run_resume mstripbins || mstripbins ${BINDIR}
1679   ;;   resume_stamp mstripbins
1680  esac   echo -e "${COLBLUE}===${COLGREEN} stripping dynamic libraries ...${COLDEFAULT}"
1681     run_resume mstriplibs || mstriplibs ${BINDIR}
1682     resume_stamp mstriplibs
1683     echo -e "${COLBLUE}===${COLGREEN} stripping static libraries ...${COLDEFAULT}"
1684     run_resume mstripstatic || mstripstatic ${BINDIR}
1685     resume_stamp mstripstatic
1686     fi
1687    fi
1688    
1689  # the new buildpkg command  if mqueryfeature "!pkgbuild"
1690  case ${NOPKGBUILD} in  then
1691   true|TRUE|yes|y)   echo -e "!pkgbuild detected; Package will not be build ..."
1692   echo -e "NOPGKBUILD=true detected; Package will not be build ..."  else
  ;;  
  *)  
1693   # build several targets   # build several targets
1694   if [[ -n ${MAGE_TARGETS} ]]   if [[ -n ${MAGE_TARGETS} ]]
1695   then   then
# Line 1548  case ${NOPKGBUILD} in Line 1699  case ${NOPKGBUILD} in
1699   if typeset -f ${target}_pkgbuild > /dev/null   if typeset -f ${target}_pkgbuild > /dev/null
1700   then   then
1701   # run it   # run it
1702   ${target}_pkgbuild   run_resume ${target}_pkgbuild || ${target}_pkgbuild
1703     resume_stamp ${target}_pkgbuild
1704   fi   fi
1705   # now create the target package   # now create the target package
1706   ${MLIBDIR}/pkgbuild_dir.sh \   run_resume pkg_builddir_${target} || ${MLIBDIR}/pkgbuild_dir.sh \
1707   "${PNAME}-${target}-${PVER}-${ARCH}-${PBUILD}" \   "${PNAME}-${target}-${PVER}-${ARCH}-${PBUILD}" \
1708   ${BINDIR} || die "target: ${target} package-build failed"   ${BINDIR} || die "target: ${target} package-build failed"
1709     resume_stamp pkg_builddir_${target}
1710    
1711   # build pkg-md5-sum if requested   # build pkg-md5-sum if requested
1712   generate_package_md5sum \   run_resume md5sum_${target} || generate_package_md5sum \
1713   --pcat "${PCATEGORIE}" \   --pcat "${PCATEGORIE}" \
1714   --pname "${PNAME}" \   --pname "${PNAME}" \
1715   --pver "${PVER}" \   --pver "${PVER}" \
1716   --pbuild "${PBUILD}" \   --pbuild "${PBUILD}" \
1717   --parch "${ARCH}" \   --parch "${ARCH}" \
1718   --target "${target}"   --target "${target}"
1719     resume_stamp md5sum_${target}
1720    
1721   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}"
1722   done   done
# Line 1577  case ${NOPKGBUILD} in Line 1731  case ${NOPKGBUILD} in
1731   export PNAME="${subpackage}"   export PNAME="${subpackage}"
1732   split_info_${PNAME}   split_info_${PNAME}
1733    
1734   # jump to next one if NOPKGBUILD is set in split_info   # jump to next one if !pkgbuild is set in split_info
1735   case ${NOPKGBUILD} in   mqueryfeature "!pkgbuild" && continue
  true|TRUE|yes|y) continue ;;  
  esac  
1736    
1737   # check if an special subpackage_pkgbuild exists   # check if an special subpackage_pkgbuild exists
1738   if typeset -f ${PNAME}_pkgbuild > /dev/null   if typeset -f ${PNAME}_pkgbuild > /dev/null
1739   then   then
1740   # run it   # run it
1741   ${PNAME}_pkgbuild   run_resume ${PNAME}_pkgbuild || ${PNAME}_pkgbuild
1742     resume_stamp ${PNAME}_pkgbuild
1743   fi   fi
1744   # now create the target package   # now create the target package
1745   ${MLIBDIR}/pkgbuild_dir.sh \   run_resume pkg_builddir_${PNAME} || ${MLIBDIR}/pkgbuild_dir.sh \
1746   "${PNAME}-${PVER}-${ARCH}-${PBUILD}" \   "${PNAME}-${PVER}-${ARCH}-${PBUILD}" \
1747   "${BINDIR}_${PNAME}" || die "split_package: ${PNAME} package-build failed"   "${BINDIR}_${PNAME}" || die "split_package: ${PNAME} package-build failed"
1748     resume_stamp pkg_builddir_${PNAME}
1749    
1750   # build pkg-md5-sum if requested   # build pkg-md5-sum if requested
1751   generate_package_md5sum \   run_resume md5sum_${PNAME} || generate_package_md5sum \
1752   --pcat "${PCATEGORIE}" \   --pcat "${PCATEGORIE}" \
1753   --pname "${PNAME}" \   --pname "${PNAME}" \
1754   --pver "${PVER}" \   --pver "${PVER}" \
1755   --pbuild "${PBUILD}" \   --pbuild "${PBUILD}" \
1756   --parch "${ARCH}"   --parch "${ARCH}"
1757     resume_stamp md5sum_${PNAME}
1758    
1759   echo -e "${COLGREEN}\nPackage ${PNAME}-${PVER}-${ARCH}-${PBUILD} successfully builded.\n${COLDEFAULT}"   echo -e "${COLGREEN}\nPackage ${PNAME}-${PVER}-${ARCH}-${PBUILD} successfully builded.\n${COLDEFAULT}"
1760    
# Line 1610  case ${NOPKGBUILD} in Line 1765  case ${NOPKGBUILD} in
1765   split_unset_variables   split_unset_variables
1766    
1767   else   else
1768   ${MLIBDIR}/pkgbuild_dir.sh ${PKGNAME} ${BINDIR} || die "package-build failed"   run_resume pkg_builddir || ${MLIBDIR}/pkgbuild_dir.sh ${PKGNAME} ${BINDIR} || die "package-build failed"
1769     resume_stamp pkg_builddir
1770    
1771   # build pkg-md5-sum if requested   # build pkg-md5-sum if requested
1772   generate_package_md5sum \   run_resume md5sum || generate_package_md5sum \
1773   --pcat "${PCATEGORIE}" \   --pcat "${PCATEGORIE}" \
1774   --pname "${PNAME}" \   --pname "${PNAME}" \
1775   --pver "${PVER}" \   --pver "${PVER}" \
1776   --pbuild "${PBUILD}" \   --pbuild "${PBUILD}" \
1777   --parch "${ARCH}"   --parch "${ARCH}"
1778     resume_stamp md5sum
1779    
1780   echo -e "${COLGREEN}\nPackage ${PKGNAME} successfully builded.\n${COLDEFAULT}"   echo -e "${COLGREEN}\nPackage ${PKGNAME} successfully builded.\n${COLDEFAULT}"
1781   fi   fi
1782    
1783   # build src-pkg-tarball if requested   # build src-pkg-tarball if requested
1784   [[ ${CREATE_SRC_PKG_TARBALL} = true ]] && source_pkg_build ${SMAGENAME}   if mqueryfeature "srcpkg"
1785   ;;   then
1786  esac   run_resume srcpkgbuild || source_pkg_build ${SMAGENAME}
1787     resume_stamp srcpkgbuild
1788     fi
1789    fi
1790    
1791  if [[ ${SMAGE_BUILD_LOGGING} != false ]]  if mqueryfeature "buildlog"
1792  then  then
1793   bzip2 -9f /var/log/smage/${PKGNAME}.log   bzip2 -9f /var/log/smage/${PKGNAME}.log
1794  else  else
1795   [[ -f /var/log/smage/${PKGNAME}.log ]] && rm /var/log/smage/${PKGNAME}.log   [[ -f /var/log/smage/${PKGNAME}.log ]] && rm /var/log/smage/${PKGNAME}.log
1796  fi  fi
1797    
 # for sure  
 unset NOPKGBUILD  
 unset NOSTRIP  
   
1798  xtitleclean  xtitleclean

Legend:
Removed from v.1580  
changed lines
  Added in v.1631