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
|
Description: Use fonts provided by the fonts-urw-base35 package.
Bug-Debian: https://bugs.debian.org/1035862
Author: Yavor Doganov <yavor@gnu.org>
Forwarded: not-needed
Last-Update: 2023-05-11
---
--- popplerkit.framework-0.0.20051227svn.orig/GNUmakefile
+++ popplerkit.framework-0.0.20051227svn/GNUmakefile
@@ -59,9 +59,6 @@
PopplerCachingRenderer.m \
PopplerKitFunctions.m
-PopplerKit_RESOURCE_FILES = \
- Fonts/*
-
ADDITIONAL_OBJCFLAGS = -Wall -Wno-import -DGNUSTEP
ADDITIONAL_INCLUDE_DIRS = -I./MissingKit
--- popplerkit.framework-0.0.20051227svn.orig/PopplerFontManager.m
+++ popplerkit.framework-0.0.20051227svn/PopplerFontManager.m
@@ -21,20 +21,20 @@
/* Default fonts which are included in the PopplerKit framework */
static NSString* IncludedFonts [] = {
- @"n022003l.pfb", // Courier
- @"n022004l.pfb", // Courier-Bold
- @"n022024l.pfb", // Courier-BoldOblique
- @"n022023l.pfb", // Courier-Oblique
- @"n019003l.pfb", // Helvetica
- @"n019004l.pfb", // Helvetica-Bold
- @"n019024l.pfb", // Helvetica-BoldOblique
- @"n019023l.pfb", // Helvetica-Oblique
- @"s050000l.pfb", // Symbol
- @"n021004l.pfb", // Times-Bold
- @"n021024l.pfb", // Times-BoldItalic
- @"n021023l.pfb", // Times-Italic
- @"n021003l.pfb", // Times-Roman
- @"d050000l.pfb", // ZapfDingbats
+ @"NimbusMonoPS-Regular.pfb",
+ @"NimbusMonoPS-Bold.pfb",
+ @"NimbusMonoPS-BoldItalic.pfb",
+ @"NimbusMonoPS-Italic.pfb",
+ @"NimbusSans-Regular.pfb",
+ @"NimbusSans-Bold.pfb",
+ @"NimbusSans-BoldItalic.pfb",
+ @"NimbusSans-Italic.pfb",
+ @"StandardSymbolsPS.pfb",
+ @"NimbusRoman-Bold.pfb",
+ @"NimbusRoman-BoldItalic.pfb",
+ @"NimbusRoman-Italic.pfb",
+ @"NimbusRoman-Regular.pfb",
+ @"D050000L.pfb",
nil
};
|