Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/share/wscons/fonts Add font files for Spleen, which can be l...



details:   https://anonhg.NetBSD.org/src/rev/2533d93b5571
branches:  trunk
changeset: 935273:2533d93b5571
user:      fcambus <fcambus%NetBSD.org@localhost>
date:      Sun Jun 28 14:26:18 2020 +0000

description:
Add font files for Spleen, which can be loaded into the wsfont pool
or a wscons display device using wsfontload(8).

For example, Spleen 16x32 can be loaded and enabled as follow:

wsfontload -N spleen-16x32 -w 16 -h 32 spleen-16x32.fnt
wsconsctl -dw font=spleen-16x32

diffstat:

 distrib/sets/lists/base/mi              |     7 +-
 share/wscons/fonts/COPYRIGHT            |    33 +-
 share/wscons/fonts/Makefile             |     6 +-
 share/wscons/fonts/spleen-12x24.fnt.uue |   277 +++++
 share/wscons/fonts/spleen-16x32.fnt.uue |   368 +++++++
 share/wscons/fonts/spleen-32x64.fnt.uue |  1460 +++++++++++++++++++++++++++++++
 share/wscons/fonts/spleen-5x8.fnt.uue   |    49 +
 share/wscons/fonts/spleen-8x16.fnt.uue  |    95 ++
 8 files changed, 2291 insertions(+), 4 deletions(-)

diffs (truncated from 2347 to 300 lines):

diff -r 173b490c5862 -r 2533d93b5571 distrib/sets/lists/base/mi
--- a/distrib/sets/lists/base/mi        Sun Jun 28 13:33:06 2020 +0000
+++ b/distrib/sets/lists/base/mi        Sun Jun 28 14:26:18 2020 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.1252 2020/06/21 17:15:51 thorpej Exp $
+# $NetBSD: mi,v 1.1253 2020/06/28 14:26:18 fcambus Exp $
 #
 # Note:        Don't delete entries from here - mark them as "obsolete" instead,
 #      unless otherwise stated below.
@@ -5327,6 +5327,11 @@
 ./usr/share/wscons/fonts/latin2.814            base-util-share         share
 ./usr/share/wscons/fonts/latin2.816            base-util-share         share
 ./usr/share/wscons/fonts/orator.816            base-util-share         share
+./usr/share/wscons/fonts/spleen-12x24.fnt      base-util-share         share
+./usr/share/wscons/fonts/spleen-16x32.fnt      base-util-share         share
+./usr/share/wscons/fonts/spleen-32x64.fnt      base-util-share         share
+./usr/share/wscons/fonts/spleen-5x8.fnt                base-util-share         share
+./usr/share/wscons/fonts/spleen-8x16.fnt       base-util-share         share
 ./usr/share/wscons/fonts/vt220h.808            base-util-share         share
 ./usr/share/wscons/fonts/vt220h.810            base-util-share         share
 ./usr/share/wscons/fonts/vt220h.814            base-util-share         share
diff -r 173b490c5862 -r 2533d93b5571 share/wscons/fonts/COPYRIGHT
--- a/share/wscons/fonts/COPYRIGHT      Sun Jun 28 13:33:06 2020 +0000
+++ b/share/wscons/fonts/COPYRIGHT      Sun Jun 28 14:26:18 2020 +0000
@@ -34,4 +34,35 @@
   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
   THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
