diff options
author | Tobias C. Berner <tcberner@FreeBSD.org> | 2021-10-30 18:08:16 +0000 |
---|---|---|
committer | Tobias C. Berner <tcberner@FreeBSD.org> | 2021-12-11 13:50:53 +0000 |
commit | 45526ecbeec33dbb87f0b678d4c04988aab9b657 (patch) | |
tree | b77614b463af0ed929512fcc838ff5cb20c96275 /x11-themes/icons-tango-extras | |
parent | a148ebec4e0afe980f949de0dea5ef4931cb7e86 (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 'x11-themes/icons-tango-extras')
-rw-r--r-- | x11-themes/icons-tango-extras/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/x11-themes/icons-tango-extras/Makefile b/x11-themes/icons-tango-extras/Makefile index 9d4d6f88f93f..2105ffea5c21 100644 --- a/x11-themes/icons-tango-extras/Makefile +++ b/x11-themes/icons-tango-extras/Makefile @@ -10,12 +10,11 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Extra set of icons from the Tango project BUILD_DEPENDS= ${LOCALBASE}/libexec/icon-name-mapping:x11-themes/icon-naming-utils \ - ${LOCALBASE}/share/icons/Tango/16x16/actions/add.png:x11-themes/icons-tango \ - convert:graphics/ImageMagick${IMAGEMAGICK_DEFAULT} + ${LOCALBASE}/share/icons/Tango/16x16/actions/add.png:x11-themes/icons-tango RUN_DEPENDS= ${LOCALBASE}/share/icons/Tango/16x16/actions/add.png:x11-themes/icons-tango GNU_CONFIGURE= yes -USES= gmake gnome pkgconfig +USES= gmake gnome magick:build pkgconfig USE_GNOME= intlhack .include <bsd.port.mk> |