The NetBSD Project

CVS log for pkgsrc/fonts/mkfontscale/distinfo

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / fonts / mkfontscale

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.25: download - view: text, markup, annotated - select for diffs
Sun Mar 3 20:59:18 2024 UTC (13 months, 2 weeks ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2025Q1-base, pkgsrc-2025Q1, pkgsrc-2024Q4-base, pkgsrc-2024Q4, pkgsrc-2024Q3-base, pkgsrc-2024Q3, pkgsrc-2024Q2-base, pkgsrc-2024Q2, pkgsrc-2024Q1-base, pkgsrc-2024Q1, HEAD
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +4 -4 lines
mkfontscale: update to 1.2.3.

This release switches to the use of pkg-config to find the zlib library.
For platforms like darwin that don't ship zlib.pc, you can specify
ZLIB_CFLAGS and ZLIB_LIBS in the build environment to bypass this.

For those building for 32-bit platforms, it also enables use of the
"large file" APIs - while font files should never be more than 2gb in size,
they may be stored on filesystems with large inodes.

Since this release was generated using the new GNU autoconf 2.72, this
also adds a --enable-year2038 configure flag which may allow mkfontscale
to work with files whose timestamps are later than January 19, 2038, but
this has not been tested.

Alan Coopersmith (12):
      configure: Use pkg-config to find zlib
      configure: Use AC_SYS_LARGEFILE to enable large file support
      gitlab CI: stop requiring Signed-off-by in commits
      Remove "All rights reserved" from Oracle copyright notices
      Convert to X.Org standard code style
      doDirectory: add missing check for malloc() returning NULL
      mkfontscale.c: handle -Wshadow warnings from gcc
      ident.c: clear -Wdeclaration-after-statement warning
      Variable scope reductions as recommended by cppcheck
      Resolve some -Wsign-conversion warnings from clang
      Fix -Wimplicit-float-conversion warnings from clang
      mkfontscale 1.2.3

Jeremy Huddleston Sequoia (2):
      configure: Move check for zlib into its own section
      Address a UBSan warning about int left shift overflow

Revision 1.24: download - view: text, markup, annotated - select for diffs
Sun Apr 3 19:36:41 2022 UTC (3 years ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2023Q4-base, pkgsrc-2023Q4, pkgsrc-2023Q3-base, pkgsrc-2023Q3, pkgsrc-2023Q2-base, pkgsrc-2023Q2, pkgsrc-2023Q1-base, pkgsrc-2023Q1, pkgsrc-2022Q4-base, pkgsrc-2022Q4, pkgsrc-2022Q3-base, pkgsrc-2022Q3, pkgsrc-2022Q2-base, pkgsrc-2022Q2
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +4 -4 lines
mkfontscale: update to 1.2.2.

Alan Coopersmith (4):
      Fix spelling/wording issues
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      mkfontscale 1.2.2

Maya Rashish (2):
      Use case insensitive comparison for T1 font weight
      Add "ExtraBold" as a valid T1 font weight.

Revision 1.23: download - view: text, markup, annotated - select for diffs
Tue Oct 26 10:27:19 2021 UTC (3 years, 5 months ago) by nia
Branches: MAIN
CVS tags: pkgsrc-2022Q1-base, pkgsrc-2022Q1, pkgsrc-2021Q4-base, pkgsrc-2021Q4
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +2 -2 lines
fonts: Replace RMD160 checksums with BLAKE2s checksums

All checksums have been double-checked against existing RMD160 and
SHA512 hashes

Revision 1.22: download - view: text, markup, annotated - select for diffs
Thu Oct 7 14:04:08 2021 UTC (3 years, 6 months ago) by nia
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +1 -2 lines
fonts: Remove SHA1 hashes for distfiles

Revision 1.21: download - view: text, markup, annotated - select for diffs
Thu Mar 21 09:50:52 2019 UTC (6 years, 1 month ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2021Q3-base, pkgsrc-2021Q3, pkgsrc-2021Q2-base, pkgsrc-2021Q2, pkgsrc-2021Q1-base, pkgsrc-2021Q1, pkgsrc-2020Q4-base, pkgsrc-2020Q4, pkgsrc-2020Q3-base, pkgsrc-2020Q3, pkgsrc-2020Q2-base, pkgsrc-2020Q2, pkgsrc-2020Q1-base, pkgsrc-2020Q1, pkgsrc-2019Q4-base, pkgsrc-2019Q4, pkgsrc-2019Q3-base, pkgsrc-2019Q3, pkgsrc-2019Q2-base, pkgsrc-2019Q2, pkgsrc-2019Q1-base, pkgsrc-2019Q1
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +5 -5 lines
mkfontscale: update to 1.2.1.

This release fixes a regression introduced in the 1.2.0 release that could
leave the mkfontdir script containing an unexpanded reference to ${exec_prefix}
as shown in https://gitlab.freedesktop.org/xorg/app/mkfontscale/issues/5 .

Alan Coopersmith (2):
      Revert "Use autoconf instead of sed to substitute @bindir@ in mkfontdir.in"
      mkfontscale 1.2.1

Revision 1.20: download - view: text, markup, annotated - select for diffs
Mon Mar 4 11:47:22 2019 UTC (6 years, 1 month ago) by wiz
Branches: MAIN
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +5 -5 lines
mkfontscale: update to 1.2.0.

Starting with this release, 1.2.0, it now includes the mkfontdir script
previously distributed separately for compatibility with older X11 versions.
(The entries below starting with 'mkfontdir: ' represent the git commits
grafted from the mkfontdir repo and were all included in the mkfontdir 1.0.7
or earlier releases.)


Adam Jackson (1):
      mkfontdir: Find mkfontscale through @bindir@ rather than AC_PATH_PROG, since the one in the path could be from an old install that doesn't support all the needed flags.

Alan Coopersmith (20):
      Remove last use of strcat
      Replace dsprintf("%s", s) with strdup(s)
      Use vasprintf(), if available, to implement dsprintf()
      Rename variable 'n' to avoid shadowing another 'n' in doDirectory
      Stop shadowing 'found' in checkExtraEncoding()
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      Clear some -Wsign-compare warnings from gcc 7
      Clear some -Wshorten-64-to-32 warnings from clang 6
      mkfontdir: Add references to mkfontscale to man page
      mkfontdir: Fill in COPYING file with copyright/license notices
      mkfontdir: Fix formatting of man page so ellipsis are shown with Solaris nroff
      mkfontdir: Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
      mkfontdir: config: Remove unnecessary calls from configure.ac
      mkfontdir: Drop CVS version tag from mkfontdir.cpp too
      mkfontdir: Make Makefile.am compatible with Solaris make
      Add mkfontdir to README.md
      Use autoconf instead of sed to substitute @bindir@ in mkfontdir.in
      Add mkfontdir to .gitignore
      mkfontscale 1.2.0

Bernhard M. Wiedemann (1):
      Sort input file list

Egbert Eich (5):
      mkfontdir: Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
      mkfontdir: readding XFree86's cvs IDs
      mkfontdir: Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
      mkfontdir: Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
      mkfontdir: Merging XORG-CURRENT into trunk

Gaetan Nadon (3):
      mkfontdir: man: remove trailing spaces and tabs
      mkfontdir: config: move man pages into their own directory
      mkfontdir: config: substitute bindir in mkfontdir using Autoconf @bindir@

Jeremy Huddleston (1):
      mkfontdir: Fix issues where mkfontscale and mkfontdir are installed in different locations or bindir contains a space

Jesse Adkins (1):
      mkfontdir: Purge cvs tags.

Jon TURNEY (1):
      mkfontdir: Fix for non-srcdir builds

Kaleb Keithley (3):
      mkfontdir: R6.6 is the Xorg base-line
      mkfontdir: XFree86 4.3.0.1
      mkfontdir: Initial revision

Kevin E Martin (1):
      mkfontdir: Add build system for bdftopcf, mkfontdir and mkfontscale

Matthieu Herrb (2):
      mkfontdir: build fix for non-GNU make
      mkfontdir: Let BSD make find mkfontdir.cpp when building in a separate obj dir

Thomas Klausner (1):
      Add new ConstList functions and use them.

Revision 1.19: download - view: text, markup, annotated - select for diffs
Wed Mar 7 12:15:15 2018 UTC (7 years, 1 month ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2018Q4-base, pkgsrc-2018Q4, pkgsrc-2018Q3-base, pkgsrc-2018Q3, pkgsrc-2018Q2-base, pkgsrc-2018Q2, pkgsrc-2018Q1-base, pkgsrc-2018Q1
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +5 -5 lines
mkfontscale: update to 1.1.3.

Alan Coopersmith (1):
      mkfontscale 1.1.3

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

Jeremy Huddleston Sequoia (1):
      mkfontscale: Avoid a buffer underrun

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

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

Stefan Dirsch (1):
      fix handling of Type1 fonts without /FamilyName and/or /FullName

Revision 1.18: download - view: text, markup, annotated - select for diffs
Tue Nov 3 20:44:37 2015 UTC (9 years, 5 months ago) by agc
Branches: MAIN
CVS tags: pkgsrc-2017Q4-base, pkgsrc-2017Q4, pkgsrc-2017Q3-base, pkgsrc-2017Q3, pkgsrc-2017Q2-base, pkgsrc-2017Q2, pkgsrc-2017Q1-base, pkgsrc-2017Q1, pkgsrc-2016Q4-base, pkgsrc-2016Q4, pkgsrc-2016Q3-base, pkgsrc-2016Q3, pkgsrc-2016Q2-base, pkgsrc-2016Q2, pkgsrc-2016Q1-base, pkgsrc-2016Q1, pkgsrc-2015Q4-base, pkgsrc-2015Q4
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +2 -1 lines
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.

Revision 1.17: download - view: text, markup, annotated - select for diffs
Sat Jan 17 09:12:53 2015 UTC (10 years, 3 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2015Q3-base, pkgsrc-2015Q3, pkgsrc-2015Q2-base, pkgsrc-2015Q2, pkgsrc-2015Q1-base, pkgsrc-2015Q1
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +4 -4 lines
Update to 1.1.2:

This minor maintenance release provides the usual set of accumulated
build configuration improvements, compiler & static analyzer warning
fixes, and other janitorial cleanups.

Alan Coopersmith (8):
      Add missing newline to usage output
      Add -v flag to print program version
      Make usage() always exit(1)
      Print which option was in error along with usage message
      configure: Drop AM_MAINTAINER_MODE
      autogen.sh: Honor NOCONFIGURE=1
      Remove extraneous duplicate checks for -r & -n options
      mkfontscale 1.1.2

Jeremy Huddleston Sequoia (2):
      Plug a memory leak found by clang static analysis
      Fix possible malloc allocation error found by clang static analysis

Thomas Klausner (1):
      Only include config.h if it exists.

Revision 1.16: download - view: text, markup, annotated - select for diffs
Wed Jul 17 21:46:49 2013 UTC (11 years, 9 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2014Q4-base, pkgsrc-2014Q4, pkgsrc-2014Q3-base, pkgsrc-2014Q3, pkgsrc-2014Q2-base, pkgsrc-2014Q2, pkgsrc-2014Q1-base, pkgsrc-2014Q1, pkgsrc-2013Q4-base, pkgsrc-2013Q4, pkgsrc-2013Q3-base, pkgsrc-2013Q3
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +4 -4 lines
Update to 1.1.1:

This minor maintenance release prefers direct files over symlinks when both
appear in the same directory, and includes a number of minor code cleanups
and adds a couple previously missing options to the man page.

Alan Coopersmith (3):
      Since hash() returns unsigned int, store results in unsigned ints
      Replace malloc(strlen);strcpy() calls with strdup
      mkfontscale 1.1.1

Egbert Eich (2):
      Prefer original file over symlink (v2)
      Fix compilation for MinGW

Peter Hutterer (1):
      Document -u/-U options in man page

Thomas Klausner (1):
      Protect config.h inclusion like usual.

Revision 1.15: download - view: text, markup, annotated - select for diffs
Sun Jun 3 17:22:08 2012 UTC (12 years, 10 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2013Q2-base, pkgsrc-2013Q2, pkgsrc-2013Q1-base, pkgsrc-2013Q1, pkgsrc-2012Q4-base, pkgsrc-2012Q4, pkgsrc-2012Q3-base, pkgsrc-2012Q3, pkgsrc-2012Q2-base, pkgsrc-2012Q2
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +4 -4 lines
Update to 1.1.0:
This minor feature release adds support for the 'ExtraLight' and 'Heavy'
weights in Type 1 fonts generated by FontForge, and recognizes the fonts
from the Culmus project <http://culmus.sourceforge.net>, mapping them to
the XLFD foundry name "culmus".

Revision 1.14: download - view: text, markup, annotated - select for diffs
Tue Oct 25 07:08:40 2011 UTC (13 years, 5 months ago) by mef
Branches: MAIN
CVS tags: pkgsrc-2012Q1-base, pkgsrc-2012Q1, pkgsrc-2011Q4-base, pkgsrc-2011Q4
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +4 -4 lines
	Based on PR pkg/45460, update mkfontscale 1.0.7 to 1.0.9.

	  The list of Changes are in ChangeLog. The size of text
        reaches about 5kB after edit. Please look at the file,
        mkfontscale-1.0.9/ChangeLog for the detail.

Revision 1.13: download - view: text, markup, annotated - select for diffs
Mon Nov 9 19:28:21 2009 UTC (15 years, 5 months ago) by tnn
Branches: MAIN
CVS tags: pkgsrc-2011Q3-base, pkgsrc-2011Q3, pkgsrc-2011Q2-base, pkgsrc-2011Q2, pkgsrc-2011Q1-base, pkgsrc-2011Q1, pkgsrc-2010Q4-base, pkgsrc-2010Q4, pkgsrc-2010Q3-base, pkgsrc-2010Q3, pkgsrc-2010Q2-base, pkgsrc-2010Q2, pkgsrc-2010Q1-base, pkgsrc-2010Q1, pkgsrc-2009Q4-base, pkgsrc-2009Q4
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +4 -4 lines
Update to mkfontscale-1.0.7. Changes:
Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
Add link to SubmittingPatches wiki page to README
Silence sparse warnings and update .gitignore.

Revision 1.12: download - view: text, markup, annotated - select for diffs
Wed Jan 7 12:43:51 2009 UTC (16 years, 3 months ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2009Q3-base, pkgsrc-2009Q3, pkgsrc-2009Q2-base, pkgsrc-2009Q2, pkgsrc-2009Q1-base, pkgsrc-2009Q1
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +4 -4 lines
Update to 1.0.6:
Alan Coopersmith (6):
      Add support for bzip2 compressed fonts if configured --with-bzip2
      Use XORG_CWARNFLAGS & XORG_CHANGELOG from xorg-macros 1.2
      Add basic README with URL's of git, bugzilla & mailing list
      Add hooks for checking sources with lint/sparse/etc.
      man page typo fix
      Version 1.0.6

Revision 1.11: download - view: text, markup, annotated - select for diffs
Mon May 19 03:00:19 2008 UTC (16 years, 11 months ago) by bjs
Branches: MAIN
CVS tags: pkgsrc-2008Q4-base, pkgsrc-2008Q4, pkgsrc-2008Q3-base, pkgsrc-2008Q3, pkgsrc-2008Q2-base, pkgsrc-2008Q2, cwrapper, cube-native-xorg-base, cube-native-xorg
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +4 -4 lines

Update to mkfontscale 1.0.5.  Changes since 1.0.4:

    Fix handling of OpenType/CFF fonts with embedded bitmaps.
    The old workaround would trigger with CFF fonts with embedded bitmaps.
    We now explicitly check for the font format being TrueType.
    Reported by Andrey V. Panov.

    Remove doubly included header.

    Add bdf and pcf to font priority table.
    This mirrors the behaviour of the old mkfontdir, which prefers pcf to
    bdf fonts.

    Fix typo in mkfontscale.c.
    This spurious break statement disabled checking for Apple and ISO Unicode
    CMaps in SFNT fonts.  Thanks to Alan Coopersmith and Stefan Dirsch.

    Compile warning fixes.

    Include headers for proper prototypes and "ansify" makeHashTable.

Revision 1.10: download - view: text, markup, annotated - select for diffs
Thu Apr 17 21:10:10 2008 UTC (17 years ago) by wiz
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +4 -5 lines
Update to 1.0.4:

Adam Jackson (2):
      Bug #11337: Use strcasecmp() instead of broken open-coded version.
      mkfontscale 1.0.4

Alan Coopersmith (2):
      Convert (1) to (__appmansuffix__) in man page
      Fix typo in man page

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

Revision 1.9: download - view: text, markup, annotated - select for diffs
Sun Mar 18 20:30:07 2007 UTC (18 years, 1 month ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2008Q1-base, pkgsrc-2008Q1, pkgsrc-2007Q4-base, pkgsrc-2007Q4, pkgsrc-2007Q3-base, pkgsrc-2007Q3, pkgsrc-2007Q2-base, pkgsrc-2007Q2, pkgsrc-2007Q1-base, pkgsrc-2007Q1
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +5 -4 lines
Update to 1.0.3, changes unknown.

Revision 1.8: download - view: text, markup, annotated - select for diffs
Fri Nov 3 16:43:17 2006 UTC (18 years, 5 months ago) by joerg
Branches: MAIN
CVS tags: pkgsrc-2006Q4-base, pkgsrc-2006Q4
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +4 -6 lines
Readd mkfontscale, this time the version from modular Xorg.

Revision 1.1.1.2 (vendor branch): download - view: text, markup, annotated - select for diffs
Fri Nov 3 16:41:30 2006 UTC (18 years, 5 months ago) by joerg
Branches: TNF
CVS tags: pkgsrc-base
Diff to: previous 1.1.1.1: preferred, colored
Changes since revision 1.1.1.1: +4 -5 lines
Import the standalone mkfontscale from modular Xorg.

Revision 1.7
Fri Apr 22 18:56:48 2005 UTC (20 years ago) by wiz
Branches: MAIN
CVS tags: pkgsrc-2006Q3-base, pkgsrc-2006Q3, pkgsrc-2006Q2-base, pkgsrc-2006Q2, pkgsrc-2006Q1-base, pkgsrc-2006Q1, pkgsrc-2005Q4-base, pkgsrc-2005Q4, pkgsrc-2005Q3-base, pkgsrc-2005Q3, pkgsrc-2005Q2-base, pkgsrc-2005Q2
FILE REMOVED
Changes since revision 1.6: +1 -1 lines
Remove mkfontscale -- nowadays included in both XFree86 and x.org
distributions. Ok by maintainer, rxg.

Revision 1.6: download - view: text, markup, annotated - select for diffs
Wed Feb 23 19:18:28 2005 UTC (20 years, 1 month ago) by agc
Branches: MAIN
CVS tags: pkgsrc-2005Q1-base, pkgsrc-2005Q1
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +2 -1 lines
Add RMD160 digests to the SHA1 ones.

Revision 1.5: download - view: text, markup, annotated - select for diffs
Tue Sep 9 07:44:57 2003 UTC (21 years, 7 months ago) by itojun
Branches: MAIN
CVS tags: pkgsrc-2004Q4-base, pkgsrc-2004Q4, pkgsrc-2004Q3-base, pkgsrc-2004Q3, pkgsrc-2004Q2-base, pkgsrc-2004Q2, pkgsrc-2004Q1-base, pkgsrc-2004Q1, pkgsrc-2003Q4-base, pkgsrc-2003Q4
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +2 -1 lines
permit large number of fonts to be processed (free resource appropriately).
bump PKGREVISION.

Revision 1.4: download - view: text, markup, annotated - select for diffs
Mon Aug 12 20:15:37 2002 UTC (22 years, 8 months ago) by tron
Branches: MAIN
CVS tags: netbsd-1-6-RELEASE-base, netbsd-1-6-1-base, netbsd-1-6-1, netbsd-1-6
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +2 -2 lines
Fix build problem on system without "xpkgwedge" installed.

Revision 1.3.2.2: download - view: text, markup, annotated - select for diffs
Sun Jun 23 18:45:50 2002 UTC (22 years, 10 months ago) by jlam
Branches: buildlink2
Diff to: previous 1.3.2.1: preferred, colored; branchpoint 1.3: preferred, colored; next MAIN 1.4: preferred, colored
Changes since revision 1.3.2.1: +5 -0 lines
Merge from pkgsrc-current to buildlink2 branch.

Revision 1.3.2.1
Fri May 31 15:33:07 2002 UTC (22 years, 10 months ago) by jlam
Branches: buildlink2
FILE REMOVED
Changes since revision 1.3: +0 -5 lines
file distinfo was added on branch buildlink2 on 2002-06-23 18:45:50 +0000

Revision 1.3: download - view: text, markup, annotated - select for diffs
Fri May 31 15:33:07 2002 UTC (22 years, 10 months ago) by uebayasi
Branches: MAIN
CVS tags: pkgviews-base, pkgviews, buildlink2-base
Branch point for: buildlink2
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +3 -4 lines
Update to 20020524.

  - Implements ``fuzz'' value for large encodings (defaults to 1%);
    precise heuristics are still used for 8-bit fonts.
  - Implements simple heuristic for distinguishing charcell fonts;
    tested with Courier New (-m-) and Lucida Console (-c-), more testing
    is needed.
  - Empty names are now treated the same as missing, which may (or may
    not) work around some arguably incorrect fonts.
  - Changed big5.eten-0 to big5-0.

Revision 1.2: download - view: text, markup, annotated - select for diffs
Thu May 30 11:30:42 2002 UTC (22 years, 10 months ago) by tron
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +2 -2 lines
Fix incorrect "Imakefile" which causes build failures on XFree86 4.2.0
systems without "xpkwedge" installed.

Revision 1.1.1.1 (vendor branch): download - view: text, markup, annotated - select for diffs
Mon May 20 12:30:29 2002 UTC (22 years, 11 months ago) by wiz
Branches: TNF
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +0 -0 lines
Initial import of mkfontscale:
create an index of scalable font files for X
Provided by rxg in pkg/16811.

Revision 1.1: download - view: text, markup, annotated - select for diffs
Mon May 20 12:30:29 2002 UTC (22 years, 11 months ago) by wiz
Branches: MAIN
Initial revision

Diff request

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Log view options

CVSweb <webmaster@jp.NetBSD.org>