From: Stig Bakken Date: Sat, 11 May 2002 01:35:23 +0000 (+0000) Subject: * install Archive_Tar and Console_Getopt too X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~136 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aa1f45c96429c16098fc933c8fa2d5c0cc97e5c4;p=php * install Archive_Tar and Console_Getopt too --- diff --git a/pear/Makefile.frag b/pear/Makefile.frag index e3d2f02760..f49b7d7650 100644 --- a/pear/Makefile.frag +++ b/pear/Makefile.frag @@ -98,18 +98,18 @@ peardir=$(PEAR_INSTALLDIR) PEARCMD=$(top_builddir)/sapi/cli/php -d include_path=$(top_srcdir)/pear pear/scripts/pear.in install-pear-installer: $(top_builddir)/sapi/cli/php - @if $(PEARCMD) shell-test PEAR; then \ - version=`grep '' $(srcdir)/package-PEAR.xml|head -1|cut -d\> -f2|cut -d\< -f1`; \ - if ! $(PEARCMD) shell-test PEAR $$version; then \ - echo "Found an older version of the PEAR Installer, upgrading..."; \ - $(PEARCMD) -q upgrade $(srcdir)/package-PEAR.xml; \ + @for descfile in $(srcdir)/package-*.xml; do \ + tmp="$${descfile%.xml}"; \ + pkgname="$${tmp#*-}"; \ + pkgver=`grep '' $$descfile|head -1|cut -d\> -f2|cut -d\< -f1`; \ + if $(PEARCMD) shell-test $$pkgname; then \ + if ! $(PEARCMD) shell-test $$pkgname $$pkgver; then \ + $(PEARCMD) -q upgrade $$descfile | sed -e "s/^/$$pkgname $$pkgver: /"; \ + fi; \ else \ - echo "No need to install or upgrade the PEAR Installer..."; \ + $(PEARCMD) -q install $$descfile | sed -e "s/^/$$pkgname $$pkgver: /"; \ fi; \ - else \ - echo "PEAR Installer not found, installing..."; \ - $(PEARCMD) -q install $(srcdir)/package-PEAR.xml; \ - fi + done install-pear-packages: # requires cli installed @/bin/ls -1 $(srcdir)/packages | while read package; do \