[Bug 561908] New: Allow printing of font glyph tables
by gnome-control-center (bugzilla.gnome.org)
If you have any questions why you received this email, please see the text at
the end of this email. Replies to this email are NOT read, please see the text
at the end of this email. You can add comments to this bug at:
http://bugzilla.gnome.org/show_bug.cgi?id=561908
gucharmap | general | Ver: 2.24.x
Summary: Allow printing of font glyph tables
Product: gucharmap
Version: 2.24.x
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: Normal
Component: general
AssignedTo: gucharmap-maint(a)gnome.bugs
ReportedBy: Nicolas.Mailhot(a)LaPoste.net
QAContact: gucharmap-maint(a)gnome.bugs
CC: fedora-fonts-bugs-list(a)redhat.com
GNOME version: Unspecified
GNOME milestone: Unspecified
gucharmap should allow direct printing or export as pdf of the glyph tables of
a font, so they can be used as paper reference or in other contexts where
keeping a gucharmap window open is not possible
--
See http://bugzilla.gnome.org/page.cgi?id=email.html for more info about why you received
this email, why you can't respond via email, how to stop receiving
emails (or reduce the number you receive), and how to contact someone
if you are having problems with the system.
You can add comments to this bug at http://bugzilla.gnome.org/show_bug.cgi?id=561908.
15 years
rpms/linux-libertine-fonts/F-10 .cvsignore, 1.8, 1.9 linux-libertine-fonts.spec, 1.9, 1.10 sources, 1.8, 1.9
by Frank Arnold
Author: farnold
Update of /cvs/pkgs/rpms/linux-libertine-fonts/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26584
Modified Files:
.cvsignore linux-libertine-fonts.spec sources
Log Message:
* Fri Nov 21 2008 Frank Arnold <frank(a)scirocco-5v-turbo.de> 4.1.8-1
- Updated to 4.1.8
- Modified build procedure according to GENERATING.txt
Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/linux-libertine-fonts/F-10/.cvsignore,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- .cvsignore 3 Feb 2008 12:43:04 -0000 1.8
+++ .cvsignore 21 Nov 2008 13:43:53 -0000 1.9
@@ -1 +1 @@
-LinLibertineSRC-2.7.tgz
+LinLibertineSRC-4.1.8.tgz
Index: linux-libertine-fonts.spec
===================================================================
RCS file: /cvs/pkgs/rpms/linux-libertine-fonts/F-10/linux-libertine-fonts.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- linux-libertine-fonts.spec 3 Sep 2008 21:23:24 -0000 1.9
+++ linux-libertine-fonts.spec 21 Nov 2008 13:43:53 -0000 1.10
@@ -1,18 +1,20 @@
%define archivename LinLibertineSRC
%define fontdir %{_datadir}/fonts/linux-libertine
+
Name: linux-libertine-fonts
-Version: 2.7.9
-Release: 2%{?dist}
+Version: 4.1.8
+Release: 1%{?dist}
Summary: Linux Libertine Open Fonts
Group: User Interface/X
License: GPLv2+ with exceptions or OFL
URL: http://linuxlibertine.sf.net
-Source: http://dl.sf.net/linuxlibertine/%{archivename}-2.7.tgz
+Source: http://dl.sf.net/linuxlibertine/%{archivename}-%{version}.tgz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
BuildRequires: fontforge
+
%description
The Linux Libertine Open Fonts are a TrueType font family for practical
use in documents. They were created to provide a free alternative to
@@ -27,9 +29,18 @@
%build
fontforge -script "-" *.sfd <<EOF
i = 1
-while ( i < \$argc )
- Open (\$argv[i], 1)
- Generate (\$fontname + ".ttf")
+while (i < \$argc)
+ Open(\$argv[i], 1)
+ fontname = StrJoin(StrSplit(\$fontname, "O"), "")
+ familyname = StrJoin(StrSplit(\$familyname, " O"), "")
+ fullname = StrJoin(StrSplit(\$fullname, " O"), "")
+ SetFontNames(fontname, familyname, fullname)
+ ScaleToEm(2048)
+ RoundToInt()
+ SetFontOrder(2)
+ SelectAll()
+ AutoInstr()
+ Generate(\$fontname + ".ttf")
Close()
i++
endloop
@@ -38,9 +49,8 @@
%install
rm -rf $RPM_BUILD_ROOT
-
install -d -m 0755 $RPM_BUILD_ROOT%{fontdir}
-install -p -m 0644 *.ttf $RPM_BUILD_ROOT%{fontdir}
+install -p -m 0644 *.ttf $RPM_BUILD_ROOT%{fontdir}
%clean
@@ -49,26 +59,30 @@
%post
if [ -x %{_bindir}/fc-cache ]; then
- %{_bindir}/fc-cache %{_datadir}/fonts
+ %{_bindir}/fc-cache %{fontdir} || :
fi
%postun
-if [ "$1" = "0" ]; then
+if [ $1 -eq 0 ]; then
if [ -x %{_bindir}/fc-cache ]; then
- %{_bindir}/fc-cache %{_datadir}/fonts
+ %{_bindir}/fc-cache %{fontdir} || :
fi
fi
%files
%defattr(644,root,root,755)
-%doc Bugs Readme *.txt
+%doc Readme *.txt
%dir %{fontdir}
%{fontdir}/*.ttf
%changelog
+* Fri Nov 21 2008 Frank Arnold <frank(a)scirocco-5v-turbo.de> 4.1.8-1
+- Updated to 4.1.8
+- Modified build procedure according to GENERATING.txt
+
* Wed Sep 3 2008 Nicolas Mailhot <nicolas.mailhot at laposte.net>
- 2.7.9-2
⚙ Rebuild with pre-F10-freeze fontforge
Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/linux-libertine-fonts/F-10/sources,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sources 3 Feb 2008 12:43:04 -0000 1.8
+++ sources 21 Nov 2008 13:43:53 -0000 1.9
@@ -1 +1 @@
-9a34ee20358d3c5aae7d46ed15e43d73 LinLibertineSRC-2.7.tgz
+e7357378dc803cf6a2823cae032caf24 LinLibertineSRC-4.1.8.tgz
15 years
rpms/linux-libertine-fonts/devel .cvsignore, 1.8, 1.9 linux-libertine-fonts.spec, 1.9, 1.10 sources, 1.8, 1.9
by Frank Arnold
Author: farnold
Update of /cvs/pkgs/rpms/linux-libertine-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17870
Modified Files:
.cvsignore linux-libertine-fonts.spec sources
Log Message:
* Fri Nov 21 2008 Frank Arnold <frank(a)scirocco-5v-turbo.de> 4.1.8-1
- Updated to 4.1.8
- Modified build procedure according to GENERATING.txt
Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/linux-libertine-fonts/devel/.cvsignore,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- .cvsignore 3 Feb 2008 12:43:04 -0000 1.8
+++ .cvsignore 21 Nov 2008 13:14:37 -0000 1.9
@@ -1 +1 @@
-LinLibertineSRC-2.7.tgz
+LinLibertineSRC-4.1.8.tgz
Index: linux-libertine-fonts.spec
===================================================================
RCS file: /cvs/pkgs/rpms/linux-libertine-fonts/devel/linux-libertine-fonts.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- linux-libertine-fonts.spec 3 Sep 2008 21:23:24 -0000 1.9
+++ linux-libertine-fonts.spec 21 Nov 2008 13:14:37 -0000 1.10
@@ -1,18 +1,20 @@
%define archivename LinLibertineSRC
%define fontdir %{_datadir}/fonts/linux-libertine
+
Name: linux-libertine-fonts
-Version: 2.7.9
-Release: 2%{?dist}
+Version: 4.1.8
+Release: 1%{?dist}
Summary: Linux Libertine Open Fonts
Group: User Interface/X
License: GPLv2+ with exceptions or OFL
URL: http://linuxlibertine.sf.net
-Source: http://dl.sf.net/linuxlibertine/%{archivename}-2.7.tgz
+Source: http://dl.sf.net/linuxlibertine/%{archivename}-%{version}.tgz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
BuildRequires: fontforge
+
%description
The Linux Libertine Open Fonts are a TrueType font family for practical
use in documents. They were created to provide a free alternative to
@@ -27,9 +29,18 @@
%build
fontforge -script "-" *.sfd <<EOF
i = 1
-while ( i < \$argc )
- Open (\$argv[i], 1)
- Generate (\$fontname + ".ttf")
+while (i < \$argc)
+ Open(\$argv[i], 1)
+ fontname = StrJoin(StrSplit(\$fontname, "O"), "")
+ familyname = StrJoin(StrSplit(\$familyname, " O"), "")
+ fullname = StrJoin(StrSplit(\$fullname, " O"), "")
+ SetFontNames(fontname, familyname, fullname)
+ ScaleToEm(2048)
+ RoundToInt()
+ SetFontOrder(2)
+ SelectAll()
+ AutoInstr()
+ Generate(\$fontname + ".ttf")
Close()
i++
endloop
@@ -38,9 +49,8 @@
%install
rm -rf $RPM_BUILD_ROOT
-
install -d -m 0755 $RPM_BUILD_ROOT%{fontdir}
-install -p -m 0644 *.ttf $RPM_BUILD_ROOT%{fontdir}
+install -p -m 0644 *.ttf $RPM_BUILD_ROOT%{fontdir}
%clean
@@ -49,26 +59,30 @@
%post
if [ -x %{_bindir}/fc-cache ]; then
- %{_bindir}/fc-cache %{_datadir}/fonts
+ %{_bindir}/fc-cache %{fontdir} || :
fi
%postun
-if [ "$1" = "0" ]; then
+if [ $1 -eq 0 ]; then
if [ -x %{_bindir}/fc-cache ]; then
- %{_bindir}/fc-cache %{_datadir}/fonts
+ %{_bindir}/fc-cache %{fontdir} || :
fi
fi
%files
%defattr(644,root,root,755)
-%doc Bugs Readme *.txt
+%doc Readme *.txt
%dir %{fontdir}
%{fontdir}/*.ttf
%changelog
+* Fri Nov 21 2008 Frank Arnold <frank(a)scirocco-5v-turbo.de> 4.1.8-1
+- Updated to 4.1.8
+- Modified build procedure according to GENERATING.txt
+
* Wed Sep 3 2008 Nicolas Mailhot <nicolas.mailhot at laposte.net>
- 2.7.9-2
⚙ Rebuild with pre-F10-freeze fontforge
Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/linux-libertine-fonts/devel/sources,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sources 3 Feb 2008 12:43:04 -0000 1.8
+++ sources 21 Nov 2008 13:14:38 -0000 1.9
@@ -1 +1 @@
-9a34ee20358d3c5aae7d46ed15e43d73 LinLibertineSRC-2.7.tgz
+e7357378dc803cf6a2823cae032caf24 LinLibertineSRC-4.1.8.tgz
15 years
[Bug 468598] How to add fonts?
by Red Hat Bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
https://bugzilla.redhat.com/show_bug.cgi?id=468598
Nicolas Mailhot <nicolas.mailhot(a)laposte.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |h.pillay(a)ieee.org
--- Comment #3 from Nicolas Mailhot <nicolas.mailhot(a)laposte.net> 2008-11-20 14:46:22 EDT ---
*** Bug 471891 has been marked as a duplicate of this bug. ***
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
15 years
[Bug 457955] Review Request: bonvenocf-fonts - BonvenoCF font
by Red Hat Bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
https://bugzilla.redhat.com/show_bug.cgi?id=457955
--- Comment #11 from Nicolas Mailhot <nicolas.mailhot(a)laposte.net> 2008-11-20 13:55:19 EDT ---
(In reply to comment #10)
> (The tar file says
> output will be .xml.. mines coming .conf..).
Yes, that was a mistake in the documentation, now fixed, thanks for reporting
>How do i decide if a font goes
> Dejau or serif? Thats what i dont know how to decide..
DejaVu Sans is a font name, serif is a generic name.
Is the tar documentation not clear enough on where you should use generics and
where you should use font names?
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
15 years
rpms/artwiz-aleczapka-fonts/F-9 artwiz-aleczapka-fkp-cleanups.patch, NONE, 1.1 artwiz-aleczapka-fonts.spec, 1.4, 1.5
by Tom Callaway
Author: spot
Update of /cvs/extras/rpms/artwiz-aleczapka-fonts/F-9
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv722/F-9
Modified Files:
artwiz-aleczapka-fonts.spec
Added Files:
artwiz-aleczapka-fkp-cleanups.patch
Log Message:
clean up fkp font, bz 472220
artwiz-aleczapka-fkp-cleanups.patch:
--- NEW FILE artwiz-aleczapka-fkp-cleanups.patch ---
diff -up artwiz-aleczapka-en-sources-1.3/fkp.bdf.orig artwiz-aleczapka-en-sources-1.3/fkp.bdf
--- artwiz-aleczapka-en-sources-1.3/fkp.bdf.orig 2008-11-20 12:18:43.000000000 -0500
+++ artwiz-aleczapka-en-sources-1.3/fkp.bdf 2008-11-20 12:18:19.000000000 -0500
@@ -1,7 +1,7 @@
STARTFONT 2.1
FONT -artwiz-fkp-medium-r-normal--16-160-75-75-m-80-ISO8859-1
SIZE 16 75 75
-FONTBOUNDINGBOX 8 16 0 -4
+FONTBOUNDINGBOX 9 16 0 -4
STARTPROPERTIES 21
POINT_SIZE 160
WEIGHT 10
@@ -23,13 +23,13 @@ SPACING "m"
AVERAGE_WIDTH 80
CHARSET_REGISTRY "ISO8859"
CHARSET_ENCODING "1"
-_XMBDFED_INFO "Edited with xmbdfed 4.5."
+_XMBDFED_INFO "Edited with xmbdfed 4.7."
ENDPROPERTIES
CHARS 256
STARTCHAR char0
ENCODING 0
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 7 9 0 0
BITMAP
7C
@@ -44,8 +44,8 @@ C0
ENDCHAR
STARTCHAR char1
ENCODING 1
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 8 10 0 0
BITMAP
3C
@@ -61,8 +61,8 @@ A5
ENDCHAR
STARTCHAR char2
ENCODING 2
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 8 10 0 0
BITMAP
3C
@@ -78,8 +78,8 @@ E7
ENDCHAR
STARTCHAR char3
ENCODING 3
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 7 8 0 0
BITMAP
66
@@ -93,8 +93,8 @@ FE
ENDCHAR
STARTCHAR char4
ENCODING 4
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 7 7 0 1
BITMAP
18
@@ -107,8 +107,8 @@ FE
ENDCHAR
STARTCHAR char5
ENCODING 5
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 8 9 0 0
BITMAP
18
@@ -123,8 +123,8 @@ FF
ENDCHAR
STARTCHAR char6
ENCODING 6
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 8 9 0 0
BITMAP
18
@@ -139,8 +139,8 @@ FF
ENDCHAR
STARTCHAR char7
ENCODING 7
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 4 4 2 2
BITMAP
60
@@ -150,8 +150,8 @@ F0
ENDCHAR
STARTCHAR char8
ENCODING 8
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 8 16 0 -4
BITMAP
FF
@@ -173,8 +173,8 @@ FF
ENDCHAR
STARTCHAR char9
ENCODING 9
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 6 6 1 1
BITMAP
78
@@ -186,8 +186,8 @@ CC
ENDCHAR
STARTCHAR char10
ENCODING 10
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 8 16 0 -4
BITMAP
FF
@@ -209,8 +209,8 @@ FF
ENDCHAR
STARTCHAR char11
ENCODING 11
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 7 10 0 0
BITMAP
0E
@@ -226,8 +226,8 @@ C6
ENDCHAR
STARTCHAR char12
ENCODING 12
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 6 10 1 0
BITMAP
FC
@@ -243,8 +243,8 @@ FC
ENDCHAR
STARTCHAR char13
ENCODING 13
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 7 10 1 0
BITMAP
08
@@ -260,8 +260,8 @@ F8
ENDCHAR
STARTCHAR char14
ENCODING 14
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 7 11 0 -1
BITMAP
18
@@ -278,8 +278,8 @@ F2
ENDCHAR
STARTCHAR char15
ENCODING 15
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 8 9 0 0
BITMAP
18
@@ -294,8 +294,8 @@ DB
ENDCHAR
STARTCHAR char16
ENCODING 16
-SWIDTH 480 0
[...8183 lines suppressed...]
+DWIDTH 9 0
BBX 8 9 0 0
BITMAP
03
@@ -3925,8 +3938,8 @@ C0
ENDCHAR
STARTCHAR char238
ENCODING 238
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 5 10 1 0
BITMAP
38
@@ -3942,8 +3955,8 @@ C0
ENDCHAR
STARTCHAR char239
ENCODING 239
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 7 9 0 0
BITMAP
3C
@@ -3958,8 +3971,8 @@ C6
ENDCHAR
STARTCHAR char240
ENCODING 240
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 7 7 0 1
BITMAP
FE
@@ -3972,8 +3985,8 @@ FE
ENDCHAR
STARTCHAR char241
ENCODING 241
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 6 7 1 1
BITMAP
30
@@ -3986,8 +3999,8 @@ FC
ENDCHAR
STARTCHAR char242
ENCODING 242
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 6 9 1 0
BITMAP
60
@@ -4002,8 +4015,8 @@ FC
ENDCHAR
STARTCHAR char243
ENCODING 243
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 6 9 1 0
BITMAP
18
@@ -4018,8 +4031,8 @@ FC
ENDCHAR
STARTCHAR char244
ENCODING 244
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 5 13 3 -4
BITMAP
70
@@ -4038,8 +4051,8 @@ C0
ENDCHAR
STARTCHAR char245
ENCODING 245
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 5 12 0 0
BITMAP
18
@@ -4057,8 +4070,8 @@ D8
ENDCHAR
STARTCHAR char246
ENCODING 246
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 7 9 0 0
BITMAP
66
@@ -4073,8 +4086,8 @@ CC
ENDCHAR
STARTCHAR char247
ENCODING 247
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 7 5 0 2
BITMAP
76
@@ -4085,8 +4098,8 @@ DC
ENDCHAR
STARTCHAR char248
ENCODING 248
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 5 3 1 7
BITMAP
78
@@ -4095,8 +4108,8 @@ C8
ENDCHAR
STARTCHAR char249
ENCODING 249
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 2 2 3 3
BITMAP
C0
@@ -4104,15 +4117,15 @@ C0
ENDCHAR
STARTCHAR char250
ENCODING 250
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 0 0 0 0
BITMAP
ENDCHAR
STARTCHAR char251
ENCODING 251
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 8 10 0 0
BITMAP
03
@@ -4128,8 +4141,8 @@ F0
ENDCHAR
STARTCHAR char252
ENCODING 252
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 6 5 0 5
BITMAP
FC
@@ -4140,8 +4153,8 @@ C4
ENDCHAR
STARTCHAR char253
ENCODING 253
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 5 5 0 5
BITMAP
78
@@ -4152,8 +4165,8 @@ C8
ENDCHAR
STARTCHAR char254
ENCODING 254
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 5 7 1 1
BITMAP
D8
@@ -4166,8 +4179,8 @@ D8
ENDCHAR
STARTCHAR char255
ENCODING 255
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 0 0 0 0
BITMAP
ENDCHAR
Index: artwiz-aleczapka-fonts.spec
===================================================================
RCS file: /cvs/extras/rpms/artwiz-aleczapka-fonts/F-9/artwiz-aleczapka-fonts.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- artwiz-aleczapka-fonts.spec 2 Aug 2007 16:55:58 -0000 1.4
+++ artwiz-aleczapka-fonts.spec 20 Nov 2008 18:13:26 -0000 1.5
@@ -2,7 +2,7 @@
Name: artwiz-aleczapka-fonts
Version: 1.3
-Release: 5%{?dist}.1
+Release: 6%{?dist}
Summary: Set of (improved) artwiz fonts
Group: User Interface/X
@@ -11,6 +11,7 @@
Source0: http://dl.sf.net/artwizaleczapka/artwiz-aleczapka-en-sources-1.3.tar.bz2
Source1: http://dl.sf.net/artwizaleczapka/artwiz-aleczapka-de-sources-1.3.tar.bz2
Source2: http://dl.sf.net/artwizaleczapka/artwiz-aleczapka-se-sources-1.3.tar.bz2
+Patch0: artwiz-aleczapka-fkp-cleanups.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
@@ -24,7 +25,7 @@
%prep
%setup -q -c %{name}-%{version} -a1 -a2
-
+%patch0 -p0
%build
for lang in de en se; do
@@ -88,6 +89,9 @@
%changelog
+* Thu Nov 20 2008 Tom "spot" Callaway <tcallawa(a)redhat.com> 1.3-6
+- font cleanup on fkp font (bz 472220)
+
* Sat Sep 23 2006 Tom "spot" Callaway <tcallawa(a)redhat.com> 1.3-5
- Rebuilt for FC6
15 years
rpms/artwiz-aleczapka-fonts/devel artwiz-aleczapka-fkp-cleanups.patch, NONE, 1.1 artwiz-aleczapka-fonts.spec, 1.4, 1.5
by Tom Callaway
Author: spot
Update of /cvs/extras/rpms/artwiz-aleczapka-fonts/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv722/devel
Modified Files:
artwiz-aleczapka-fonts.spec
Added Files:
artwiz-aleczapka-fkp-cleanups.patch
Log Message:
clean up fkp font, bz 472220
artwiz-aleczapka-fkp-cleanups.patch:
--- NEW FILE artwiz-aleczapka-fkp-cleanups.patch ---
diff -up artwiz-aleczapka-en-sources-1.3/fkp.bdf.orig artwiz-aleczapka-en-sources-1.3/fkp.bdf
--- artwiz-aleczapka-en-sources-1.3/fkp.bdf.orig 2008-11-20 12:18:43.000000000 -0500
+++ artwiz-aleczapka-en-sources-1.3/fkp.bdf 2008-11-20 12:18:19.000000000 -0500
@@ -1,7 +1,7 @@
STARTFONT 2.1
FONT -artwiz-fkp-medium-r-normal--16-160-75-75-m-80-ISO8859-1
SIZE 16 75 75
-FONTBOUNDINGBOX 8 16 0 -4
+FONTBOUNDINGBOX 9 16 0 -4
STARTPROPERTIES 21
POINT_SIZE 160
WEIGHT 10
@@ -23,13 +23,13 @@ SPACING "m"
AVERAGE_WIDTH 80
CHARSET_REGISTRY "ISO8859"
CHARSET_ENCODING "1"
-_XMBDFED_INFO "Edited with xmbdfed 4.5."
+_XMBDFED_INFO "Edited with xmbdfed 4.7."
ENDPROPERTIES
CHARS 256
STARTCHAR char0
ENCODING 0
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 7 9 0 0
BITMAP
7C
@@ -44,8 +44,8 @@ C0
ENDCHAR
STARTCHAR char1
ENCODING 1
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 8 10 0 0
BITMAP
3C
@@ -61,8 +61,8 @@ A5
ENDCHAR
STARTCHAR char2
ENCODING 2
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 8 10 0 0
BITMAP
3C
@@ -78,8 +78,8 @@ E7
ENDCHAR
STARTCHAR char3
ENCODING 3
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 7 8 0 0
BITMAP
66
@@ -93,8 +93,8 @@ FE
ENDCHAR
STARTCHAR char4
ENCODING 4
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 7 7 0 1
BITMAP
18
@@ -107,8 +107,8 @@ FE
ENDCHAR
STARTCHAR char5
ENCODING 5
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 8 9 0 0
BITMAP
18
@@ -123,8 +123,8 @@ FF
ENDCHAR
STARTCHAR char6
ENCODING 6
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 8 9 0 0
BITMAP
18
@@ -139,8 +139,8 @@ FF
ENDCHAR
STARTCHAR char7
ENCODING 7
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 4 4 2 2
BITMAP
60
@@ -150,8 +150,8 @@ F0
ENDCHAR
STARTCHAR char8
ENCODING 8
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 8 16 0 -4
BITMAP
FF
@@ -173,8 +173,8 @@ FF
ENDCHAR
STARTCHAR char9
ENCODING 9
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 6 6 1 1
BITMAP
78
@@ -186,8 +186,8 @@ CC
ENDCHAR
STARTCHAR char10
ENCODING 10
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 8 16 0 -4
BITMAP
FF
@@ -209,8 +209,8 @@ FF
ENDCHAR
STARTCHAR char11
ENCODING 11
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 7 10 0 0
BITMAP
0E
@@ -226,8 +226,8 @@ C6
ENDCHAR
STARTCHAR char12
ENCODING 12
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 6 10 1 0
BITMAP
FC
@@ -243,8 +243,8 @@ FC
ENDCHAR
STARTCHAR char13
ENCODING 13
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 7 10 1 0
BITMAP
08
@@ -260,8 +260,8 @@ F8
ENDCHAR
STARTCHAR char14
ENCODING 14
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 7 11 0 -1
BITMAP
18
@@ -278,8 +278,8 @@ F2
ENDCHAR
STARTCHAR char15
ENCODING 15
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 8 9 0 0
BITMAP
18
@@ -294,8 +294,8 @@ DB
ENDCHAR
STARTCHAR char16
ENCODING 16
-SWIDTH 480 0
[...8183 lines suppressed...]
+DWIDTH 9 0
BBX 8 9 0 0
BITMAP
03
@@ -3925,8 +3938,8 @@ C0
ENDCHAR
STARTCHAR char238
ENCODING 238
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 5 10 1 0
BITMAP
38
@@ -3942,8 +3955,8 @@ C0
ENDCHAR
STARTCHAR char239
ENCODING 239
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 7 9 0 0
BITMAP
3C
@@ -3958,8 +3971,8 @@ C6
ENDCHAR
STARTCHAR char240
ENCODING 240
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 7 7 0 1
BITMAP
FE
@@ -3972,8 +3985,8 @@ FE
ENDCHAR
STARTCHAR char241
ENCODING 241
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 6 7 1 1
BITMAP
30
@@ -3986,8 +3999,8 @@ FC
ENDCHAR
STARTCHAR char242
ENCODING 242
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 6 9 1 0
BITMAP
60
@@ -4002,8 +4015,8 @@ FC
ENDCHAR
STARTCHAR char243
ENCODING 243
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 6 9 1 0
BITMAP
18
@@ -4018,8 +4031,8 @@ FC
ENDCHAR
STARTCHAR char244
ENCODING 244
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 5 13 3 -4
BITMAP
70
@@ -4038,8 +4051,8 @@ C0
ENDCHAR
STARTCHAR char245
ENCODING 245
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 5 12 0 0
BITMAP
18
@@ -4057,8 +4070,8 @@ D8
ENDCHAR
STARTCHAR char246
ENCODING 246
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 7 9 0 0
BITMAP
66
@@ -4073,8 +4086,8 @@ CC
ENDCHAR
STARTCHAR char247
ENCODING 247
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 7 5 0 2
BITMAP
76
@@ -4085,8 +4098,8 @@ DC
ENDCHAR
STARTCHAR char248
ENCODING 248
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 5 3 1 7
BITMAP
78
@@ -4095,8 +4108,8 @@ C8
ENDCHAR
STARTCHAR char249
ENCODING 249
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 2 2 3 3
BITMAP
C0
@@ -4104,15 +4117,15 @@ C0
ENDCHAR
STARTCHAR char250
ENCODING 250
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 0 0 0 0
BITMAP
ENDCHAR
STARTCHAR char251
ENCODING 251
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 8 10 0 0
BITMAP
03
@@ -4128,8 +4141,8 @@ F0
ENDCHAR
STARTCHAR char252
ENCODING 252
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 6 5 0 5
BITMAP
FC
@@ -4140,8 +4153,8 @@ C4
ENDCHAR
STARTCHAR char253
ENCODING 253
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 5 5 0 5
BITMAP
78
@@ -4152,8 +4165,8 @@ C8
ENDCHAR
STARTCHAR char254
ENCODING 254
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 5 7 1 1
BITMAP
D8
@@ -4166,8 +4179,8 @@ D8
ENDCHAR
STARTCHAR char255
ENCODING 255
-SWIDTH 480 0
-DWIDTH 8 0
+SWIDTH 540 0
+DWIDTH 9 0
BBX 0 0 0 0
BITMAP
ENDCHAR
Index: artwiz-aleczapka-fonts.spec
===================================================================
RCS file: /cvs/extras/rpms/artwiz-aleczapka-fonts/devel/artwiz-aleczapka-fonts.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- artwiz-aleczapka-fonts.spec 2 Aug 2007 16:55:58 -0000 1.4
+++ artwiz-aleczapka-fonts.spec 20 Nov 2008 18:13:26 -0000 1.5
@@ -2,7 +2,7 @@
Name: artwiz-aleczapka-fonts
Version: 1.3
-Release: 5%{?dist}.1
+Release: 6%{?dist}
Summary: Set of (improved) artwiz fonts
Group: User Interface/X
@@ -11,6 +11,7 @@
Source0: http://dl.sf.net/artwizaleczapka/artwiz-aleczapka-en-sources-1.3.tar.bz2
Source1: http://dl.sf.net/artwizaleczapka/artwiz-aleczapka-de-sources-1.3.tar.bz2
Source2: http://dl.sf.net/artwizaleczapka/artwiz-aleczapka-se-sources-1.3.tar.bz2
+Patch0: artwiz-aleczapka-fkp-cleanups.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
@@ -24,7 +25,7 @@
%prep
%setup -q -c %{name}-%{version} -a1 -a2
-
+%patch0 -p0
%build
for lang in de en se; do
@@ -88,6 +89,9 @@
%changelog
+* Thu Nov 20 2008 Tom "spot" Callaway <tcallawa(a)redhat.com> 1.3-6
+- font cleanup on fkp font (bz 472220)
+
* Sat Sep 23 2006 Tom "spot" Callaway <tcallawa(a)redhat.com> 1.3-5
- Rebuilt for FC6
15 years