make_binary_distribution.sh
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #!/bin/sh
  2. # The default path should be /usr/local
  3. # Get some info from configure
  4. # chmod +x ./scripts/setsomevars
  5. machine=@MACHINE_TYPE@
  6. system=@SYSTEM_TYPE@
  7. version=@VERSION@
  8. export machine system version
  9. SOURCE=`pwd` 
  10. CP="cp -p"
  11. # Debug option must come first
  12. DEBUG=0
  13. if test x$1 = x"--debug"
  14. then
  15.   DEBUG=1
  16.   shift 1
  17. fi  
  18. # Save temporary distribution here (must be full path) 
  19. TMP=/tmp
  20. if test $# -gt 0
  21. then
  22.   TMP=$1
  23.   shift 1
  24. fi
  25. # Get optional suffix for distribution
  26. SUFFIX=""
  27. if test $# -gt 0
  28. then
  29.   SUFFIX=$1
  30.   shift 1
  31. fi
  32. #make
  33. # This should really be integrated with automake and not duplicate the
  34. # installation list.
  35. BASE=$TMP/my_dist$SUFFIX
  36. if [ -d $BASE ] ; then
  37.  rm -r -f $BASE
  38. fi
  39. mkdir $BASE $BASE/bin $BASE/data $BASE/data/mysql $BASE/data/test 
  40.  $BASE/include $BASE/lib $BASE/support-files $BASE/share $BASE/share/mysql 
  41.  $BASE/tests $BASE/scripts $BASE/sql-bench $BASE/mysql-test 
  42.  $BASE/mysql-test/t  $BASE/mysql-test/r 
  43.  $BASE/mysql-test/include $BASE/mysql-test/std_data
  44.  
  45. chmod o-rwx $BASE/data $BASE/data/*
  46. for i in sql/ChangeLog COPYING COPYING.LIB README Docs/INSTALL-BINARY 
  47.          Docs/manual.html Docs/manual.txt Docs/manual_toc.html
  48. do
  49.   $CP $i $BASE
  50. done
  51. for i in extra/comp_err extra/replace extra/perror extra/resolveip 
  52.   extra/my_print_defaults isam/isamchk isam/pack_isam myisam/myisamchk 
  53.   myisam/myisampack sql/mysqld sql/mysqlbinlog 
  54.   client/mysql sql/mysqld client/mysqlshow 
  55.   client/mysqladmin client/mysqldump client/mysqlimport client/mysqltest 
  56.   client/.libs/mysql client/.libs/mysqlshow client/.libs/mysqladmin 
  57.   client/.libs/mysqldump client/.libs/mysqlimport client/.libs/mysqltest
  58. do
  59.   if [ -f $i ]
  60.   then
  61.     $CP $i $BASE/bin
  62.   fi
  63. done
  64. strip $BASE/bin/*
  65. for i in sql/mysqld.sym.gz
  66. do
  67.   if [ -f $i ]
  68.   then
  69.     $CP $i $BASE/bin
  70.   fi
  71. done
  72. for i in libmysql/.libs/libmysqlclient.a libmysql/.libs/libmysqlclient.so* libmysql/libmysqlclient.* libmysql_r/.libs/libmysqlclient_r.a libmysql_r/.libs/libmysqlclient_r.so* libmysql_r/libmysqlclient_r.* mysys/libmysys.a strings/libmystrings.a dbug/libdbug.a $BASE/lib
  73. do
  74.   if [ -f $i ]
  75.   then
  76.     $CP $i $BASE/lib
  77.    fi
  78. done
  79. $CP config.h include/* $BASE/include
  80. rm $BASE/include/Makefile*; rm $BASE/include/*.in
  81. $CP tests/*.res tests/*.tst tests/*.pl $BASE/tests
  82. $CP support-files/* $BASE/support-files
  83. $CP -r sql/share/* $BASE/share/mysql
  84. rm -f $BASE/share/mysql/Makefile* $BASE/share/mysql/*/*.OLD
  85. $CP mysql-test/mysql-test-run mysql-test/install_test_db $BASE/mysql-test/
  86. $CP mysql-test/README $BASE/mysql-test/README
  87. $CP mysql-test/include/*.inc $BASE/mysql-test/include
  88. $CP mysql-test/std_data/*.dat $BASE/mysql-test/std_data
  89. $CP mysql-test/t/*.test mysql-test/t/*.opt $BASE/mysql-test/t
  90. $CP mysql-test/r/*.result mysql-test/r/*.require $BASE/mysql-test/r
  91. $CP scripts/* $BASE/bin
  92. rm -f $BASE/bin/Makefile* $BASE/bin/*.in $BASE/bin/*.sh $BASE/bin/mysql_install_db $BASE/bin/make_binary_distribution $BASE/bin/setsomevars $BASE/support-files/Makefile* $BASE/support-files/*.sh
  93. $BASE/bin/replace @localstatedir@ ./data @bindir@ ./bin @scriptdir@ ./bin @libexecdir@ ./bin @sbindir@ ./bin @prefix@ . @HOSTNAME@ @HOSTNAME@ < $SOURCE/scripts/mysql_install_db.sh > $BASE/scripts/mysql_install_db
  94. $BASE/bin/replace @prefix@ /usr/local/mysql @bindir@ ./bin @MYSQLD_USER@ root @localstatedir@ /usr/local/mysql/data < $SOURCE/support-files/mysql.server.sh > $BASE/support-files/mysql.server
  95. $BASE/bin/replace /my/gnu/bin/hostname /bin/hostname -- $BASE/bin/safe_mysqld
  96. mv $BASE/support-files/binary-configure $BASE/configure
  97. chmod a+x $BASE/bin/* $BASE/scripts/* $BASE/support-files/mysql-* $BASE/configure
  98. $CP -r sql-bench/* $BASE/sql-bench
  99. rm -f $BASE/sql-bench/*.sh $BASE/sql-bench/Makefile* $BASE/lib/*.la
  100. # Clean up if we did this from a bk tree
  101. if [ -d $BASE/sql-bench/SCCS ] ; then 
  102.   find $BASE/share -name SCCS -print | xargs rm -r -f
  103.   find $BASE/sql-bench -name SCCS -print | xargs rm -r -f
  104. fi
  105. # Change the distribution to a long descriptive name
  106. NEW_NAME=mysql@MYSQL_SERVER_SUFFIX@-$version-$system-$machine$SUFFIX
  107. BASE2=$TMP/$NEW_NAME
  108. rm -r -f $BASE2
  109. mv $BASE $BASE2
  110. BASE=$BASE2
  111. #
  112. # If we are compiling with gcc, copy libgcc.a to the distribution as libmygcc.a
  113. #
  114. if test "@GXX@" = "yes"
  115. then
  116.   cd $BASE/lib
  117.   gcclib=`@CC@ --print-libgcc-file`
  118.   if test $? -ne 0
  119.   then
  120.     print "Warning: Couldn't find libgcc.a!"
  121.   else
  122.     $CP $gcclib libmygcc.a
  123.   fi
  124.   cd $SOURCE
  125. fi
  126. #if we are debugging, do not do tar/gz
  127. if [ x$DEBUG = x1 ] ; then
  128.  exit
  129. fi
  130. # This is needed to prefere gnu tar instead of tar because tar can't
  131. # always handle long filenames
  132. PATH_DIRS=`echo $PATH | sed -e 's/^:/. /' -e 's/:$/ ./' -e 's/::/ . /g' -e 's/:/ /g' `
  133. which_1 ()
  134. {
  135.   for cmd
  136.   do
  137.     for d in $PATH_DIRS
  138.     do
  139.       for file in $d/$cmd
  140.       do
  141. if test -x $file -a ! -d $file
  142. then
  143.   echo $file
  144.   exit 0
  145. fi
  146.       done
  147.     done
  148.   done
  149.   exit 1
  150. }
  151. #
  152. # Create the result tar file
  153. #
  154. tar=`which_1 gtar`
  155. if test "$?" = "1" -o "$tar" = ""
  156. then
  157.   tar=tar
  158. fi
  159. echo "Using $tar to create archive"
  160. cd $TMP
  161. $tar cvf $SOURCE/$NEW_NAME.tar $NEW_NAME
  162. cd $SOURCE
  163. echo "Compressing archive"
  164. gzip -9 $NEW_NAME.tar
  165. echo "Removing temporary directory"
  166. rm -r -f $BASE
  167. echo "$NEW_NAME.tar.gz created"