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

(-)./Makefile (-2 / +3 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	phpsh
4
PORTNAME=	phpsh
5
PORTVERSION=	20110513
5
PORTVERSION=	20110513
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	http://distfiles.pirateparty.in/%SUBDIR%/ \
8
MASTER_SITES=	http://distfiles.pirateparty.in/%SUBDIR%/ \
9
		${MASTER_SITE_LOCAL}
9
		${MASTER_SITE_LOCAL}
Lines 12-17 Link Here
12
MAINTAINER=	ashish@FreeBSD.org
12
MAINTAINER=	ashish@FreeBSD.org
13
COMMENT=	Interactive shell for PHP
13
COMMENT=	Interactive shell for PHP
14
14
15
LICENSE=	BSD3CLAUSE
16
15
USE_BZIP2=	yes
17
USE_BZIP2=	yes
16
USE_PYTHON=	yes
18
USE_PYTHON=	yes
17
USE_PYDISTUTILS=	yes
19
USE_PYDISTUTILS=	yes
Lines 24-30 Link Here
24
26
25
PYDISTUTILS_PKGVERSION=	1.3
27
PYDISTUTILS_PKGVERSION=	1.3
26
28
27
28
OPTIONS_DEFINE=	PCNTL
29
OPTIONS_DEFINE=	PCNTL
29
PCNTL_DESC=	Fork on every command (pcntl PHP extension)
30
PCNTL_DESC=	Fork on every command (pcntl PHP extension)
30
31
(-)./files/patch-src____init__.py (+11 lines)
Line 0 Link Here
1
--- ./src/__init__.py.orig	2014-07-08 19:24:25.000000000 +0800
2
+++ ./src/__init__.py	2014-07-08 19:24:45.000000000 +0800
3
@@ -758,7 +758,7 @@
4
                 ret_code = self.p.poll()
5
                 if debug:
6
                     print "ret_code: " + str(ret_code)
7
-                if ret_code != None:
8
+                if ret_code not in (None, 0):
9
                     if debug:
10
                         print "NOOOOO"
11
                     print "subprocess died with return code: " + repr(ret_code)
(-)./pkg-descr (-1 / +1 lines)
Lines 4-7 Link Here
4
in python. It is open source and released under a modified
4
in python. It is open source and released under a modified
5
BSD license.
5
BSD license.
6
6
7
WWW:	http://phpsh.org/
7
WWW: http://phpsh.org/

Return to bug 191736