Wed Aug 11 00:25:35 2021 UTC ()
librsvg: fix grammar and style in several comments


(gutteridge)
diff -r1.5 -r1.6 pkgsrc/graphics/librsvg/available.mk
diff -r1.1 -r1.2 pkgsrc/graphics/librsvg/tool.mk

cvs diff -r1.5 -r1.6 pkgsrc/graphics/librsvg/available.mk (expand / switch to unified diff)

--- pkgsrc/graphics/librsvg/available.mk 2021/05/15 18:00:35 1.5
+++ pkgsrc/graphics/librsvg/available.mk 2021/08/11 00:25:35 1.6
@@ -1,22 +1,22 @@ @@ -1,22 +1,22 @@
1# $NetBSD: available.mk,v 1.5 2021/05/15 18:00:35 nia Exp $ 1# $NetBSD: available.mk,v 1.6 2021/08/11 00:25:35 gutteridge Exp $
2# 2#
3# This mk fragment define LIBRSVG_TYPE variable used in other librsvg mk 3# This mk fragment defines the LIBRSVG_TYPE variable used in other librsvg mk
4# fragments. 4# fragments.
5# 5#
6# User-settable variables: 6# User-settable variables:
7# 7#
8# LIBRSVG_TYPE 8# LIBRSVG_TYPE
9# Type of used librsvg implementation. 9# Type of librsvg implementation used.
10# 10#
11# Possible values: c rust 11# Possible values: c rust
12# Default: rust on platforms were Rust is supported 12# Default: rust on platforms were Rust is supported
13# 13#
14 14
15.if !defined(LIBRSVG_AVAILABLE_MK) 15.if !defined(LIBRSVG_AVAILABLE_MK)
16LIBRSVG_AVAILABLE_MK= defined 16LIBRSVG_AVAILABLE_MK= defined
17 17
18.include "../../mk/bsd.prefs.mk" 18.include "../../mk/bsd.prefs.mk"
19 19
20.include "../../lang/rust/platform.mk" 20.include "../../lang/rust/platform.mk"
21# https://mail-index.netbsd.org/tech-pkg/2020/06/16/msg023380.html 21# https://mail-index.netbsd.org/tech-pkg/2020/06/16/msg023380.html
22.if !empty(PLATFORM_SUPPORTS_RUST:M[Yy][Ee][Ss]) && \ 22.if !empty(PLATFORM_SUPPORTS_RUST:M[Yy][Ee][Ss]) && \

cvs diff -r1.1 -r1.2 pkgsrc/graphics/librsvg/tool.mk (expand / switch to unified diff)

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