pkgsrc/fonts/t1lib/buildlink.mk
jlam 4006c3f813 Update fonts/t1lib to 1.3.1. Changes from version 1.1.1 include:
* Move t1lib.config.netbsd sample file to t1lib.config.sample, which is more
  OS-neutral.
- Bug fixes.
- Fixed kerning mapping code. Kerning did not work correctly for characters
  that appeared multiple times in an encoding vector.
- In the same context a new function, T1_GetEncodingIndices() has been added
  to the API. It returns an array of indices (by contrast,
  T1_GetEncodingIndex() returns only the lowest index found).
- Support for composite characters.
- Additional support for dvips encoding files (thanks to suggestion and
  contribution by Nicolai Langfeldt (janl@linpro.no).
- Global Font Metrics Information is loaded from AFM files in order to be able
  to read the typographic ascender. Line ruling did not behave as
  documented. However, problems could still exist because the typographic
  ascender specification is optional in AFMs.
- Reorganized search path handling and, in particular, the respective
  documentation is more detailed.
- The configuration file now allows multiple lines of one type of search path
  specification and it is also possible to quote path specification in order
  to specify paths that contains special characters like spaces, colons, etc.
- Multiple font databases are supported.
- T1_PrintLog() extended to accept a variable argument list.
- The environment variable T1LIB_LOGMODE is evaluated to give the user the
  chance to specify a loglevel and hence to detect t1lib-problems even if the
  application programmer did not enable the log file features.
- Color problem in t1x11-module fixed.
- Fixes in AFM parser. Among others, Version had been read as name, instead of
  as string. This led to a failure to scan global font info for some standard
  AFMs.
2002-09-19 01:26:41 +00:00

36 lines
1.1 KiB
Makefile

# $NetBSD: buildlink.mk,v 1.2 2002/09/19 01:26:42 jlam Exp $
#
# This Makefile fragment is included by packages that use t1lib.
#
# To use this Makefile fragment, simply:
#
# (1) Optionally define BUILDLINK_DEPENDS.t1lib to the dependency pattern
# for the version of t1lib desired.
# (2) Include this Makefile fragment in the package Makefile,
# (3) Add ${BUILDLINK_DIR}/include to the front of the C preprocessor's header
# search path, and
# (4) Add ${BUILDLINK_DIR}/lib to the front of the linker's library search
# path.
.if !defined(T1LIB_BUILDLINK_MK)
T1LIB_BUILDLINK_MK= # defined
.include "../../mk/bsd.buildlink.mk"
BUILDLINK_DEPENDS.t1lib?= t1lib>=1.3.1
DEPENDS+= ${BUILDLINK_DEPENDS.t1lib}:../../fonts/t1lib
EVAL_PREFIX+= BUILDLINK_PREFIX.t1lib=t1lib
BUILDLINK_PREFIX.t1lib_DEFAULT= ${X11PREFIX}
BUILDLINK_FILES.t1lib= include/t1lib.h
BUILDLINK_FILES.t1lib+= include/t1libx.h
BUILDLINK_FILES.t1lib+= lib/libt1.*
BUILDLINK_FILES.t1lib+= lib/libt1x.*
BUILDLINK_TARGETS.t1lib= t1lib-buildlink
BUILDLINK_TARGETS+= ${BUILDLINK_TARGETS.t1lib}
pre-configure: ${BUILDLINK_TARGETS.t1lib}
t1lib-buildlink: _BUILDLINK_USE
.endif # T1LIB_BUILDLINK_MK