head 1.2;
access;
symbols
pkgsrc-2019Q1:1.1.0.24
pkgsrc-2019Q1-base:1.1
pkgsrc-2018Q4:1.1.0.22
pkgsrc-2018Q4-base:1.1
pkgsrc-2018Q3:1.1.0.20
pkgsrc-2018Q3-base:1.1
pkgsrc-2018Q2:1.1.0.18
pkgsrc-2018Q2-base:1.1
pkgsrc-2018Q1:1.1.0.16
pkgsrc-2018Q1-base:1.1
pkgsrc-2017Q4:1.1.0.14
pkgsrc-2017Q4-base:1.1
pkgsrc-2017Q3:1.1.0.12
pkgsrc-2017Q3-base:1.1
pkgsrc-2017Q2:1.1.0.8
pkgsrc-2017Q2-base:1.1
pkgsrc-2017Q1:1.1.0.6
pkgsrc-2017Q1-base:1.1
pkgsrc-2016Q4:1.1.0.4
pkgsrc-2016Q4-base:1.1
pkgsrc-2016Q3:1.1.0.2
pkgsrc-2016Q3-base:1.1;
locks; strict;
comment @# @;
1.2
date 2019.04.01.16.48.37; author ryoon; state dead;
branches;
next 1.1;
commitid J5Od7aCJklJHpFhB;
1.1
date 2016.08.03.10.31.28; author leot; state Exp;
branches;
next ;
commitid yUHvmbHuGqXexQgz;
desc
@@
1.2
log
@Update to 1.22.4
Changelog:
VERSION 1.22.4
==============
Troff
-----
o The `hy' request has been extended. Value 16 enables hyphenation before
the last character, and value 32 enables hyphenation after the first
character.
PDFPIC
------
o PDFPIC has been corrected so the behaviour is the same whether you use the
PostScript or PDF drivers. However, this means that any documents which
were written using the old behaviour will not be rendered correctly if
using the PDF driver with the new version.
The change would mean that documents which relied on the previous
behaviour are likely to have a gap underneath the image which was not
there before. If you see this effect there are three ways you can restore
the previous behaviour:
Add the line ".nr PDFPIC_NOSPACE 1" to the document before the first call
to .PDFPIC.
If it is just a single document which exhibits this behaviour you can run
groff adding "-rPDFPIC_NOSPACE=1" to the command line.
If you have many documents which rely on the previous behaviour you can
set an environment variable "export GROFF_PDFPIC_NOSPACE=1" which will
restore the previous behaviour for all runs.
Note that this change has no effect if you were using .PDFPIC with the
PostScript driver--only if you used it with the PDF driver.
Gropdf
------
o Type 1 font loading is fixed to handle newer Ghostscript versions.
o Handling of glyphs above position 255 is improved to allow many more
glyphs to be used.
o New macros .pdftransition and .pdfpause are introduced to allow creation
of presentation slides. Partially backward-compatible with present.tmac,
specifically the PAUSE, BLOCKS and BLOCKE commands. Supports all the
transition types introduced in PDF v1.5 (see the gropdf man page).
Miscellaneous
-------------
o A new 'configure' option --with-compatibility-wrappers controls how groff
compatibility wrappers for vendor-provided non-GNU macro sets are
installed (see ./configure --help).
o eqn2graph, grap2graph, and pic2graph now attempt to adapt to very old
installed versions of the ImageMagick and GraphicsMagick programs
"convert". They search the output of convert's "-help" option, and use
"-trim" if that string is found; otherwise, the old "-crop 0x0" method
(which produces incompatible results on versions that _do_ support
"-trim") is used. The programs emit a warning to standard error if the
search fails and the old method is used.
o eqn2graph no longer supports the "-unsafe" option. It did nothing.
o groffer now supports the output of XHTML. Use the "--xhtml" or
"--mode=xhtml" command-line options to generate it.
o Much work has been done, and is ongoing, to make groff's man pages better
examples for man page writers to follow. groff_man(7) itself has been
expanded and largely rewritten to more precisely document the macro
package's behavior and to be more helpful and accessible to man page
writers who may never read any other groff documentation.
@
text
@$NetBSD: patch-font_devpdf_Makefile.sub,v 1.1 2016/08/03 10:31:28 leot Exp $
Solaris find(1) doesn't have -maxdepth. Adapt new logic from upstream that
avoid to use find for that (this will not needed for future groff version).
pkg/51332
--- font/devpdf/Makefile.sub.orig 2014-11-04 08:38:35.427521472 +0000
+++ font/devpdf/Makefile.sub
@@@@ -21,9 +21,7 @@@@
# along with this program. If not, see .
DEV=pdf
-GROFF_FONT_FILES=`cd $(top_builddir)/font/devpdf \
- && find * -maxdepth 0 -type f ! -name 'Makefile.sub*' \
- -exec grep -l internalname {} \;`
+GROFF_FONT_FILES=`cd $(top_builddir)/font/devpdf && grep -l internalname * | grep -v Makefile.sub`
ENC_FILES=`cd $(top_builddir)/font/devpdf; ls enc/*`
MAP_FILES=`cd $(top_builddir)/font/devpdf; ls map/*`
@
1.1
log
@Instead of using find(1) in font/devpdf/Makefile.sub just use grep(1) following
what upstream does (`-maxdepth' option can be problematic on some platforms).
Should fix pkg/51332 reported by Hiroshi Hakoyama
From
@
text
@d1 1
a1 1
$NetBSD$
@