pecl-proctitle-0.1.1, PHP support for setproctitle

This commit is contained in:
jolan 2009-04-28 15:23:44 +00:00
parent c4dea24a2a
commit 1d5c420a63
6 changed files with 87 additions and 0 deletions

View File

@ -0,0 +1,50 @@
# $OpenBSD: Makefile,v 1.1.1.1 2009/04/28 15:23:44 jolan Exp $
SHARED_ONLY= Yes
COMMENT= PHP support for setproctitle
DISTNAME= proctitle-0.1.1
PKGNAME= pecl-${DISTNAME}
CATEGORIES= www
HOMEPAGE= http://pecl.php.net/package/proctitle/
# PHP License
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= http://pecl.php.net/get/
EXTRACT_SUFX= .tgz
AUTOCONF_VERSION= 2.62
AUTOMAKE_VERSION= 1.9
BUILD_DEPENDS= :pear-*:www/pear \
${MODGNU_AUTOCONF_DEPENDS} \
${MODGNU_AUTOMAKE_DEPENDS}
RUN_DEPENDS= :php5-core-*:www/php5/core
CONFIGURE_STYLE=gnu
CONFIGURE_ENV= AUTOMAKE_VERSION=${AUTOMAKE_VERSION} \
AUTOCONF_VERSION=${AUTOCONF_VERSION}
PREFIX= /var/www
DESTDIRNAME= INSTALL_ROOT
NO_REGRESS= Yes
USE_LIBTOOL= Yes
LIBTOOL_FLAGS+= --tag=disable-static
pre-configure:
@cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ${LOCALBASE}/bin/phpize
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/conf/php5.sample
@echo "extension=proctitle.so" > \
${PREFIX}/conf/php5.sample/proctitle.ini
.include <bsd.port.mk>

View File

@ -0,0 +1,5 @@
MD5 (proctitle-0.1.1.tgz) = J063JYS3/GF/GRRzvNLuFA==
RMD160 (proctitle-0.1.1.tgz) = Yy4IhtlDG2InkhykDzvMhfOmAJg=
SHA1 (proctitle-0.1.1.tgz) = PhoTBIIcT8V8Pe2wXVN+yDqLqbw=
SHA256 (proctitle-0.1.1.tgz) = 1PDfPHUjgvxb4B4N+XvS3lQ6gmD1hDW4+KT0Gwlv6V4=
SIZE (proctitle-0.1.1.tgz) = 4474

View File

@ -0,0 +1,2 @@
pecl-proctitle is an extension which allows you to change the current
process's name.

View File

@ -0,0 +1,10 @@
You can enable this module by creating a symbolic
link from ${PREFIX}/conf/php5.sample/proctitle.ini to
${PREFIX}/conf/php5/proctitle.ini.
ln -fs ${PREFIX}/conf/php5.sample/proctitle.ini \
${PREFIX}/conf/php5/proctitle.ini
If you already have Apache running on your machine,
you should not use "apachectl restart" - instead,
you should fully stop and then restart the server.

View File

@ -0,0 +1,11 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2009/04/28 15:23:44 jolan Exp $
@comment conf/php5.sample/
@group bin
conf/php5.sample/proctitle.ini
@comment lib/
@comment lib/php/
@comment lib/php/modules/
@owner root
lib/php/modules/proctitle.so
@owner
@group

View File

@ -0,0 +1,9 @@
You can disable this module by removing the
${PREFIX}/conf/php5/proctitle.ini symbolic link by
issuing the following command:
rm -f ${PREFIX}/conf/php5/proctitle.ini
If you already have Apache running on your machine,
you should not use "apachectl restart" - instead,
you should fully stop and then restart the server.