diff options
author | Jesús Daniel Colmenares Oviedo <DtxdF@disroot.org> | 2024-03-08 01:08:05 -0400 |
---|---|---|
committer | Yasuhiro Kimura <yasu@FreeBSD.org> | 2024-03-08 15:51:19 +0900 |
commit | 44b591df85b45b63a612c55de7cc1677fa9b484f (patch) | |
tree | 7f85088b063a6e16d64277179e17ac691447b731 /mail/snappymail/Makefile | |
parent | 32d5407759e95ec4fbb64228e5564aa161e8d561 (diff) | |
download | freebsd-ports-44b591df85b45b63a612c55de7cc1677fa9b484f.zip |
mail/snappymail: Add missing ctype extension
When the user first logs in to its web server with snappymail installed, the first
thing it will see is:
```
[302] The following PHP extensions are not available in your PHP configuration!
ctype
```
PR: 277570
MFH: 2024Q1
Diffstat (limited to 'mail/snappymail/Makefile')
-rw-r--r-- | mail/snappymail/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mail/snappymail/Makefile b/mail/snappymail/Makefile index 44cf253e8a43..65ecf3ed20e7 100644 --- a/mail/snappymail/Makefile +++ b/mail/snappymail/Makefile @@ -1,5 +1,6 @@ PORTNAME= snappymail DISTVERSION= 2.35.2 +PORTREVISION= 1 CATEGORIES= mail www MASTER_SITES= https://github.com/the-djmaze/snappymail/releases/download/v${DISTVERSION}/ PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} @@ -14,8 +15,8 @@ RUN_DEPENDS= ${PECL_PKGNAMEPREFIX}APCu>0:devel/pecl-APCu@${PHP_FLAVOR} \ ${PECL_PKGNAMEPREFIX}uuid>0:devel/pecl-uuid@${PHP_FLAVOR} USES= php:web,flavors -USE_PHP= curl dom fileinfo gd iconv intl mbstring phar sodium tidy xml \ - zip zlib +USE_PHP= ctype curl dom fileinfo gd iconv intl mbstring phar sodium tidy \ + xml zip zlib NO_ARCH= yes NO_BUILD= yes |