+
+The font files:
+
+       spleen-5x8.fnt spleen-8x16.fnt spleen-12x24.fnt spleen-16x32.fnt
+       spleen-32x64.fnt
+
+in this directory are
+
+  Copyright (c) 2018-2020, Frederic Cambus
+  All rights reserved.
+
+  Redistribution and use in source and binary forms, with or without
+  modification, are permitted provided that the following conditions are met:
+
+    * Redistributions of source code must retain the above copyright
+      notice, this list of conditions and the following disclaimer.
+
+    * Redistributions in binary form must reproduce the above copyright
+      notice, this list of conditions and the following disclaimer in the
+      documentation and/or other materials provided with the distribution.
+
+  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
+  BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+  POSSIBILITY OF SUCH DAMAGE.
diff -r 173b490c5862 -r 2533d93b5571 share/wscons/fonts/Makefile
--- a/share/wscons/fonts/Makefile       Sun Jun 28 13:33:06 2020 +0000
+++ b/share/wscons/fonts/Makefile       Sun Jun 28 14:26:18 2020 +0000
@@ -1,9 +1,11 @@
-# $NetBSD: Makefile,v 1.10 2010/01/18 16:55:36 ahoka Exp $
+# $NetBSD: Makefile,v 1.11 2020/06/28 14:26:18 fcambus Exp $
 
 FONTS= vt220l.814 vt220h.814 vt220l.808 vt220h.808 \
        vt220l.816 vt220h.816 vt220l.810 vt220h.810 \
        latin2.808 latin2.814 latin2.816 \
-       donna.816 flori.816 orator.816
+       donna.816 flori.816 orator.816 \
+       spleen-5x8.fnt spleen-8x16.fnt spleen-12x24.fnt \
+       spleen-16x32.fnt spleen-32x64.fnt
 
 FILES=${FONTS}
 UUDECODE_FILES=${FONTS}
