Hi,
Attached is a patch to fonts/terminus adds two new FLAVORs:
``real_russian'' which makes cyrillic letters look more like those of a
typical print typeface, and ``distinct_l'' which enables exactly what
one would think. This still doesn't cover the full set of internal
patches, but I think that's a good thing, at least for now.
t. yuuko
Index: Makefile
===================================================================
RCS file: /cvs/ports/fonts/terminus-font/Makefile,v
retrieving revision 1.11
diff -u -p -r1.11 Makefile
--- Makefile 24 Apr 2016 15:44:32 -0000 1.11
+++ Makefile 4 Sep 2016 03:03:28 -0000
@@ -25,7 +25,7 @@ FONTDIR = ${PREFIX}/share/fonts/terminu
USE_GMAKE = Yes
-FLAVORS = symquotes centered_tilde
+FLAVORS = symquotes centered_tilde real_russian distinct_l
FLAVOR ?=
.if ${FLAVOR:Mcentered_tilde}
@@ -34,6 +34,15 @@ FLAVOR_PATCHES += ${WRKSRC}/alt/td1.diff
.if ${FLAVOR:Msymquotes}
FLAVOR_PATCHES += ${WRKSRC}/alt/gq2.diff
+.endif
+
+.if ${FLAVOR:Mreal_russian}
+FLAVOR_PATCHES += ${WRKSRC}/alt/dv1.diff
+FLAVOR_PATCHES += ${WRKSRC}/alt/ij1.diff
+.endif
+
+.if ${FLAVOR:Mdistinct_l}
+FLAVOR_PATCHES += ${WRKSRC}/alt/ll2.diff
.endif
PATCH_LIST = patch-* ${FLAVOR_PATCHES}