~ubuntu-branches/ubuntu/karmic/geda-symbols/karmic

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
;                                                         -*-Scheme-*-
;;;
;;; Define the default gaf font
;;;

(define geda-font-path (build-path geda-data-path "sym" "font"))
(font-directory geda-font-path)

(for-each
 (lambda (fontmap)
   (map-font-character-to-file 
    (car fontmap) 
    (build-path geda-font-path (cdr fontmap))))
 '(
   (" " . "space.sym")
   ("\n" . "newline.sym")
   ("!" . "excl.sym")
   ("," . "comma.sym")
   ("(" . "lparen.sym")
   (")" . "rparen.sym")
   ("-" . "minus.sym")
   ("+" . "plus.sym")
   ("#" . "pound.sym")
   ("?" . "quest.sym")
   ("\"" . "quote.sym")
   (":" . "colon.sym")
   ("@" . "at.sym")
   ("=" . "equal.sym")
   (">" . "more.sym")
   ("<" . "less.sym")
   ("/" . "slash.sym")
   ("$" . "dollar.sym")
   (";" . "semi.sym")
   ("&" . "amper.sym")
   ("\\" . "backslash.sym")
   ("{" . "lbrace.sym")
   ("}" . "rbrace.sym")
   ("'" . "apost.sym")
   ("`" . "backtick.sym")
   ("^" . "caret.sym")
   ("%" . "percent.sym")
   ("[" . "lbrack.sym")
   ("]" . "rbrack.sym")
   ("*" . "astericks.sym")
   (". " . "period.sym")
   ("_" . "under.sym")
   ("~" . "tilde.sym")
   ("|" . "vbar.sym")

   ;; A-umlaut finnish/swedish/german 
   ("Ä" . "A-diaeresis.sym")
   ;; A-ring finnish/swedish/danish/norwegian
   ("Å" . "A-ring.sym")
   ;; AE-diphtong danish/norwegian 
   ("Æ" . "AE-lig.sym")
   ;; O-umlaut finnish/swedish/german
   ("Ö" . "O-diaeresis.sym")
   ;; O-double_acute_accent hungarian 
   ("Ő" . "O-double-acute-accent.sym")
   ;; O-slash danish/norwegian
   ("Ø" . "O-slash.sym")
   ;; U-umlaut german
   ("Ü" . "U-diaeresis.sym")
   ;; U-double_acute_accent hungarian 
   ("Ű" . "U-double-acute-accent.sym")
   ;; a-umlaut finnish/swedish/german 
   ("ä" . "a_-diaeresis.sym")
   ;; a-ring finnish/swedish/danish/norwegian
   ("å" . "a_-ring.sym")
   ;; ae-diphtong danish/norwegian 
   ("æ" . "ae_-lig.sym")
   ;; o-umlaut finnish/swedish/german 
   ("ö" . "o_-diaeresis.sym")
   ;; o-double_acute_accent hungarian 
   ("ő" . "o_-double-acute-accent.sym")
   ;; o-slash danish/norwegian 
   ("ø" . "o_-slash.sym")
   ;; u-umlaut german 
   ("ü" . "u_-diaeresis.sym")
   ;; u-double_acute_accent hungarian 
   ("ű" . "u_-double-acute-accent.sym")
   ;; a-acute_accent spanish 
   ("á" . "a_-acute-accent.sym")
   ;; e-acute_accent spanish
   ("é" . "e_-acute-accent.sym")
   ;; i-acute_accent spanish
   ("í" . "i_-acute-accent.sym")
   ;; o-acute_accent spanish
   ("ó" . "o_-acute-accent.sym")
   ;; u-acute_accent spanish
   ("ú" . "u_-acute-accent.sym")
   ;; A-acute_accent spanish
   ("Á" . "A-acute-accent.sym")
   ;; E-acute_accent spanish
   ("É" . "E-acute-accent.sym")
   ;; I-acute_accent spanish
   ("Í" . "I-acute-accent.sym")
   ;; O-acute_accent spanish
   ("Ó" . "O-acute-accent.sym")
   ;; U-acute_accent spanish
   ("Ú" . "U-acute-accent.sym")
   ;; n-tilde spanish
   ("ñ" . "n_-tilde.sym")
   ;; N-tilde spanish
   ("Ñ" . "N-tilde.sym")
   ;; open exclamation spanish 
   ("¡" . "excl-open.sym")
   ;; open question spanish
   ("¿" . "quest-open.sym")
   ;; 
   ("ą" . "a_-ogonek.sym")
   ("Ą" . "A-ogonek.sym")
   ("ć" . "c_-acute-accent.sym")
   ("Ć" . "C-acute-accent.sym")
   ("ę" . "e_-ogonek.sym")
   ("Ę" . "E-ogonek.sym")
   ("ł" . "l_-slash.sym")
   ("Ł" . "L-slash.sym")
   ("ń" . "n_-acute-accent.sym")
   ("Ń" . "N-acute-accent.sym")
   ("ś" . "s_-acute-accent.sym")
   ("Ś" . "S-acute-accent.sym")
   ("ź" . "z_-acute-accent.sym")
   ("Ź" . "Z-acute-accent.sym")
   ("ż" . "z_-dot.sym")
   ("Ż" . "Z-dot.sym")
   ;; latin sharp s character german
   ("ß" . "s_-sharp.sym")
   ;; small mu character greek
   ("µ" . "mu_.sym")
   ("Ω" . "Omega.sym")
   ))