pkgsrc/print/tex-blindtext/options.mk
rillig 4760eca917 Replaced $(ROUND) with ${CURLY} variable references.
This has been a pkglint warning for several years now, and pkglint can even
fix it automatically. And it did for this commit.

Only in lang/mercury, two passes of autofixing were necessary because there
were nested variables.
2018-01-01 18:16:35 +00:00

18 lines
533 B
Makefile

# $NetBSD: options.mk,v 1.2 2018/01/01 18:16:38 rillig Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.tex-blindtext
BLINDTEXT_LANGUAGES= catalan english french german latin
PKG_SUPPORTED_OPTIONS+= ${BLINDTEXT_LANGUAGES} polyglossia
PKG_SUGGESTED_OPTIONS+= english
.include "../../mk/bsd.options.mk"
.for l in $(BLINDTEXT_LANGUAGES)
.if !empty(PKG_OPTIONS:M$(l))
DEPENDS+= tex-babel-${l}-[0-9]*:../../print/tex-babel-${l}
.endif
.endfor
.if !empty(PKG_OPTIONS:Mpolyglossia)
DEPENDS+= tex-polyglossia-[0-9]*:../../print/tex-polyglossia
.endif