blob: f8143d1a28fa6bd6d3ad0e77cc9e1011f7f61888 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $NetBSD: tool.mk,v 1.2 2021/08/11 00:25:35 gutteridge Exp $
#
# This mk fragment can be included by all packages that need librsvg as a tool
# dependency (e.g., for rsvg-convert).
#
.if !defined(LIBRSVG_TOOL_MK)
LIBRSVG_TOOL_MK= defined
.include "../../graphics/librsvg/available.mk"
.if ${LIBRSVG_TYPE} == "rust"
TOOL_DEPENDS+= librsvg-[0-9]*:../../graphics/librsvg
.else
TOOL_DEPENDS+= librsvg-[0-9]*:../../graphics/librsvg-c
.endif
.endif # LIBRSVG_TOOL_MK
|