Diff for /elwix/build_3thparty.sh between versions 1.4 and 1.5

version 1.4, 2014/01/05 23:14:22 version 1.5, 2014/09/15 19:06:41
Line 9 Line 9
 #  #
   
 [ -r ./config/rc.elwix ] && . ./config/rc.elwix  [ -r ./config/rc.elwix ] && . ./config/rc.elwix
   if [ ! -r ./config/rc.3thparty_helper ]; then
           echo
           echo "ELWIX project is not configured - Missing rc.3thparty_helper script"
           echo
           exit 1
   fi
   
 if [ X"${ELWIX_IS_CONFIGURED}" != X"YES" ]; then  if [ X"${ELWIX_IS_CONFIGURED}" != X"YES" ]; then
         echo          echo
         echo "ELWIX project is not configured !?!"          echo "ELWIX project is not configured !?!"
Line 62  compile_3th() Line 69  compile_3th()
 {  {
         echo "+++ Compile ELWIX 3th party ..."          echo "+++ Compile ELWIX 3th party ..."
   
        cd $CROSS_3TH        BUILD_SH="./config/rc.3thparty_helper"
        ./build.sh expat ${CBUILD} ${PKG} ${TARGET_BUILD}
         ${BUILD_SH} expat ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh libevent ${CBUILD} ${PKG} ${TARGET_BUILD}        ${BUILD_SH} libevent ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh libiconv ${CGBUILD} ${PKG} ${TARGET_BUILD}        ${BUILD_SH} libiconv ${CGBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh pcre ${CBUILD} ${PKG} ${TARGET_BUILD}        ${BUILD_SH} readline ${CGBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh mini_sendmail ${CBUILD} ${PKG} ${TARGET_BUILD}        ${BUILD_SH} pcre ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh choparp ${CBUILD} ${PKG} ${TARGET_BUILD}        ${BUILD_SH} mini_sendmail ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh scan_ffs ${CBUILD} ${PKG} ${TARGET_BUILD}        ${BUILD_SH} choparp ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh istgt ${CBUILD} ${PKG} ${TARGET_BUILD}        ${BUILD_SH} scan_ffs ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh rsync ${CBUILD} ${PKG} ${TARGET_BUILD}        ${BUILD_SH} rsync ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh ttcp ${CBUILD} ${PKG} ${TARGET_BUILD}        ${BUILD_SH} ttcp ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh mpd ${CBUILD} ${PKG} ${TARGET_BUILD}        ${BUILD_SH} mpd ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh mrouted ${CGBUILD} ${PKG} ${TARGET_BUILD}        ${BUILD_SH} igmpproxy ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh igmpproxy ${CBUILD} ${PKG} ${TARGET_BUILD}        ${BUILD_SH} sudo ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh sudo ${CBUILD} ${PKG} ${TARGET_BUILD}        ${BUILD_SH} bmon ${CGBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh bmon ${CGBUILD} ${PKG} ${TARGET_BUILD}        ${BUILD_SH} mtr ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh mtr ${CBUILD} ${PKG} ${TARGET_BUILD}        ${BUILD_SH} ipguard ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh ipguard ${CBUILD} ${PKG} ${TARGET_BUILD}        ${BUILD_SH} smartmontools ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh smartmontools ${CBUILD} ${PKG} ${TARGET_BUILD}        env CFLAGS="-I${PKG}/include" LDFLAGS="-L${PKG}/lib" ${BUILD_SH} quagga ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh quagga ${CBUILD} ${PKG} ${TARGET_BUILD}        ${BUILD_SH} iftop ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh iftop ${CBUILD} ${PKG} ${TARGET_BUILD}        ${BUILD_SH} arping ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh arping ${CBUILD} ${PKG} ${TARGET_BUILD}        ${BUILD_SH} hping2 ${CGBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh hping2 ${CGBUILD} ${PKG} ${TARGET_BUILD}        ${BUILD_SH} trafshow ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh trafshow ${CBUILD} ${PKG} ${TARGET_BUILD}#       ${BUILD_SH} ipsec-tools ${CGBUILD} ${PKG} ${TARGET_BUILD}
 #       [ $? -ne 0 ] && exit 1
 #       ${BUILD_SH} dhcp ${CBUILD} ${PKG} ${TARGET_BUILD}
 #       [ $? -ne 0 ] && exit 1
 #       ${BUILD_SH} dhcping ${CBUILD} ${PKG} ${TARGET_BUILD}
 #       [ $? -ne 0 ] && exit 1
         ${BUILD_SH} dnsmasq ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh ipsec-tools ${CBUILD} ${PKG} ${TARGET_BUILD}#       ${BUILD_SH} miniupnpd ${CBUILD} ${PKG} ${TARGET_BUILD}
        [ $? -ne 0 ] && exit 1 
#       ./build.sh dhcp ${CBUILD} ${PKG} ${TARGET_BUILD} 
 #       [ $? -ne 0 ] && exit 1  #       [ $? -ne 0 ] && exit 1
#       ./build.sh dhcping ${CBUILD} ${PKG} ${TARGET_BUILD}#       ${BUILD_SH} miniupnpc ${CGBUILD} ${PKG} ${TARGET_BUILD}
 #       [ $? -ne 0 ] && exit 1  #       [ $? -ne 0 ] && exit 1
        ./build.sh dnsmasq ${CBUILD} ${PKG} ${TARGET_BUILD}        ${BUILD_SH} ntp ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh miniupnpd ${CBUILD} ${PKG} ${TARGET_BUILD}#       ${BUILD_SH} spawn-fcgi ${CBUILD} ${PKG} ${TARGET_BUILD}
        [ $? -ne 0 ] && exit 1#        [ $? -ne 0 ] && exit 1
        ./build.sh miniupnpc ${CGBUILD} ${PKG} ${TARGET_BUILD}#       ${BUILD_SH} lighttpd ${CBUILD} ${PKG} ${TARGET_BUILD}
        [ $? -ne 0 ] && exit 1#        [ $? -ne 0 ] && exit 1
        ./build.sh ntp ${CBUILD} ${PKG} ${TARGET_BUILD}#       ${BUILD_SH} libxml2 ${CBUILD} ${PKG} ${TARGET_BUILD}
        [ $? -ne 0 ] && exit 1#        [ $? -ne 0 ] && exit 1
        ./build.sh spawn-fcgi ${CBUILD} ${PKG} ${TARGET_BUILD}#       ${BUILD_SH} php ${CBUILD} ${PKG} ${TARGET_BUILD}
        [ $? -ne 0 ] && exit 1#        [ $? -ne 0 ] && exit 1
        ./build.sh lighttpd ${CBUILD} ${PKG} ${TARGET_BUILD}        echo
        [ $? -ne 0 ] && exit 1 
        ./build.sh libxml2 ${CBUILD} ${PKG} ${TARGET_BUILD} 
        [ $? -ne 0 ] && exit 1 
        ./build.sh php ${CBUILD} ${PKG} ${TARGET_BUILD} 
        [ $? -ne 0 ] && exit 1 
        cd - 
 }  }
   
 install_3th()  install_3th()
Line 180  build_3th() Line 186  build_3th()
   
 ### main()  ### main()
 if ! SnitVer ${PKG}/elwix.ver; then  if ! SnitVer ${PKG}/elwix.ver; then
        clean_3th        clean_3th || exit 1
        compile_3th        compile_3th || exit 1
   
        install_3th        install_3th || exit 1
        build_3th        build_3th || exit 1
   
         echo "ELWIX Platform:${PLATFORM} Version:${VERSION} TargetArch:${TARGET_ARCH}" >${PKG}/elwix.ver          echo "ELWIX Platform:${PLATFORM} Version:${VERSION} TargetArch:${TARGET_ARCH}" >${PKG}/elwix.ver
 else  else

Removed from v.1.4  
changed lines
  Added in v.1.5


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>