Magellan Linux

Diff of /trunk/mage/usr/lib/mage/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 875 by niro, Thu May 21 19:06:26 2009 UTC
# Line 4  Line 4 
4  # needs pkgbuild_dir (mage)  # needs pkgbuild_dir (mage)
5    
6  # SMAGE2  # SMAGE2
7  # $Header: /home/cvsd/magellan-cvs/magellan-src/mage/usr/lib/mage/smage2.sh,v 1.61 2007-11-05 19:05:22 niro Exp $  # $Header: /home/cvsd/magellan-cvs/magellan-src/mage/usr/lib/mage/smage2.sh,v 1.62 2007-11-28 10:47:50 niro Exp $
8    
9  #01.10.2004  #01.10.2004
10  # added ccache support  # added ccache support
# Line 20  SMAGENAME="$1" Line 20  SMAGENAME="$1"
20  SMAGESUFFIX="smage2"  SMAGESUFFIX="smage2"
21  MLIBDIR=/usr/lib/mage  MLIBDIR=/usr/lib/mage
22  SMAGEVERSION="$( < ${MLIBDIR}/version)"  SMAGEVERSION="$( < ${MLIBDIR}/version)"
23    SMAGE_LOG_CMD="tee -a /var/log/smage/${PKGNAME}.log"
24    
25    
26  ## only for tests -> normally in /etc/rc.d/init.d/functions  ## only for tests -> normally in /etc/rc.d/init.d/functions
27  COLRED="\033[1;6m\033[31m"  COLRED="\033[1;6m\033[31m"
# Line 362  mconfigure() Line 364  mconfigure()
364   ./configure \   ./configure \
365   --prefix=/usr \   --prefix=/usr \
366   --host=${CHOST} \   --host=${CHOST} \
367     --build=${CHOST} \
368   --mandir=/usr/share/man \   --mandir=/usr/share/man \
369   --infodir=/usr/share/info \   --infodir=/usr/share/info \
370   --datadir=/usr/share \   --datadir=/usr/share \
# Line 452  munpack() Line 455  munpack()
455   unzip ${SOURCEDIR}/${PNAME}/${SRCFILE} -d ${DEST} || die ".zip unpack failed."   unzip ${SOURCEDIR}/${PNAME}/${SRCFILE} -d ${DEST} || die ".zip unpack failed."
456   ;;   ;;
457   rpm)   rpm)
458   pushd ${BUILDDIR} > /dev/null   pushd ${DEST} > /dev/null
459   rpm2targz ${SOURCEDIR}/${PNAME}/${SRCFILE} || die "rpm2targz: .rpm unpack failed."   rpm2targz ${SOURCEDIR}/${PNAME}/${SRCFILE} || die "rpm2targz: .rpm unpack failed."
460   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."
461   if [[ -f ${BUILDDIR}/${SRCFILE/.rpm/.tar.gz} ]]   if [[ -f ${DEST}/${SRCFILE/.rpm/.tar.gz} ]]
462   then   then
463   rm ${BUILDDIR}/${SRCFILE/.rpm/.tar.gz}   rm ${DEST}/${SRCFILE/.rpm/.tar.gz}
464   fi   fi
465   ;;   ;;
466   *)   *)
# Line 650  EOF Line 653  EOF
653  # special tags:  # special tags:
654  #   PKGTYPE               type of pkg  #   PKGTYPE               type of pkg
655  #   INHERITS              which functions get included  #   INHERITS              which functions get included
656  #   SPECIAL_FUNCTIONS     special functions wich should also be added  #   SPECIAL_FUNCTIONS     special functions which should also be added
657  #                         warning: they get killed before the build starts !  #                         warning: they get killed before the build starts !
658  #  #
659  #   MAGE_TREE_DEST        target destination of the generated tree  #   MAGE_TREE_DEST        target destination of the generated tree
# Line 686  build_mage_script() Line 689  build_mage_script()
689   > ${dest}   > ${dest}
690    
691   # header   # header
692   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 '# $Header: /home/cvsd/magellan-cvs/magellan-src/mage/usr/lib/mage/smage2.sh,v 1.62 2007-11-28 10:47:50 niro Exp $' >> ${dest}
693   echo  >> ${dest}   echo  >> ${dest}
694    
695   # pgkname and state   # pgkname and state
# Line 936  source_pkg_build() Line 939  source_pkg_build()
939   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}"
940  }  }
941    
942    step_by_step()
943    {
944     if [[ ${STEP_BY_STEP} = true ]]
945     then
946     echo "${COLRED}Step-by-step enabled! Paused after $1.${COLDEFAULT}"
947     echo "Press [enter] to continue"
948     read
949     fi
950    }
951    
952    
953  # print out our version  # print out our version
954  showversion  showversion
# Line 1202  then Line 1215  then
1215   mage rmstamp   mage rmstamp
1216  fi  fi
1217    
1218  src_prepare || die "src_prepare failed"  # setup build loggins
1219  src_compile || die "src_compile failed"  [[ ! -d /var/log/smage ]] && install -d /var/log/smage
1220  src_install || die "src_install failed"  echo -e "### Build started on $(date) ###\n" > /var/log/smage/${PKGNAME}.log
1221    
1222    ( src_prepare || die "src_prepare failed" ) | ${SMAGE_LOG_CMD}
1223    step_by_step $_
1224    ( src_compile || die "src_compile failed" ) | ${SMAGE_LOG_CMD}
1225    step_by_step $_
1226    ( src_install || die "src_install failed" ) | ${SMAGE_LOG_CMD}
1227    step_by_step $_
1228    
1229    
1230  # compressing doc, info & man files  # compressing doc, info & man files
# Line 1285  case ${NOPKGBUILD} in Line 1305  case ${NOPKGBUILD} in
1305   ;;   ;;
1306  esac  esac
1307    
1308    if [[ ${SMAGE_BUILD_LOGGING} != false ]]
1309    then
1310     bzip2 -9f /var/log/smage/${PKGNAME}.log
1311    else
1312     [[ -f /var/log/smage/${PKGNAME}.log ]] && rm /var/log/smage/${PKGNAME}.log
1313    fi
1314    
1315  # for sure  # for sure
1316  unset NOPKGBUILD  unset NOPKGBUILD
1317  unset NOSTRIP  unset NOSTRIP

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