diff -r 173b490c5862 -r 2533d93b5571 share/wscons/fonts/spleen-12x24.fnt.uue
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/share/wscons/fonts/spleen-12x24.fnt.uue   Sun Jun 28 14:26:18 2020 +0000
@@ -0,0 +1,277 @@
+begin 644 spleen-12x24.fnt
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M```````````````````````&``8`!@`&``8`!@`&``8`!@`&``8```````8`
+M!@```````````````````##`,,`PP##`,,`PP##`````````````````````
+M```````````````````````````````PP##`,,!_X##`,,`PP##`,,`PP##`
+M?^`PP##`,,````````````````````8`!@`?X#8`9@!F`&8`9@`V`!^`!L`&
+M8`9@!F`&8`;`?X`&``8```````````````````````#`.,!M@&V`.P`#``8`
+M!@`,``W`&V`;8#'`,``````````````````````````/`!F`,,`PP##`,,`9
+M@`\`,P!AH&#@8,!@P#'@'S````````````````````8`!@`&``8`!@`&``8`
+M``````````````````````````````````````````````#@`8`#``8`#``,
+M`!@`&``8`!@`&``8`!@`&``,``P`!@`#``&``.```````````'``&``,``8`
+M`P`#``&``8`!@`&``8`!@`&``8`#``,`!@`,`!@`<```````````````````
+M`````````##`&8`/``8`?^`&``\`&8`PP```````````````````````````
+M````````````````!@`&``8`/\`&``8`!@``````````````````````````
+M```````````````````````````````````````&``8`!@`,`!@`````````
+M````````````````````````````````/\``````````````````````````
+M``````````````````````````````````````````````````8`!@``````
+M```````````````P`#``8`!@`,``P`&``8`#``,`!@`&``P`#``8`!@`,``P
+M`&``8``````````````````?@##`8&!@8&#@8>!C8&9@;&!X8'!@8&!@8##`
+M'X`````````````````````````.`!X`-@`F``8`!@`&``8`!@`&``8`!@`&
+M``8`/\`````````````````````````?@##`8&``8`!@`&``P`&``P`&``P`
+M&``P`&!@?^`````````````````````````?@##`8&``8`!@`,`/@`#``&``
+M8`!@`&!@8##`'X````````````````````````!@`&``8`!A@&&`88!A@&&`
+M88!A@'_@`8`!@`&``8````````````````````````!_X&!@8`!@`&``8`!_
+M@`#``&``8`!@`&!@8##`'X`````````````````````````?P#!@8`!@`&``
+M8`!_@&#`8&!@8&!@8&!@8##`'X````````````````````````!_X&!@`&``
+M8`!@`,`!@`,`!@`,``P`#``,``P`#``````````````````````````?@##`
+M8&!@8&!@,,`?@##`8&!@8&!@8&!@8##`'X`````````````````````````?
+M@##`8&!@8&!@8&!@8#!@'^``8`!@`&``8&#`/X``````````````````````
+M```````````````````&``8```````````````8`!@``````````````````
+M```````````````````````&``8````````````&``8`!@`,`!@`````````
+M````````````8`#``8`#``8`#``8`#``&``,``8``P`!@`#``&``````````
+M````````````````````````````?^```````````'_@````````````````
+M```````````````````P`!@`#``&``,``8``P`!@`,`!@`,`!@`,`!@`,```
+M```````````````````````?@##`8&``8`!@`,`!@`,`!@`&``8```````8`
+M!@```````````````````````````!^`,,!@8&!@9V!G8&=@9V!G8&=@9^!@
+M`#``'\`````````````````````````?@##`8&!@8&!@8&!@8'_@8&!@8&!@
+M8&!@8&!@8&````````````````````````!_@&#`8&!@8&!@8&!@P'^`8,!@
+M8&!@8&!@8&#`?X`````````````````````````?X#``8`!@`&``8`!@`&``
+M8`!@`&``8`!@`#``'^````````````````````````!_@&#`8&!@8&!@8&!@
+M8&!@8&!@8&!@8&!@8&#`?X`````````````````````````?X#``8`!@`&``
+M8`!@`'^`8`!@`&``8`!@`#``'^`````````````````````````?X#``8`!@
+M`&``8`!@`'^`8`!@`&``8`!@`&``8``````````````````````````?X#``
+M8`!@`&``8`!@`&/@8&!@8&!@8&!@8#!@'^````````````````````````!@
+M8&!@8&!@8&!@8&!@8'_@8&!@8&!@8&!@8&!@8&``````````````````````
+M```_P`8`!@`&``8`!@`&``8`!@`&``8`!@`&``8`/\``````````````````
+M```````_P`8`!@`&``8`!@`&``8`!@`&``8`!@`&``X`?```````````````
+M``````````!@8&!@8&!@8&!@8,!A@'\`88!@P&!@8&!@8&!@8&``````````
+M``````````````!@`&``8`!@`&``8`!@`&``8`!@`&``8`!@`#``'^``````
+M``````````````````!@8'#@>>!O8&9@8&!@8&!@8&!@8&!@8&!@8&!@8&``
+M``````````````````````!@8'!@<&!X8'A@;&!L8&9@9F!C8&-@8>!AX&#@
+M8.`````````````````````````?@##`8&!@8&!@8&!@8&!@8&!@8&!@8&!@
+M8##`'X````````````````````````!_@&#`8&!@8&!@8&!@P'^`8`!@`&``
+M8`!@`&``8``````````````````````````?@##`8&!@8&!@8&!@8&!@8&!@
+M8&9@9F!C8#/`'X`!@`#``,````````````````!_@&#`8&!@8&!@8&!@P'^`
+M8,!@8&!@8&!@8&!@8&`````````````````````````?X#``8`!@`&``8``P
+M`!^``,``8`!@`&``8`#`?X````````````````````````!_X`8`!@`&``8`
+M!@`&``8`!@`&``8`!@`&``8`!@````````````````````````!@8&!@8&!@
+M8&!@8&!@8&!@8&!@8&!@8&!@8#!@'^````````````````````````!@8&!@
+M8&!@8&!@8&!@8&!@8&!@8##`,,`9@`\`!@````````````````````````!@
+M8&!@8&!@8&!@8&!@8&!@8&!@8&9@;V!YX'#@8&``````````````````````
+M``!@8&!@8&!@8&!@8&`PP!^`,,!@8&!@8&!@8&!@8&``````````````````
+M``````!@8&!@8&!@8&!@8&`P8!_@`&``8`!@`&``8`#@?\``````````````
+M``````````!_X`!@`&``8`#``8`#``8`#``8`#``8`!@`&``?^``````````
+M```````?X!@`&``8`!@`&``8`!@`&``8`!@`&``8`!@`&``8`!@`&``8`!@`
+M&``?X````````,``P`!@`&``,``P`!@`&``,``P`!@`&``,``P`!@`&``,``
+MP`!@`&````````!_@`&``8`!@`&``8`!@`&``8`!@`&``8`!@`&``8`!@`&`
+M`8`!@`&``8!_@`````````0`#@`;`#&`8,#`8```````````````````````
+M````````````````````````````````````````````````````````````
+M``````````````````!_X````````!@`#``&``,`````````````````````
+M`````````````````````````````````````````````````#^``,``8`!@
+M'^`P8&!@8&!@8#!@'^````````````````````````!@`&``8`!@`'^`8,!@
+M8&!@8&!@8&!@8&!@8&#`?X```````````````````````````````````!_@
+M,`!@`&``8`!@`&``8`!@`#``'^``````````````````````````8`!@`&``
+M8!_@,&!@8&!@8&!@8&!@8&!@8#!@'^``````````````````````````````
+M`````!_@,&!@8&!@8&!_X&``8`!@`#``'^`````````````````````````'
+MP`X`#``,``P`#``_@`P`#``,``P`#``,``P`#```````````````````````
+M`````````````!_@,&!@8&!@8&!@8&!@8&!@8#!@'\``P`!@`&``P#^`````
+M``````!@`&``8`!@`'^`8,!@8&!@8&!@8&!@8&!@8&!@8&``````````````
+M```````````&``8``````!X`!@`&``8`!@`&``8`!@`&``8`!X``````````
+M```````````````&``8```````8`!@`&``8`!@`&``8`!@`&``8`!@`&``8`
+M!@`,`'@````````````P`#``,``P`##`,,`Q@#,`/@`V`#,`,8`PP#!@,&``
+M```````````````````````,``P`#``,``P`#``,``P`#``,``P`#``,``X`
+M!\```````````````````````````````````'F`9L!F8&9@9F!F8&9@9F!@
+M8&!@8&```````````````````````````````````'^`8,!@8&!@8&!@8&!@
+M8&!@8&!@8&```````````````````````````````````!^`,,!@8&!@8&!@
+M8&!@8&!@8##`'X```````````````````````````````````'^`8,!@8&!@
+M8&!@8&!@8&!@8&#`?X!@`&``8`!@`&```````````````````````!_@,&!@
+M8&!@8&!@8&!@8&!@8#!@'^``8`!@`&``8`!@`````````````````````!_@
+M,&!@`&``8`!@`&``8`!@`&``8```````````````````````````````````
+M`#_@8`!@`&``8``_P`!@`&``8`!@?\`````````````````````````,``P`
+M#``,`#^`#``,``P`#``,``P`#``,``X`!\``````````````````````````
+M`````````&!@8&!@8&!@8&!@8&!@8&!@8#!@'^``````````````````````
+M`````````````&!@8&!@8&!@8&!@8##`,,`9@`\`!@``````````````````
+M`````````````````&!@8&!@8&9@9F!F8&9@9F!F8#9@&>``````````````
+M`````````````````````&!@8&`PP!F`#P`/`!F`,,`PP&!@8&``````````
+M`````````````````````````&!@8&!@8&!@8&!@8&!@8&!@8#!@'^``8`!@
+M`&``P'^``````````````````````'_@`&``P`&``P`&``P`&``P`&``?^``
+M```````````````!X`,`!@`&``8`!@`&``8`!@`,`#@`.``,``8`!@`&``8`
+M!@`&``8``P`!X```````````!@`&``8`!@`&``8`!@`&``8`!@`&``8`!@`&
+M``8`!@`&``8````````````\``8``P`#``,``P`#``,``P`!@`#@`.`!@`,`
+M`P`#``,``P`#``,`!@`\````````````.&!L8,;`PX``````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M````````````````````````````````````````````````````````````
+M```````````````````````````````````````````````````````&``8`
+M``````8`!@`&``8`!@`&``8`!@`&``8`!@``````````````````````````
+M`````P`#`!_@,P!C`&,`8P!C`&,`8P!C`#,`'^`#``,`````````````````
+M```'``V`&,`8P!@`&``8`'^`&``8`!@`&``P`#``?^``````````````````
+M````````````,,`9@`\`'X`PP##`,,`PP!^`#P`9@##`````````````````
+M``````````!@8&!@,,`PP!F`&8`/``\`!@`_P`8`!@`_P`8`!@``````````
+M````````````!@`&``8`!@`&``8`!@`&```````&``8`!@`&``8`!@`&``8`
+M````````````````#X`9@#&`,``8``X`'X`PP##`,,`PP!^`!P`!@`#`&,`9
+M@!\`````````````````,,`PP```````````````````````````````````
+M```````````````````````````````````?@##`8&!G8&Q@;&!L8&Q@9V!@
+M8##`'X````````````````````\``8`!@`^`&8`9@`^````?@```````````
+M````````````````````````````````````````````````!F`,P!F`,P!F
+M`#,`&8`,P`9@````````````````````````````````````````?^``8`!@
+M`&``8`!@````````````````````````````````````````````````````
+M````'X`````````````````````````````````````````````````?@##`
+M8&!N8&U@;6!N8&U@;6!@8##`'X```````````````````!^`````````````
+M````````````````````````````````````````````````````#P`9@!F`
+M&8`9@`\`````````````````````````````````````````````````````
+M```````&``8`!@`_P`8`!@`&```````_P```````````````````````````
+M#P`9@`&``P`&``P`&8`?@```````````````````````````````````````
+M````#P`9@`&`!P`!@`&`&8`/````````````````````````````````````
+M``````&``P`&``P`````````````````````````````````````````````
+M`````````````````````````&&`88!A@&&`88!A@&&`88!A@'/`;F!@`&``
+M8`!@`&`````````````?X#9@9F!F8&9@9F`V8!Y@!F`&8`9@!F`&8`9@!F``
+M``````````````````````````````````````````8`!@``````````````
+M````````````````````````````````````````````````````````````
+M```````#``,``P`&``P`````````!@`.`!X`!@`&``8`!@`/````````````
+M````````````````````````````````#P`9@!F`&8`9@`\````?@```````
+M````````````````````````````````````````````````````9@`S`!F`
+M#,`&8`S`&8`S`&8``````````````````````!@`.`!X`!@`&``88!C`/8`#
+M``8`#``8`#``9@`&``;`!L`'X`#``,```````````!@`.`!X`!@`&``88!C`
+M/8`#``8`#``8`#/`9F``8`#``8`#``9@!^```````````#P`9@`&`!P`!@!F
+M8#S``8`#``8`#``8`#``9@`&``;`!L`'X`#``,`````````````````&``8`
+M``````8`!@`&``P`&``P`&``8`!@8##`'X``````````````&``,``8````?
+M@##`8&!@8&!@8&!@8'_@8&!@8&!@8&!@8&!@8&```````````````8`#``8`
+M```?@##`8&!@8&!@8&!@8'_@8&!@8&!@8&!@8&!@8&``````````````#P`9
+M@##````?@##`8&!@8&!@8&!@8'_@8&!@8&!@8&!@8&!@8&``````````````
+M'&`_P&.````?@##`8&!@8&!@8&!@8'_@8&!@8&!@8&!@8&!@8&``````````
+M```````PP##````?@##`8&!@8&!@8&!@8'_@8&!@8&!@8&!@8&!@8&``````
+M````````#P`9@!F`#P`?@##`8&!@8&!@8&!@8'_@8&!@8&!@8&!@8&!@8&``
+M```````````````````````?X#,`8P!C`&,`8P!C`'_`8P!C`&,`8P!C`&,`
+M8^`````````````````````````?X#``8`!@`&``8`!@`&``8`!@`&``8`!@
+M`#``'^`#``,``P`&``P`&``,``8````?X#``8`!@`&``8`!@`'^`8`!@`&``
+M8`!@`#``'^```````````````8`#``8````?X#``8`!@`&``8`!@`'^`8`!@
+M`&``8`!@`#``'^``````````````#P`9@##````?X#``8`!@`&``8`!@`'^`
+M8`!@`&``8`!@`#``'^`````````````````PP##````?X#``8`!@`&``8`!@



Home | Main Index | Thread Index | Old Index