summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--devel/Makefile3
-rw-r--r--devel/php-pcntl/DESCR8
-rw-r--r--devel/php-pcntl/Makefile12
-rw-r--r--doc/CHANGES4
4 files changed, 25 insertions, 2 deletions
diff --git a/devel/Makefile b/devel/Makefile
index e2188454e13..152e6bc190a 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.640 2005/05/19 17:27:13 reed Exp $
+# $NetBSD: Makefile,v 1.641 2005/05/23 21:47:38 jdolecek Exp $
#
COMMENT= Development utilities
@@ -481,6 +481,7 @@ SUBDIR+= pedisassem
SUBDIR+= php-gettext
SUBDIR+= php-gmp
SUBDIR+= php-posix
+SUBDIR+= php-pcntl
SUBDIR+= php-shmop
SUBDIR+= php-sysvsem
SUBDIR+= php-sysvshm
diff --git a/devel/php-pcntl/DESCR b/devel/php-pcntl/DESCR
new file mode 100644
index 00000000000..70cb8290c12
--- /dev/null
+++ b/devel/php-pcntl/DESCR
@@ -0,0 +1,8 @@
+PHP is a programming language designed to be embedded into web pages.
+This module provides support for Process Control functions.
+
+Process Control support in PHP implements the Unix style of process
+creation, program execution, signal handling and process termination.
+Process Control should not be enabled within a webserver environment
+and unexpected results may happen if any Process Control functions
+are used within a webserver environment.
diff --git a/devel/php-pcntl/Makefile b/devel/php-pcntl/Makefile
new file mode 100644
index 00000000000..657555f089f
--- /dev/null
+++ b/devel/php-pcntl/Makefile
@@ -0,0 +1,12 @@
+# $NetBSD: Makefile,v 1.1.1.1 2005/05/23 21:45:21 jdolecek Exp $
+
+MODNAME= pcntl
+CATEGORIES+= devel
+PKGREVISION= # empty
+COMMENT= PHP extension for Process Control functions
+
+
+CONFIGURE_ARGS+= --enable-${MODNAME}=shared
+
+.include "../../lang/php/ext.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/doc/CHANGES b/doc/CHANGES
index 17716bfa0d5..aae513a0045 100644
--- a/doc/CHANGES
+++ b/doc/CHANGES
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES,v 1.10171 2005/05/23 21:33:22 seb Exp $
+$NetBSD: CHANGES,v 1.10172 2005/05/23 21:47:38 jdolecek Exp $
Changes to the packages collection and infrastructure in 2005:
@@ -2565,3 +2565,5 @@ Changes to the packages collection and infrastructure in 2005:
Updated xlockmore to 5.17 [hubertf 2005-05-23]
Updated csound4 to 4.23.13.0 [ben 2005-05-23]
Updated xmlstarlet to 1.0.1 [seb 2005-05-23]
+ Added php-pcntl-5.0.4 [jdolecek 2005-05-23]
+ Added php-pcntl-4.3.11 [jdolecek 2005-05-23]