diff options
author | tz <tz@FreeBSD.org> | 2017-11-07 20:01:38 +0800 |
---|---|---|
committer | tz <tz@FreeBSD.org> | 2017-11-07 20:01:38 +0800 |
commit | b064edeb371305490291c40e3443ab6f342f15cc (patch) | |
tree | fda7cca6fc1e1e30ac967ebf8a0b80033616b68b | |
parent | 6439858178112c69cf82350977b8a55a6bb4afa6 (diff) | |
download | freebsd-ports-gnome-b064edeb371305490291c40e3443ab6f342f15cc.tar.gz freebsd-ports-gnome-b064edeb371305490291c40e3443ab6f342f15cc.tar.zst freebsd-ports-gnome-b064edeb371305490291c40e3443ab6f342f15cc.zip |
devel/aphpunit: Add missing PHP modules and fix link
Add the missing PHP modules posix and phar in order to work correctly.
Update wrong link in pkg-descr, thanks ade for spotting.
-rw-r--r-- | devel/aphpunit/Makefile | 3 | ||||
-rw-r--r-- | devel/aphpunit/pkg-descr | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/devel/aphpunit/Makefile b/devel/aphpunit/Makefile index 7fd1be9fbcbb..edcfbc808ffe 100644 --- a/devel/aphpunit/Makefile +++ b/devel/aphpunit/Makefile @@ -2,6 +2,7 @@ PORTNAME= aphpunit DISTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= devel www MASTER_SITES= http://phar.toco-domains.de/ EXTRACT_SUFX= .phar @@ -12,7 +13,7 @@ COMMENT= Testing framework for unit tests LICENSE= BSD2CLAUSE USES= php -USE_PHP= pcntl sysvmsg +USE_PHP= pcntl phar posix sysvmsg NO_ARCH= yes NO_BUILD= yes diff --git a/devel/aphpunit/pkg-descr b/devel/aphpunit/pkg-descr index e85c73d44c99..f4542b1cd74e 100644 --- a/devel/aphpunit/pkg-descr +++ b/devel/aphpunit/pkg-descr @@ -2,4 +2,4 @@ APHPUnit is a regression testing framework for PHP unit tests. It removes many limitations the standard literature about testing declares for years while making tests very fast. -WWW: http://gitlab.toco-domains/APHPUnit/APHPUnit +WWW: http://gitlab.toco-domains.de/tocOS/APHPUnit |