mirror of
https://git.freebsd.org/ports.git
synced 2025-06-29 16:40:31 -04:00
- pass maintainership to submitter - new style Makefile header - optionsNG - install shared PHP file in the correct place - don't install slice files anymore, since devel/ice (a dependency) already installs those in the correct location - add license (GPLv2) - fix BUILD_DEPENDS - add option that allows to use of PHP5 namespaces - support PHP 5.4 - fixes for Clang and C++11 - remove outdated pkg-message - fix patch filenames PR: 179241 Submitted by: Michael Gmelin <freebsd@grem.de>
12 lines
404 B
Text
12 lines
404 B
Text
--- php/lib/Makefile.orig 2013-06-02 12:11:06.451195440 +0000
|
|
+++ php/lib/Makefile 2013-06-02 12:16:29.249191742 +0000
|
|
@@ -167,7 +167,8 @@
|
|
@echo "Installing generated code"
|
|
@for i in $(MODULES) ; \
|
|
do \
|
|
- $(INSTALL_DATA) -r $$i $(install_phpdir) ; \
|
|
+ mkdir -p $(install_phpdir)/$$i ; \
|
|
+ $(INSTALL_DATA) $$i/*.php $(install_phpdir)/$$i ; \
|
|
done
|
|
@for i in $(MODULE_SRCS) ; \
|
|
do \
|