diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2003-05-22 18:26:28 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2003-05-22 18:26:28 +0000 |
commit | 18ea1afefe75baf9e9d5a81ea4e2820433993faa (patch) | |
tree | 1edc7b7cce0659feb4e86a0fdd1cd78d96db73ef /lang/php53/files/patch-pear::Makefile.frag | |
parent | Chase the distfile; update MASTER_SITES. (diff) |
Add completely new port system for PHP4 (4.3.2RC4). Updated mod_php4
to 4.3.2RC4 release and added php4-cli and php4 ports, for apache
module, command line interface, and both, respectively. Too many
changes (improvements, bug fixes and new features) to be listed here,
PR: ports/51945
Submitted by: Alex Dupre <sysadmin@alexdupre.com>
Notes
Notes:
svn path=/head/; revision=81722
Diffstat (limited to 'lang/php53/files/patch-pear::Makefile.frag')
-rw-r--r-- | lang/php53/files/patch-pear::Makefile.frag | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lang/php53/files/patch-pear::Makefile.frag b/lang/php53/files/patch-pear::Makefile.frag new file mode 100644 index 000000000000..6653c7852f69 --- /dev/null +++ b/lang/php53/files/patch-pear::Makefile.frag @@ -0,0 +1,22 @@ +--- pear/Makefile.frag.orig Sat Apr 12 01:48:37 2003 ++++ pear/Makefile.frag Sat May 17 10:08:54 2003 +@@ -13,10 +13,13 @@ + + install-pear: + @echo "Installing PEAR environment: $(INSTALL_ROOT)$(peardir)/" +- @if $(mkinstalldirs) $(INSTALL_ROOT)$(peardir); then \ +- $(MAKE) -s install-pear-installer install-pear-packages; \ +- else \ +- cat $(srcdir)/install-pear.txt; \ +- exit 5; \ +- fi ++ @$(mkinstalldirs) $(INSTALL_ROOT)$(peardir)/bootstrap \ ++ $(INSTALL_ROOT)$(peardir)/bootstrap/Archive \ ++ $(INSTALL_ROOT)$(peardir)/bootstrap/Console ++ @cp $(srcdir)/PEAR.php $(srcdir)/System.php \ ++ $(INSTALL_ROOT)$(peardir)/bootstrap ++ @cp $(srcdir)/Archive/*.php $(INSTALL_ROOT)$(peardir)/bootstrap/Archive ++ @cp $(srcdir)/Console/*.php $(INSTALL_ROOT)$(peardir)/bootstrap/Console ++ @cp -R $(srcdir)/OS $(INSTALL_ROOT)$(peardir)/bootstrap/OS ++ @cp -R $(srcdir)/PEAR $(INSTALL_ROOT)$(peardir)/bootstrap/PEAR + |