From b4b4314e2f0b719fca22b34f6f132c8bf6ae78e4 Mon Sep 17 00:00:00 2001 From: Martin Wilke Date: Mon, 25 Jan 2010 08:49:07 +0000 Subject: [PATCH] This extension allows changing the current process' name on Linux and *BSD systems. This is useful when using pcntl_fork() to identify running processes in process list WWW: http://www.pecl.php.net/package/proctitle/ PR: ports/143014 Submitted by: Florian Smeets --- sysutils/Makefile | 1 + sysutils/pecl-proctitle/Makefile | 22 ++++++++++++++++++++++ sysutils/pecl-proctitle/distinfo | 3 +++ sysutils/pecl-proctitle/pkg-descr | 5 +++++ 4 files changed, 31 insertions(+) create mode 100644 sysutils/pecl-proctitle/Makefile create mode 100644 sysutils/pecl-proctitle/distinfo create mode 100644 sysutils/pecl-proctitle/pkg-descr diff --git a/sysutils/Makefile b/sysutils/Makefile index 5c731e6cf58a..53366b44978a 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -594,6 +594,7 @@ SUBDIR += pear-Log SUBDIR += pear-Translation2 SUBDIR += pecl-fileinfo + SUBDIR += pecl-proctitle SUBDIR += penv SUBDIR += perf SUBDIR += personality diff --git a/sysutils/pecl-proctitle/Makefile b/sysutils/pecl-proctitle/Makefile new file mode 100644 index 000000000000..3c2d64d2f0a2 --- /dev/null +++ b/sysutils/pecl-proctitle/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: pecl-proctitle +# Date created: 2010-01-20 +# Whom: Florian Smeets +# +# $FreeBSD$ +# + +PORTNAME= proctitle +PORTVERSION= 0.1.1 +CATEGORIES= sysutils pear +MASTER_SITES= http://pecl.php.net/get/ +PKGNAMEPREFIX= pecl- +EXTRACT_SUFX= .tgz +DIST_SUBDIR= PECL + +MAINTAINER= flo@kasimir.com +COMMENT= A PECL extension that allows changing the current process' name + +USE_PHP= yes +USE_PHPEXT= yes + +.include diff --git a/sysutils/pecl-proctitle/distinfo b/sysutils/pecl-proctitle/distinfo new file mode 100644 index 000000000000..bad51984a275 --- /dev/null +++ b/sysutils/pecl-proctitle/distinfo @@ -0,0 +1,3 @@ +MD5 (PECL/proctitle-0.1.1.tgz) = 274eb72584b7fc617f191473bcd2ee14 +SHA256 (PECL/proctitle-0.1.1.tgz) = d4f0df3c752382fc5be01e0df97bd2de543a8260f58435b8f8a4f41b096fe95e +SIZE (PECL/proctitle-0.1.1.tgz) = 4474 diff --git a/sysutils/pecl-proctitle/pkg-descr b/sysutils/pecl-proctitle/pkg-descr new file mode 100644 index 000000000000..bf40d6fd09fb --- /dev/null +++ b/sysutils/pecl-proctitle/pkg-descr @@ -0,0 +1,5 @@ +This extension allows changing the current process' name on Linux and *BSD +systems. This is useful when using pcntl_fork() to identify running +processes in process list + +WWW: http://www.pecl.php.net/package/proctitle/