Hi,
Here's the patch updated in accordance with your suggestions.
t. yuuko
On 09/04/16 01:06, [email protected] wrote:
Sat, 3 Sep 2016 20:19:39 -0700 Aioi Yuuko <[email protected]>
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
Hi Aioi,
Please also provide separate ij1 (cyrillic_i) and k2 (high_k), as per
their original upstream character variants. It is reasonable to have
dv1 (type_dv) independent, despite the fact it mimics type machines &
teletypes from Soviet era, it is less legible than dv2 (the default).
I would also recommend you provide ge2 (script_g) while you're there.
Kind regards,
Anton
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 19:04:38 -0000
@@ -25,7 +25,7 @@ FONTDIR = ${PREFIX}/share/fonts/terminu
USE_GMAKE = Yes
-FLAVORS = symquotes centered_tilde
+FLAVORS = symquotes centered_tilde type_dv cyrillic_i distinct_l script_g high_k
FLAVOR ?=
.if ${FLAVOR:Mcentered_tilde}
@@ -34,6 +34,26 @@ FLAVOR_PATCHES += ${WRKSRC}/alt/td1.diff
.if ${FLAVOR:Msymquotes}
FLAVOR_PATCHES += ${WRKSRC}/alt/gq2.diff
+.endif
+
+.if ${FLAVOR:Mtype_dv}
+FLAVOR_PATCHES += ${WRKSRC}/alt/dv1.diff
+.endif
+
+.if ${FLAVOR:Mcyrillic_i}
+FLAVOR_PATCHES += ${WRKSRC}/alt/ij1.diff
+.endif
+
+.if ${FLAVOR:Mdistinct_l}
+FLAVOR_PATCHES += ${WRKSRC}/alt/ll2.diff
+.endif
+
+.if ${FLAVOR:Mscript_g}
+FLAVOR_PATCHES += ${WRKSRC}/alt/ge2.diff
+.endif
+
+.if ${FLAVOR:Mhigh_k}
+FLAVOR_PATCHES += ${WRKSRC}/alt/ka2.diff
.endif
PATCH_LIST = patch-* ${FLAVOR_PATCHES}