2002-04-02 17:09:41 +08:00
|
|
|
# -*- makefile -*-
|
1999-12-30 10:59:53 +08:00
|
|
|
|
2000-07-18 06:52:08 +08:00
|
|
|
peardir=$(PEAR_INSTALLDIR)
|
2000-05-03 06:28:12 +08:00
|
|
|
|
2002-11-13 07:30:21 +08:00
|
|
|
# Skip all php.ini files altogether
|
2010-04-27 07:53:30 +08:00
|
|
|
PEAR_INSTALL_FLAGS = -n -dshort_open_tag=0 -dopen_basedir= -derror_reporting=1803 -dmemory_limit=-1 -ddetect_unicode=0
|
2002-10-29 23:59:19 +08:00
|
|
|
|
2008-05-31 07:42:50 +08:00
|
|
|
WGET = `which wget 2>/dev/null`
|
|
|
|
FETCH = `which fetch 2>/dev/null`
|
2009-08-03 03:11:15 +08:00
|
|
|
PEAR_PREFIX = -dp a${program_prefix}
|
|
|
|
PEAR_SUFFIX = -ds a$(program_suffix)
|
2008-05-31 07:42:50 +08:00
|
|
|
|
2005-12-12 20:39:50 +08:00
|
|
|
install-pear-installer: $(SAPI_CLI_PATH)
|
2009-08-03 03:11:15 +08:00
|
|
|
@$(top_builddir)/sapi/cli/php $(PEAR_INSTALL_FLAGS) pear/install-pear-nozlib.phar -d "$(peardir)" -b "$(bindir)" ${PEAR_PREFIX} ${PEAR_SUFFIX}
|
2002-04-02 17:09:41 +08:00
|
|
|
|
2002-03-11 21:17:44 +08:00
|
|
|
install-pear:
|
2002-07-04 06:12:13 +08:00
|
|
|
@echo "Installing PEAR environment: $(INSTALL_ROOT)$(peardir)/"
|
2005-12-12 20:39:50 +08:00
|
|
|
@if test ! -f $(builddir)/install-pear-nozlib.phar; then \
|
|
|
|
if test -f $(srcdir)/install-pear-nozlib.phar; then \
|
|
|
|
cp $(srcdir)/install-pear-nozlib.phar $(builddir)/install-pear-nozlib.phar; \
|
|
|
|
else \
|
2008-05-31 07:42:50 +08:00
|
|
|
if test ! -z "$(WGET)" && test -x "$(WGET)"; then \
|
|
|
|
"$(WGET)" http://pear.php.net/install-pear-nozlib.phar -nd -P $(builddir)/; \
|
|
|
|
elif test ! -z "$(FETCH)" && test -x "$(FETCH)"; then \
|
|
|
|
"$(FETCH)" -o $(builddir)/ http://pear.php.net/install-pear-nozlib.phar; \
|
|
|
|
else \
|
|
|
|
$(top_builddir)/sapi/cli/php -n $(srcdir)/fetch.php http://pear.php.net/install-pear-nozlib.phar $(builddir)/install-pear-nozlib.phar; \
|
|
|
|
fi \
|
2005-12-12 20:39:50 +08:00
|
|
|
fi \
|
2005-10-01 01:03:22 +08:00
|
|
|
fi
|
2005-12-12 20:39:50 +08:00
|
|
|
@if test -f $(builddir)/install-pear-nozlib.phar && $(mkinstalldirs) $(INSTALL_ROOT)$(peardir); then \
|
2005-09-07 23:59:53 +08:00
|
|
|
$(MAKE) -s install-pear-installer; \
|
2000-05-03 06:28:12 +08:00
|
|
|
else \
|
|
|
|
cat $(srcdir)/install-pear.txt; \
|
|
|
|
fi
|
1999-12-30 10:59:53 +08:00
|
|
|
|