Commit graph

18 commits

Author SHA1 Message Date
wiz
3f3998eb59 font-util: update to 1.3.2.
This minor bugfix release fixes crashes of the ucs2any utility when
faced with a poorly-formed bdf font file.

Alan Coopersmith (3):
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      font-util 1.3.2

Emil Velikov (1):
      autogen.sh: use quoted string variables

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

Tobias Stoeckmann (1):
      ucs2any: Fix parser crash on 32 bit
2019-11-13 15:13:37 +00:00
rillig
17e39f419d Fix indentation in buildlink3.mk files.
The actual fix as been done by "pkglint -F */*/buildlink3.mk", and was
reviewed manually.

There are some .include lines that still are indented with zero spaces
although the surrounding .if is indented. This is existing practice.
2018-01-07 13:03:53 +00:00
agc
b9f9b025f5 Add SHA512 digests for distfiles for fonts category
Problems found locating distfiles:
	Package acroread7-chsfont: missing distfile acrobat7-fonts/chsfont.tar.gz
	Package acroread7-font-share: missing distfile acrobat7-fonts/korfont.tar.gz
	Package acroread7-korfont: missing distfile acrobat7-fonts/korfont.tar.gz
	Package acroread9-chtfont: missing distfile acrobat9-fonts/FontPack910_cht_i486-linux.tar.bz2
	Package acroread9-jpnfont: missing distfile acrobat9-fonts/FontPack910_jpn_i486-linux.tar.bz2
	Package cyberbase-ttf: missing distfile cyberbit-ttf/Cyberbase.ZIP
	Package cyberbit-ttf: missing distfile cyberbit-ttf/Cyberbit.ZIP
	Package pixel-sagas-startrek: missing distfile PS_Font_Fontana.zip
	Package pixel-sagas-startrek: missing distfile PS_Font_Montalban.zip
	Package pixel-sagas-startrek: missing distfile PS_Font_Probert.zip
	Package pixel-sagas-startrek: missing distfile PS_Font_Sternbach.zip
	Package pixel-sagas-startrek: missing distfile PS_Font_Trek_Arrowcaps.zip
	Package umefont-ttf: missing distfile umefont_560.tar.xz

Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden).  All existing
SHA1 digests retained for now as an audit trail.
2015-11-03 20:44:27 +00:00
wiz
5b83372149 Update to 1.3.1:
This release fixes the autoconf macros installed for use generating the
other Xorg font packages to respect the $PKG_CONFIG variable that some
build systems, especially cross-compilers, require; and updates the
license notice in map-JISX0201.1976-0 to the current version from
Unicode Consortium.

Adam Jackson (1):
      configure: Drop AM_MAINTAINER_MODE

Alan Coopersmith (3):
      Fix a bunch of clang integer size conversion warnings in ucs2any
      Update map-JISX0201.1976-0 to current version from Unicode Consortium
      font-util 1.3.1

Colin Walters (1):
      autogen.sh: Implement GNOME Build API

Ross Burton (1):
      fontutil.m4.in: use $PKG_CONFIG instead of pkg-config
2015-03-15 20:41:17 +00:00
asau
dfaf1eaae6 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-03 18:28:15 +00:00
obache
b7a37f7b34 Require hacks for fixing autoconf + space in variable name issue. 2012-06-11 05:56:34 +00:00
wiz
f1bb79a47f Update to 1.3.0.
1.3.0:
This release includes a number of bug fixes and code cleanups of
the utilities, as well as improvements to the GNU autoconf macros
for X.Org font packages for cross-compiling support.

Existing font packages will need to have autoreconf run after installing
the new fontutil.m4 to take advantage of the cross-compilation fixes - the
next release of the font packages will include this fix in the configure
scripts distributed in their tarballs.

1.2.0:
This release adds two new options that some of the font packages will
offer in their configure scripts:

  --disable-all-encodings option to the macros used in the bdf font
    packages, to set the default to disabled for all encodings so that
    builders/packagers wanting to build just a subset of encodings can
    start with none and add the ones they want instead of having to disable
    all those they don't want.

  --with-fc-confdir to specify the path to fontconfig's configuration
    files directory (normally /etc/fonts), for packages like bh-ttf that
    install fontconfig configuration snippets.   If not specified,
    the default will be the confdir variable from fontconfig.pc if present
    (which it won't be until the next fontconfig release), otherwise
    ${sysconfdir}/fonts.

Existing font packages will need to have autoreconf run after installing
the new fontutil.m4 to take advantage of this fix - the next release of
the font packages will include this fix in the configure scripts
distributed in their tarballs.
2012-06-10 15:27:41 +00:00
joerg
67083aac94 font-util-1.1.1:
Add a bunch of macros for common code.
Fix passing of hexadecimal arguments to bdftruncate
2010-09-09 18:54:39 +00:00
wiz
da9dac4a68 Update to 1.0.2:
Alan Coopersmith (3):
      Update license of code copyrighted by the NetBSD Foundation
      Add missing copyright/license notices to COPYING
      Add README with pointers to mailing list, bugzilla & git repos

James Cloos (4):
      Rename .cvsignore to .gitignore
      Add *~ to .gitignore to skip patch/emacs droppings
      Replace bdftruncate Perl script with C program
      Replace static ChangeLog with dist-hook to generate from git log

Julien Cristau (1):
      Bump to 1.0.2
2009-08-08 23:19:48 +00:00
wiz
49bdf9ab9d pkglint fix: reorder lines. 2009-08-08 23:18:58 +00:00
joerg
bacea7cad5 Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
joerg
2d1ba244e9 Simply and speed up buildlink3.mk files and processing.
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.
2009-03-20 19:23:50 +00:00
tnn
9f2a42bc6b Switch master site to MASTER_SITE_XORG. 2008-05-24 21:45:14 +00:00
tnn
52daf075cf Needs -lgen on IRIX to get basename(3) 2008-02-20 22:33:18 +00:00
joerg
2b3c50ae39 Replace bdftruncate.pl with a small C program. Original code is
from Martin Husemann with a number of improvements from me.
Bump revision.
2007-08-05 19:20:19 +00:00
joerg
10d92a6634 Fix man page suffix on Linux. List from Alexander Nason on pkgsrc-users. 2007-05-07 20:13:27 +00:00
joerg
d830c51b5b Ride on import: fix Perl reference in bdftruncate. 2006-11-14 21:11:10 +00:00
joerg
3137327882 Import font-util-1.0.1 from pkgsrc-wip, providing bdftruncate and
ucs2any.
2006-11-14 20:15:05 +00:00