summaryrefslogtreecommitdiff
path: root/fonts/fontconfig
AgeCommit message (Collapse)AuthorFilesLines
2005-01-18update to 2.2.98drochner4-133/+114
changes: 2.2.97 Fc-cache sleeps before exiting to ensure filesystem timestamps are well ordered. Added Punjai orthography. The timestamp in fonts.conf is gone now. Too many problems. The default font path includes all of the X fonts; use selectfont/rejectfont to eliminate bitmaps, as shown in the sample local.conf file. <include> configuration elements may now reference a directory. Files in that directory matching [0-9]* are loaded in UTF-8 collating sequence order. <selectfont> configuration added to control which fonts are used. fontformat font pattern elements built from the FT_Get_X11_Font_Format function in newer versions of FreeType. 'capability' list constructed from gsub/gpos and silf values in TrueType files. Multi-lingual names (style, family, fullname) extracted and stored with parallel <foo>lang properties marking language. 2.2.98 Share object name strings (Michael Meeks) Eliminate a couple of codepoints from Russian orthography (John Thacker) Add synthetic emboldening configuration changes (Jakub Pavelek) Change FcFontSetSort to ignore language after fonts with the requested languages have been found. (Owen Taylor) Add some RedHat font configuration changes (Owen Tayler). Add full Unicode case folding support to case-ignoring string functions (Keith Packard) Remove Han characters from Korean orthography (Tor Andersson)
2004-12-20Make sure we have defined GNU_CONFIGURE and USE_LIBTOOL before includingxtraeme1-3/+3
bsd.prefs.mk, otherwise the check for _OPSYS_MAX_CMDLEN is skipped.
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv2-2/+4
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-5/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-08-05update to fontconfig-2.2.96recht2-5/+5
changes: 2004-06-30 Keith Packard <keithp@keithp.com> * README: * configure.in: * fontconfig/fontconfig.h: Update for 2.2.96 2004-06-30 Keith Packard <keithp@keithp.com> Provided by: Lubos Lunak <l.lunak@suse.cz> * src/fccfg.c: (FcConfigUptoDate): However FcConfigUptoDate() doesn't seem to work. See the attached patch. First there's an obvious misplaced parenthesis making it return always false, and second, even this call fails to detect font changes (e.g. adding a new font to /usr/X11R6/lib/X11/fonts/truetype). The patch should fix that as well. The problem seems to be triggered by my fonts.conf specifying only /usr/X11R6/lib/X11/fonts , and therefore config->configDirs doesn't include subdirs, unlike config->fontDirs. 2004-06-03 Keith Packard <keithp@keithp.com> * fontconfig/fontconfig.h: Remove comma at end of FcResult enum definition. 2004-05-29 Keith Packard <keithp@keithp.com> * INSTALL: Add steps to md5sum release
2004-07-06Unused.wiz1-118/+0
2004-06-07Update to 2.2.95 development release. Several bugs have been fixed,dmcmahill5-117/+218
in particular this fixes a problem where no font matches can be found by gtk2 apps. This should fix the problem where even the gtk-demo program fails run.
2004-04-28Update HOMEPAGE and MASTER_SITES.dillo1-3/+3
2004-04-27Changes 2.2.2:adam4-26/+23
* Changed #include syntax to follow new Freetype rules * Made external compilation work
2004-04-19Enable pkgviews installation.minskim1-1/+3
2004-03-29Match the template builtin.mk file in bsd.builtin.mk, and make the twojlam1-7/+17
packages that use builtin.mk files (graphics/xpm and pkgtools/x11-links) use the new format correctly.
2004-03-18Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properlyjlam1-3/+2
by moving the inclusion of buildlink3.mk files outside of the protected region. This bug would be seen by users that have set PREFER_PKGSRC or PREFER_NATIVE to non-default values. BUILDLINK_PACKAGES should be ordered so that for any package in the list, that package doesn't depend on any packages to the left of it in the list. This ordering property is used to check for builtin packages in the correct order. The problem was that including a buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed from BUILDLINK_PACKAGES and appended to the end. However, since the inclusion of any other buildlink3.mk files within that buildlink3.mk was in a region that was protected against multiple inclusion, those dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
2004-03-10Split out the code that deals with checking whether the software isjlam2-109/+86
built-in or not into a separate builtin.mk file. The code to deal checking for built-in software is much simpler to deal with in pkgsrc. The buildlink3.mk file for a package will be of the usual format regardless of the package, which makes it simpler for packagers to update a package. The builtin.mk file for a package must define a single yes/no variable USE_BUILTIN.<pkg> that is used by bsd.buildlink3.mk to decide whether to use the built-in software or to use the pkgsrc software.
2004-02-19Add BUILDLINK_DEPENDS.<pkg> for dependencies in a section that is invokedjlam1-5/+3
only if we're not using the built-in versions of the package.
2004-02-19Move the settings, which force the use of builtin versions of dependenciesjlam1-5/+8
if the builtin version of the package is being used, into a global location so that they're always executed.
2004-02-18If we're using the built-in version of the software, then we must alsojlam1-4/+8
be using built-in versions of any other software pulled in via buildlink3.mk files.
2004-02-18Reorder some lines so that BUILDLINK_USE_BUILTIN.<pkg> set in thejlam1-16/+18
environment overrides all other settings.
2004-02-18fontconfig had a really weird version numbering system. Version 2.0 isjlam2-4/+4
practically verbatim with the "1.0.1" release that's in XFree86 4.3.x. There have in fact been only function additions to the fontconfig API since 2.0, so fontconfig has never actually had a bump in the shared library major. Therefore, allow "fontconfig>=1.0.1" as the base requirement.
2004-02-17When using the native version of this library, symlink the .pc file intojmmv1-1/+2
the buildlink directory so that pkg-config can find it. Ok'ed by jlam@.
2004-02-17Missing a "=" in the ">=".jlam1-2/+2
2004-02-17Don't include other buildlink3.mk files if we're just checking whether thejlam1-4/+6
software is built-in.
2004-02-16fontconfig is in the "fonts" category.jlam2-4/+4
2004-02-16Typo.jlam1-2/+2
2004-02-16Do the dance to check the version of the XFree86-provided fontconfig.jlam2-24/+199
Also correct the list of buildlink2.mk files included by fontconfig/buildlink2.mk.
2004-02-16The GNU configure script now only accepts --with-freetype-config to setjlam1-3/+2
the location of freetype2 headers and libraries.
2004-02-14PKGCONFIG_OVERRIDE is relative to WRKSRC.jmmv1-2/+2
2004-02-14LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globsjlam1-2/+1
relative to ${WRKSRC}. Remove redundant LIBTOOL_OVERRIDE settings that are automatically handled by the default setting in bsd.pkg.mk.
2004-02-12Don't try to build the docbook documentation. Fixes PR 24367.jlam1-1/+2
2004-02-09Raise BUILDLINK_DEPENDS.freetype2 to at least 2.1.3.reed2-4/+4
Even 2.0.9 is not good enough for newer fontconfig; for example, gtk2 won't buildlink correctly (and will use older X version of include/freetype2/freetype/ftbdf.h) and libfontconfig needs FT_Get_BDF_Property which is not defined. No PKGREVISION bump is needed, because would not even build in first place.
2004-01-24Append to BUILDLINK_DEPENDS.<pkg> instead of setting a default value. Injlam1-2/+2
the normal case when BUILDLINK_DEPENDS.<pkg> isn't specified, it receives a value only once due to the multiple inclusion protection in the bulldlink3.mk files. In the case where a package includes several buildlink3.mk files that each want a slightly different version of another dependency, having BUILDLINK_DEPENDS.<pkg> be a list allows for the strictest <pkg> dependency to be matched.
2004-01-24Append to BUILDLINK_DEPENDS.freetype2 so that if another package wants anjlam1-2/+2
even newer version, it will still work.
2004-01-24bl3ifyjlam2-9/+33
2004-01-22replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.grant1-2/+2
2003-12-21Update HOMEPAGE; from Michal Pasternak in PR pkg/23826.jmmv1-2/+2
2003-12-20regen after previous patch removalrecht1-3/+1
2003-12-19remove freetype2 2.1.17 related patches after freetype2 has been revertedrecht2-28/+0
to 2.1.15
2003-12-18Fix build after freetype2 updaterecht5-6/+36
2003-12-04If X11PREFIX and X11BASE are not the same, which happens with xpkgwedge,dmcmahill1-2/+7
then add both to the font path instead of just X11PREFIX. Makes this pkg work with xpkgwedge.
2003-10-29Just in case, fontconfig is built before X fonts are installed,reed1-1/+2
have some defaults for fonts.conf (/usr/X11R6/lib/X11/fonts/TTF and /usr/X11R6/lib/X11/fonts/Type1). I didn't bump PKGREVISION, because in many cases this will be the same as if it configure figured it out. I also considered adding TrueType and freefont, but they aren't included with default XFree86 installation. Also, I didn't include other font directories, because fontconfig's directory says it's for outline fonts (.pf*, .tt* and .ot*) and to use local.conf or ~/.fonts.conf for bitmap fonts. This closes PR #22927 where fontconfig's fc-cache has missing directories causing font information caches to not be built (using defaults).
2003-10-11bump PKGREVISIONs after bump of expat BUILDLINK_DEPENDS.grant1-2/+2
2003-10-11improve message about running fc-cache, mention -v flag.grant1-4/+7
fixes PR pkg/22473 from Michal Pasternak.
2003-09-22Add missing PKGCONFIG_OVERRIDE.recht1-1/+3
Bump PKGREVISION because of the changed *.pc files. ok'ed by wiz@
2003-09-02This needs zlibmartti1-1/+2
2003-08-31Update to 2.2.1.wiz8-100/+313
Lots more documentation installed, fontconfig-config replaced with pkgconfig file. Changelog covered some versions only: Release 2.2.0: * Change version number to 2.2.0 Prerelease 2.1.94: * BDF property support for foundry and width (Juliusz Chroboczek) * Clean up GCC warnings (Colin Walters) Prerelease 2.1.93: * Use Type1 FontInfoRec to get more detailed weight information * Run fc-cache from source tree to try and resolve LFS install issues * Fix fontconfig-user.html generation (was getting smashed) * Debian build files are in CVS now * Fixes to build on Windows * Compute monospacing by looking at glyphs instead of trusting font * Get widths and more detailed weight from TrueType OS/2 table * Global cache was re-statting a lot of files. * Yet more RPM fixes from RedHat
2003-08-29Fix spelling.reed1-1/+1
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-07-13This does not USE_X11; remove it. Bump PKGREVISION.wiz1-3/+2
Noted by Soren Jacobsen in PR 22051.
2003-06-02Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.jschauma1-2/+2
Should anybody feel like they could be the maintainer for any of thewe packages, please adjust.
2003-04-03Solaris awk doesn't deal with a space between -F and the argjmc2-6/+19
2003-03-29Clean up freetype2 requirements so Xft2 and fontconfig also require the rightjmc2-3/+5
version via buildlink'ing