diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2021-09-19 05:29:01 +0000 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2021-09-19 06:00:02 +0000 |
commit | 838b620352a97184039c5624208654ddb71c7dc8 (patch) | |
tree | 1e4991258c14b150fe4a92a6beeb00a81c77ae25 | |
parent | fb48c5169a2283bd51fb9f1945b7ee93d7db5ce2 (diff) | |
download | ports-838b620352a97184039c5624208654ddb71c7dc8.tar.gz ports-838b620352a97184039c5624208654ddb71c7dc8.zip |
devel/pear-Net_Gearman: Remove duplicate BUILD_DEPENDS and RUN_DEPENDS
- Add NO_ARCH
- Update pkg-descr
-rw-r--r-- | devel/pear-Net_Gearman/Makefile | 9 | ||||
-rw-r--r-- | devel/pear-Net_Gearman/pkg-descr | 10 |
2 files changed, 13 insertions, 6 deletions
diff --git a/devel/pear-Net_Gearman/Makefile b/devel/pear-Net_Gearman/Makefile index 7a214daa33fe..b80cd1d1c7ee 100644 --- a/devel/pear-Net_Gearman/Makefile +++ b/devel/pear-Net_Gearman/Makefile @@ -6,14 +6,13 @@ PORTREVISION= 3 CATEGORIES= devel pear MAINTAINER= sunpoet@FreeBSD.org -COMMENT= Gearman client libraray for PHP +COMMENT= PHP interface to Gearman LICENSE= BSD2CLAUSE -BUILD_DEPENDS= ${LOCALBASE}/share/pear/PEAR.php:devel/pear@${PHP_FLAVOR} -RUN_DEPENDS= ${LOCALBASE}/share/pear/PEAR.php:devel/pear@${PHP_FLAVOR} - +USES= pear USE_PHP= json mbstring sockets -USES= pear php + +NO_ARCH= yes .include <bsd.port.mk> diff --git a/devel/pear-Net_Gearman/pkg-descr b/devel/pear-Net_Gearman/pkg-descr index bbeebe9c98b2..f61fa78015d3 100644 --- a/devel/pear-Net_Gearman/pkg-descr +++ b/devel/pear-Net_Gearman/pkg-descr @@ -1,3 +1,11 @@ -Gearman client library for PHP. +Gearman provides a generic application framework to farm out work to other +machines or processes that are better suited to do the work. It allows you to do +work in parallel, to load balance processing, and to call functions between +languages. It can be used in a variety of applications, from high-availability +web sites to the transport of database replication events. In other words, it is +the nervous system for how distributed processing communicates. + +This package provides an interface for PHP to communicate with the Gearman +server. WWW: https://pear.php.net/package/Net_Gearman |