summaryrefslogtreecommitdiff
path: root/font
diff options
context:
space:
mode:
authorwl <wl>2013-01-17 12:38:16 +0000
committerwl <wl>2013-01-17 12:38:16 +0000
commit77750dd055b52daf9e572485bf6487eb5bc49e4d (patch)
tree9c6b1ae97f87411df139c3791d3725867cafb973 /font
parent1f6e13b55959453afa4b7848a1099346d93870e8 (diff)
downloadgroff-77750dd055b52daf9e572485bf6487eb5bc49e4d.tar.gz
* src/devices/gropdf/gropdf.pl (do_x, do_p, do_s, Set_LWidth): The
grops driver defaults to round linecaps and linejoins, gropdf incorrectly used butt caps and miter joins. (Since the MOM package expects to use butt caps and miter joins (emitting the necessary postscript code to change the caps and joins), gropdf now parses the same postscript commands.) * src/devices/gropdf/gropdf.man: Document the handling of linecaps and linejoins. * tmac/pdf.tmac (pdfbookmark): Fix bug where the current PDFOUTLINE.FOLDLEVEL may not be honoured if warnings of the type macro warning: adjusted level n bookmark; should be <= n Added copyright and mention debt owed to Keith Marshall for original `pdfmark.tmac', upon which `pdf.tmac' is largely based. * font/devpdf/Foundry.in, font/devpdf/util/BuildFoundries.pl (LocateFile): The font for EURO had the wrong entry in the `download' file (it pointed to The font in the build directory, which is wrong). It has always been permissable to include a path along with the font name in the Foundry file, but until now the font had to exist to be valid. It is now permitted to start the path with an asterisk which tells BuildFoundry to use the path/filename in the download file without checking if the font exists. This allows the font to be found in `../devps' even though it is not there during the build (if source and build are different), but will be there after the install.
Diffstat (limited to 'font')
-rw-r--r--font/devpdf/Foundry.in2
-rw-r--r--font/devpdf/util/BuildFoundries.pl1
2 files changed, 2 insertions, 1 deletions
diff --git a/font/devpdf/Foundry.in b/font/devpdf/Foundry.in
index 86d6432c..a6e968f7 100644
--- a/font/devpdf/Foundry.in
+++ b/font/devpdf/Foundry.in
@@ -37,7 +37,7 @@ CB|Y||||NimbusMonL-Bold!n022004l.pfb
CBI|Y||||NimbusMonL-BoldObli!n022024l.pfb
CI|Y||||NimbusMonL-ReguObli!n022023l.pfb
CR|Y||||NimbusMonL-Regu!n022003l.pfb
-EURO|N||||freeeuro.pfa
+EURO|N||||*../devps/freeeuro.pfa
HB|Y||||NimbusSanL-Bold!n019004l.pfb
HBI|Y||||NimbusSanL-BoldItal!n019024l.pfb
HI|Y||||NimbusSanL-ReguItal!n019023l.pfb
diff --git a/font/devpdf/util/BuildFoundries.pl b/font/devpdf/util/BuildFoundries.pl
index 003fdb9b..39f2f0d2 100644
--- a/font/devpdf/util/BuildFoundries.pl
+++ b/font/devpdf/util/BuildFoundries.pl
@@ -219,6 +219,7 @@ sub LocateFile
my $path=shift;
my $files=shift;
my $tryafm=shift;
+ return(substr($files,1)) if substr($files,0,1) eq '*';
foreach my $file (split('!',$files))
{