diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2010-01-25 08:49:07 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2010-01-25 08:49:07 +0000 |
commit | b4b4314e2f0b719fca22b34f6f132c8bf6ae78e4 (patch) | |
tree | 341db834e124a3111637943ef1e63e8d9e8e349a | |
parent | 63f28e0666de808151bd3f3d2638634662969c6f (diff) | |
download | ports-b4b4314e2f0b719fca22b34f6f132c8bf6ae78e4.tar.gz ports-b4b4314e2f0b719fca22b34f6f132c8bf6ae78e4.zip |
Notes
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/pecl-proctitle/Makefile | 22 | ||||
-rw-r--r-- | sysutils/pecl-proctitle/distinfo | 3 | ||||
-rw-r--r-- | sysutils/pecl-proctitle/pkg-descr | 5 |
4 files changed, 31 insertions, 0 deletions
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 <flo@kasimir.com> +# +# $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 <bsd.port.mk> 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/ |