View | Details | Raw Unified | Return to bug 75166
Collapse All | Expand All

(-)pear-PEAR/Makefile (-1 / +1 lines)
Lines 7-13 Link Here
7
7
8
PORTNAME=	PEAR
8
PORTNAME=	PEAR
9
PORTVERSION=	1.3.3.1
9
PORTVERSION=	1.3.3.1
10
PORTREVISION=	2
10
PORTREVISION=	3
11
CATEGORIES=	devel www pear
11
CATEGORIES=	devel www pear
12
12
13
MAINTAINER=	antonio@php.net
13
MAINTAINER=	antonio@php.net
(-)pear-PEAR/files/patch-scripts::pearcmd.php (-9 / +6 lines)
Lines 1-20 Link Here
1
--- scripts/pearcmd.php.orig	Wed Oct 27 02:58:21 2004
1
--- scripts/pearcmd.php.orig	Wed Oct 27 02:58:21 2004
2
+++ scripts/pearcmd.php	Tue Dec 14 14:56:46 2004
2
+++ scripts/pearcmd.php	Thu Dec 16 17:30:19 2004
3
@@ -1,3 +1,4 @@
3
@@ -1,3 +1,4 @@
4
+#!@php_bin@ -q -dsafe_mode=0 -doutput_buffering=1
4
+#!@php_bin@ -n -q -dsafe_mode=0 -doutput_buffering=1
5
 <?php
5
 <?php
6
 //
6
 //
7
 // +----------------------------------------------------------------------+
7
 // +----------------------------------------------------------------------+
8
@@ -24,8 +25,14 @@
8
@@ -24,8 +25,11 @@
9
 /**
9
 /**
10
  * @nodep Gtk
10
  * @nodep Gtk
11
  */
11
  */
12
+if (!extension_loaded('pcre')) {
12
+dl('pcre.so');
13
+    dl('pcre.so');
13
+dl('xml.so');
14
+}
14
+
15
+if (!extension_loaded('xml')) {
16
+    dl('xml.so');
17
+}
18
 if ('@include_path@' != '@'.'include_path'.'@') {
15
 if ('@include_path@' != '@'.'include_path'.'@') {
19
-    ini_set('include_path', '@include_path@');
16
-    ini_set('include_path', '@include_path@');
20
+    ini_set('include_path', '@include_path@:@include_path@/bootstrap');
17
+    ini_set('include_path', '@include_path@:@include_path@/bootstrap');
(-)pear-PEAR/pkg-install (-1 / +1 lines)
Lines 17-21 Link Here
17
17
18
[ "x$1" = "x" ] && exit 1
18
[ "x$1" = "x" ] && exit 1
19
if [ "x$2" = "xPOST-INSTALL" ]; then
19
if [ "x$2" = "xPOST-INSTALL" ]; then
20
	${PEAR_INSTALLER} install -r -f ${PKGREGDIR}/package.xml
20
	${PEAR_INSTALLER} install -r -n -f ${PKGREGDIR}/package.xml
21
fi
21
fi

Return to bug 75166