f1a165bbd6
The issue is that use/fonts/infinality doesn't actually require the script hook thus registering the feature's name in FEATURES variable so that the feature's contents get copied over is not neccessary (distcfg.mk build-up will have happened anyways). But that's confusing if one's forgot this peculiarity (like me today) or never knew of it, so let's spare some frustration.
16 lines
572 B
Makefile
16 lines
572 B
Makefile
use/fonts:
|
|
@$(call add_feature)
|
|
@$(call xport,FONT_FEATURES_ENABLE)
|
|
@$(call xport,FONT_FEATURES_DISABLE)
|
|
|
|
# just stating that kernels and font habits are pretty individual
|
|
use/fonts/zerg: use/fonts
|
|
@$(call set,FONT_FEATURES_ENABLE,antialias lcdfilter-default \
|
|
hinting style-full sub-pixel-rgb)
|
|
@$(call set,FONT_FEATURES_DISABLE,no-antialias lcdfilter-none \
|
|
unhinted no-sub-pixel)
|
|
|
|
# nothing configured to add_feature but let's not skip that for consistency
|
|
use/fonts/infinality: use/fonts
|
|
@$(call add,THE_PACKAGES,libfreetype-infinality fontconfig-infinality)
|