#880 handling pear packages in tools.

This commit is contained in:
tomas 2005-04-30 00:10:42 +00:00
parent ddb3acce07
commit dbd63ae730
3 changed files with 24 additions and 17 deletions

View file

@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
# Author : $Author: maroy $
# Version : $Revision: 1.4 $
# Author : $Author: tomas $
# Version : $Revision: 1.5 $
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/bin/Attic/copyInstall.sh,v $
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
@ -151,6 +151,7 @@ cp -pPR $modules_dir/htmlUI/var $install_var/htmlUI
#-------------------------------------------------------------------------------
cp -pPR $usrdir/lib/* $install_lib
cp -pPR $usrdir/etc/* $install_etc
cp -pPR $usrdir/lib/php/* $install_lib
#-------------------------------------------------------------------------------

View file

@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
# Author : $Author: maroy $
# Version : $Revision: 1.7 $
# Author : $Author: tomas $
# Version : $Revision: 1.8 $
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/bin/dist.sh,v $
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
@ -180,6 +180,7 @@ taglib_dir=$toolsdir/taglib
taglib_version=taglib-1.3.1
taglib_tmpdir=$tools_tmpdir/taglib
pear_dir=$toolsdir/pear
#-------------------------------------------------------------------------------
# Create the sources tarball first
@ -285,6 +286,9 @@ cp -pPR $curl_dir/$curl_version $curl_tmpdir
mkdir -p $taglib_tmpdir
cp -pPR $taglib_dir/$taglib_version $taglib_tmpdir
mkdir -p $pear_tmpdir
cp -pPR $pear_dir $tools_tmpdir
#-------------------------------------------------------------------------------
# Get rid of the remnants of the CVS system

View file

@ -21,8 +21,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
# Author : $Author: maroy $
# Version : $Revision: 1.1 $
# Author : $Author: tomas $
# Version : $Revision: 1.2 $
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/bin/preInstall.sh,v $
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
@ -164,18 +164,20 @@ check_exe "php" || exit 1;
check_exe "pear" || exit 1;
check_exe "odbcinst" || exit 1;
check_pear_module "DB" || exit 1;
check_pear_module "Calendar" || exit 1;
check_pear_module "File" || exit 1;
check_pear_module "File_Find" || exit 1;
check_pear_module "HTML_Common" || exit 1;
check_pear_module "HTML_QuickForm" || exit 1;
check_pear_module "XML_Beautifier" || exit 1;
check_pear_module "XML_Parser" || exit 1;
check_pear_module "XML_RPC" || exit 1;
check_pear_module "XML_Serializer" || exit 1;
check_pear_module "XML_Util" || exit 1;
#check_pear_module "DB" || exit 1;
#check_pear_module "Calendar" || exit 1;
#check_pear_module "File" || exit 1;
#check_pear_module "File_Find" || exit 1;
#check_pear_module "HTML_Common" || exit 1;
#check_pear_module "HTML_QuickForm" || exit 1;
#check_pear_module "XML_Beautifier" || exit 1;
#check_pear_module "XML_Parser" || exit 1;
#check_pear_module "XML_RPC" || exit 1;
#check_pear_module "XML_Serializer" || exit 1;
#check_pear_module "XML_Util" || exit 1;
echo "preinstalling pear packages..."
$toolsdir/pear/bin/install.sh || exit 1;
#-------------------------------------------------------------------------------
# Say goodbye