summaryrefslogtreecommitdiff
path: root/fonts/fontconfig
AgeCommit message (Collapse)AuthorFilesLines
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg2-4/+4
2006-01-24Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 becausewiz2-3/+4
of the shlib major bump. PKGREVISION++ for the dependencies.
2005-12-29Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mkjlam1-2/+1
automatically detects whether we want the pkginstall machinery to be used by the package Makefile.
2005-12-05Ran "pkglint --autofix", which corrected some of the quoting issues inrillig1-2/+2
CONFIGURE_ARGS.
2005-09-05Clean up additional font path. OK'd by reed@.hira1-7/+3
If you installed fontconfig-2.3.2, please remove <dir></dir> entry from ${LOCALBASE}/etc/fontconfig/fonts.conf.
2005-07-28Remove the MESSAGE. It is not required. The library will buildreed3-22/+12
caches for individuals as needed. Remove gnome from CATEGORIES. Redo the added font paths because ${LOCALBASE}/lib/X11/fonts is already default as configured above, so don't need to add again. And don't need to list sub-directories of "fonts" because fontconfig already looks in sub-directories too. (I have been using this over a year on various systems like this.) Update to 2.3.2. Changes include: * fc-cache/fc-cache.c: (scanDirs): Fix a few minor leaks in error cases. * fc-cache/fc-cache.c: (main): Destroy font configuration on exit to help valgrind * fonts.conf.in: * src/fcfreetype.c: (FcSfntNameTranscode), (FcFreeTypeCharIndex), (FcFreeTypeCheckGlyph): Use own transcoding routines in preference to iconv which appears to have leaks in some translators. Call iconv_close after using iconv (oops). Prefer unicode encoding of Euro char as some fonts mis-encode Euro in other ones. Must fetch bitmap glyphs to get width values to check for monospace/dual-width fonts. Complete changes at http://www.fontconfig.org/release/ChangeLog-2.3.2 Note that manpage for fc-cache(1) is not installed yet. It is in SGML. Also note that the new version provides same library version libfontconfig.so.1.0.4. This was reported to developer and was an accidently oversite. Nevertheless, it is still ABI compatible.
2005-06-07Never use docbook2html to regenerate documentation files. That's toojlam1-1/+2
heavy of a build dependency to drag in, and the SGML template files are not completely standardized. This should fix PR pkg/29392.
2005-06-03Coalesce the common makefile code in the builtin.mk file that inspectjlam2-25/+4
the X11 distribution using imake into mk/buildlink3/imake-check.mk. imake-check.mk calls out to a helper shell script mk/buildlink3/imake-check that generates the required Imakefiles and runs imake. Remove the now extraneous builtin-imake.mk files as the builtin.mk files can now contain the name of the imake symbol to check.
2005-06-03Only check for the existence of the first word of ${IMAKE} since it mayjlam1-2/+3
contain a command plus arguments. We use the standard idiom to extract the first word of a list stored in a make variable: VAR_CMD= ${VAR:C/^/_asdf_/1:M_asdf_*:S/^_asdf_//} XXX This can be replaced with a more succinct use of variable modifiers XXX when we update the bootstrap bmake to match the latest NetBSD make XXX sources, i.e.: XXX XXX VAR_CMD= ${VAR:[1]}
2005-06-03Don't require a read-write pkgsrc tree when invoking imake. We avoidjlam1-2/+4
this requirement by using TMPDIR as the read-write location demanded by using imake.
2005-06-01Use IMAKE_MAKE instead of MAKE to process the makefile generated by imake.jlam1-2/+2
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam2-49/+87
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-04-21Include converters/libiconv/buildlink3.mk.kristerw1-1/+2
2005-04-12add libiconv buildlink3.mk file. fontconfig directly calls iconv().dmcmahill1-1/+5
Should address the 'fontconfig core dumps' on solaris bug reported in PR29837
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-22Update to 2.3.1:wiz6-116/+21
* Fix manuals in section 3 so they get built and installed. * Rework GSUB/GPOS script parsing to avoid crashing when presented with broken fonts. * Add a few more example configuration files to /etc/fonts/conf.d from the debian packaging.
2005-03-01Sort.wiz1-3/+3
2005-03-01Update to 2.3.0:wiz4-118/+155
Fix memory leak of patterns rejected by configuration (#2518) Create prototype $PREFIX/etc/fontconfig/conf.d directory and populate it with a few sample files. These samples are unused as the file names don't start with numbers. Update documentation.
2005-02-26Update to 2.2.99:wiz4-26/+23
Fontconfig 2.2.99 contains a few minor bug fixes plus the addition of polite type warnings for the config file. This latter change could use a bit of exposure to existing config files to see if it whines about legitimate configurations.
2005-02-23Add RMD160 digests to the SHA1 ones.agc1-1/+2
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