CC-3297: Depend on zendframework and php-pear as external packages

-Remove dependency on included Zend files.
-Remove included Zend files
-Zend is now external dependency
This commit is contained in:
Martin Konecny 2012-02-06 20:19:25 -05:00
parent 51e181b445
commit 5dcb033c84
2717 changed files with 27 additions and 676351 deletions

View file

@ -45,6 +45,18 @@ libvorbis-ocaml libpulse0 vorbis-tools lsb-release php-db zendframework
#of Debian, where these packages are unauthorized)
apt-get -y --force-yes install libmp3lame-dev lame icecast2
#Debian Squeeze only has zendframework package. Newer versions of Ubuntu have zend-framework package.
#Ubuntu Lucid has both zendframework and zend-framework. Difference appears to be that zendframework is for
#1.10 and zend-framework is 1.11
if [ "$dist" = "Debian" ]; then
apt-get -y install zendframework
else
apt-get -y install zend-framework
fi
if [ "$?" -ne "0" ]; then
echo ""
echo "There was a problem with apt-get. Please check the above error and try again."

View file

@ -48,6 +48,16 @@ libvorbis-ocaml libpulse0 vorbis-tools lsb-release php-db zendframework
#of Debian, where these packages are unauthorized)
apt-get -y --force-yes install libmp3lame-dev lame icecast2
#Debian Squeeze only has zendframework package. Newer versions of Ubuntu have zend-framework package.
#Ubuntu Lucid has both zendframework and zend-framework. Difference appears to be that zendframework is for
#1.10 and zend-framework is 1.11
if [ "$dist" = "Debian" ]; then
apt-get -y install zendframework
else
apt-get -y install zend-framework
fi
if [ "$?" -ne "0" ]; then
echo ""
echo "There was a problem with apt-get. Please check the above error and try again."