diff options
author | Tobias C. Berner <tcberner@FreeBSD.org> | 2021-10-30 20:08:16 +0200 |
---|---|---|
committer | Tobias C. Berner <tcberner@FreeBSD.org> | 2021-12-11 14:50:53 +0100 |
commit | 45526ecbeec33dbb87f0b678d4c04988aab9b657 (patch) | |
tree | b77614b463af0ed929512fcc838ff5cb20c96275 /www/p5-jQuery-File-Upload | |
parent | security/vaultwarden: Update to 1.23.0 (diff) |
framework: Add new USES 'magick' for graphics/ImageMagick*
A new USES has been added to depend on ImageMagick.
USES=magick
adds a LIB_DEPENDS on graphics/ImageMagick${IMAGEMAGICK_DEFAULT}.
If a specific version is required, use for example
USES=magick:6 resp. USES=magick:7
If only a build, run or test is required, use for example
USES=magick:build resp. USES=magick:6,build,test
If a dependency on the nox11 flavor is required, use for example
USES=magick:nox11 resp. USES=magick:7,nox11,run,test
See magick.mk for more details on the available flags.
The tree has been completely converted to make use of this.
Approved by: bapt
Differential Revision: https://reviews.freebsd.org/D32754
Diffstat (limited to 'www/p5-jQuery-File-Upload')
-rw-r--r-- | www/p5-jQuery-File-Upload/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/www/p5-jQuery-File-Upload/Makefile b/www/p5-jQuery-File-Upload/Makefile index db462ff54819..f440884ab992 100644 --- a/www/p5-jQuery-File-Upload/Makefile +++ b/www/p5-jQuery-File-Upload/Makefile @@ -9,7 +9,6 @@ MAINTAINER= perl@FreeBSD.org COMMENT= Perl extension for jQuery File Upload plugin RUN_DEPENDS= \ - convert:graphics/ImageMagick6 \ p5-Data-GUID>0:devel/p5-Data-GUID \ p5-JSON>0:converters/p5-JSON \ p5-JSON-XS>0:converters/p5-JSON-XS \ @@ -17,7 +16,7 @@ RUN_DEPENDS= \ p5-URI>0:net/p5-URI BUILD_DEPENDS= ${RUN_DEPENDS} -USES= perl5 +USES= magick:6,run perl5 USE_PERL5= configure NO_ARCH= YES |