CHANGES BETWEEN 2.4.10 and 2.4.11 I. IMPORTANT BUG FIXES - Some vulnerabilities in the BDF implementation have been fixed. Users of this font format should upgrade. II. IMPORTANT CHANGES - Subpixel hinting support has been contributed by Infinality, based on Greg Hitchcock's whitepaper at http://www.microsoft.com/typography/cleartype/truetypecleartype.aspx Originally, it was a separate patch available from http://www.infinality.net/blog/ and which has been integrated. Note that ClearType support is not completely implemented! In particular, full support for the options `compatible_widths', `symmetrical_smoothing, and `bgr' (via the GETINFO bytecode instruction) is missing. Activation of subpixel hinting support can be controlled with the `TT_CONFIG_OPTION_SUBPIXEL_HINTING' configuration option; it is switched off by default. This feature is still experimental; we welcome test reports! - Support for OpenType collections (OTC) has been added. - Pure CFF fonts within an SFNT wrapper are now supported. III. MISCELLANEOUS - Minor rendering improvements to the auto-hinter. - `FT_GlyphSlot_Oblique' now uses a shear angle of 12°. - Experimental support to handle `property modules', for example to control the behaviour of the auto-hinter. The API consists of two new functions, `FT_Property_Set' and `FT_Property_Get'. The code is still subject to change and should not be used for production. - The `ftdiff' demo program now supports UTF-8 encoded input files for option `-f'. - Using keys `r' and `R', you can now adjust the stroker radius in the `ftview' demo program. - Other, minor fixes and improvements.
66 lines
1.7 KiB
Makefile
66 lines
1.7 KiB
Makefile
# $NetBSD: Makefile,v 1.89 2013/01/06 00:38:13 wiz Exp $
|
|
|
|
DISTNAME= freetype-2.4.11
|
|
PKGNAME= ${DISTNAME:S/-/2-/}
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=freetype/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= rh@NetBSD.org
|
|
HOMEPAGE= http://www.freetype.org/
|
|
COMMENT= Font rendering engine and library API
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= grep gmake
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_DIRS= builds/unix
|
|
BUILD_DIRS= .
|
|
CONFIGURE_ARGS+= --includedir=${PREFIX}/include
|
|
CONFIGURE_ARGS+= --enable-shared
|
|
CONFIGURE_ENV+= ac_cv_path_GREP=${GREP:Q} ac_cv_path_EGREP=${EGREP:Q}
|
|
|
|
.if exists(/System/Library/Frameworks/Carbon.framework)
|
|
LDFLAGS+= -framework Carbon
|
|
.endif
|
|
|
|
PKGCONFIG_OVERRIDE= builds/unix/freetype2.in
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
.include "../../mk/compiler.mk"
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.freetype2
|
|
PKG_SUPPORTED_OPTIONS= subpixel
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
# subpixel (lcd) rendering, patent issues
|
|
.if !empty(PKG_OPTIONS:Msubpixel)
|
|
CFLAGS+= -DFT_CONFIG_OPTION_SUBPIXEL_RENDERING
|
|
.endif
|
|
|
|
# source code breaks strict aliasing in gcc>=2.95
|
|
.if !empty(CC_VERSION:Mgcc-[3-9]*) || !empty(CC_VERSION:Mgcc-2.95*)
|
|
CFLAGS+= -fno-strict-aliasing
|
|
.endif
|
|
|
|
# tell configure not to use unix-specific version of ftsystem.c on OpenBSD
|
|
.if ${OPSYS} == "OpenBSD"
|
|
CONFIGURE_ENV+= ac_cv_func_mmap_fixed_mapped=no
|
|
.endif
|
|
|
|
.if !empty(USE_CROSS_COMPILE:M[yY][eE][sS])
|
|
CONFIGURE_ENV+= CC_BUILD=${NATIVE_CC:Q}
|
|
.endif
|
|
|
|
post-configure:
|
|
cd ${WRKSRC} && ${LN} -s builds/unix/unix.mk config.mk
|
|
.if ${OPSYS} == "IRIX"
|
|
${MKDIR} ${WRKSRC}/.libs
|
|
.endif
|
|
|
|
.include "../../archivers/bzip2/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|