summaryrefslogtreecommitdiff
path: root/fonts
AgeCommit message (Collapse)AuthorFilesLines
2005-02-23Add RMD160 digests to the SHA1 ones.agc92-92/+259
2005-02-21Sign over maintainership to tech-pkg@hubertf1-2/+2
2005-02-21Needs at least Xrender-0.8.2 and fontconfig-2.2.wiz1-2/+3
Closes PR 29477.
2005-02-15Changes 9-Feb-2005:adam3-6/+7
* Use freetype's FT_Outline_Get_Bitmap to make freetype rasterize from our internal data structures. Use freetype by default for the fontview and metricsview (except in some cases). * The bitmap dlg didn't work for multilayered fonts when told to use freetype to rasterize. * If we had a contour nested inside another, and did an Overlap Exclude with the nested contour selected, then that contour was not excluded. * The []Correct Direction check box when importing PostScript, didn't do anything. (or rather it did, but got overrulled later) * In bitmap only fonts, bitmaps created without moving the width line would get lost. * Added a scripting command "SelectByColor" * Don't apply transformations to glyphs which aren't worth outputting * Moving control points with the get point info command had problems in quadratic splines. * When adding type42 support I broke multiple master support. * Werner provided a patch to add a trailing newline to my type1 fonts. * Support for PaintType==2 and stroked fonts. * Various problems with the clustering command * Oops, somehow a patch reverted and things didn't work on systems without iconv * worked on a couple of other configuration problems for the mac * Some people install libraries without headers. Be prepared. * Uniscribe (MS unicode text layout routines) may ignore either the GPOS or the GSUB table depending on the script, and may even refuse to use the font at all if it doesn't have the right stuff in GPOS/GSUB. A Hebrew font must have both a GPOS and a GSUB. If it doesn't the font is not used. A latin font need not have either, but if it doesn't have GSUB then GPOS won't be used.
2005-02-02Per wiz@ suggestion, remove 20 from python accepted versions and reversejmmv1-2/+2
them so that newer ones come first. Closes my own PR pkg/29198.
2005-02-02Allow python 2.4.jmmv1-2/+2
2005-01-28Update alee-ttf to 4.1. Patch provided by Yi Min-Cheol, MAINTAINER.minskim3-9/+9
Changes: - Replace 09t@quark.ttf with 09t@rk.ttf. - Add Aqu@rk.ttf.
2005-01-27Changes 20050117:adam3-7/+8
* CapsLock now makes the arrow keys scroll in the outline view * We lost count of hints when generating type2 fonts in glyphs with references to something containing hints which did not overlap. If we were unlucky, <new-cnt+7>/8 was different than <real-cnt+7>/8 and we ended up with garbage in the charstring. * Add a TeX table to contain TeX metrics. * TFM output was wrong. the TFtoPL doc says "reencoding with original encoding could create a glyph table one too small resulting in writing/reading garbage and an eventual crash. * KANOU fixed a couple of problems in reading glyph names from bdf fonts. * KANOU needed to disambiguate between "Point" a unit of measurement and "Point" a geometric object.
2005-01-23Build Python with thread support by default and turn the existingrecht1-2/+2
python*-pth packages into meta-packages which will install the non-pth packages. Bump PKGREVISIONs on the non-pth versions to propagate the thread change, but leave the *-pth versions untouched to not affect existing installations. Sync all PYTHON_VERSIONS_AFFECTED lines in package Makefiles.
2005-01-21updated fonts/xmbdfed to 4.5. changes from 4.4 follow.kei2-6/+6
XMBDFED CHANGES Version: 4.5 Date : 09 November 2001 ========================== 1. Fixed handling of double quotes in properties. 2. Fixed an incorrect value in a switch statement having to do with EOL's. 3. Fixed a bug dealing with adding properties to fonts. 4. Fixed numerous warnings about possible use of uninitialized variables. 5. Fixed an invalid indication of no next page when glyphs pasted span more than one page. 6. Fixed a problem with drawing offsets in the GlyphTest widget in right-to-left drawing. 7. Started a "Tips" section in the Help text.
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)
2005-01-14Changes 31-Dec-2004:adam3-11/+12
* Ah, windows pfm files expect the metrics to be output in win latin encoding order, not in the encoding defined by the pfb file. (Actually there are other posibilities for encoding, but as none is documented, I must ignore them). * ReplaceWithReference broke at some point * Add an argument-pair to the ReplaceWithReference() scripting command to allow the user to specify the amount of error that will be accepted. * When generating a Type1 font, if a glyph had a single reference to a glyph not in adobe encoding, and that glyph itself had a single reference (in adobe enc) and some splines, then ff would make a reference to the ref in adobe enc and ignore the splines. * Upgrade to Adobe-Japan1-6 * Various fixes to svg output * Ghost hints could get outside a glyphs bounding box in a type2 font. * The generated truetype unique id string had an off by one error in the month * Add support for dashed lines in multilayered mode * In Full Page Glyph printing, the glyph was offset slightly from where it should have been. * Pasting a reference into a multi-layered font produced a very odd layer * ff didn't update the metrics view if the user pasted the selection with the middle mouse button. * if a character were not in the current encoding then ff would not display it in the metrics view (even if it were in the font) * Make the behavior of control points at the ends of open paths more reasonable * The Point->Curve command did not adust control points correctly * The View->Display Substitutions had numerous problems * Fix several problems from unicode unification of accents. Many characters which are said to be based on cedilla actually use a comma, other characters said to be carons also use comma. Make the n-with-apostrophe character be treated as an accented letter. * Werner points out that straight lines should generally not be simplified (as they will no longer be straight afterwards). Add this knowledge to the simplify command.
2005-01-05Create .pyc files and install them, so thatwiz2-5/+14
they do not get generated as side effect of the installation of other packages and break PLISTs. With help from salo to get it right, thanks. Bump PKGREVISION.
2004-12-31Run mktexlsr during install/deinstall.wiz1-1/+3
2004-12-31Run mktexlsr during post-install so that fonts are found.wiz1-1/+4
2004-12-31Update to 1.1.1 (1.0.35 distfile gives me checksum errors):wiz2-6/+5
2004-12-21 Han-Wen Nienhuys * configure.in (PYTHON): release 1.1.1 * mftrace.py (option_definitions): add --no-afm option 2004-12-19 Jan Nieuwenhuizen * GNUmakefile.in (GNUmakefile): Depend on configure (configure): Run ./configure after running autoconf (not config.status, which has old, cached values). 2004-12-19 Han-Wen Nienhuys * configure.in (PYTHON): bump version to 1.1.0; release. * mftrace.py (to_type1): always create .pfa.raw (make_outputs): generate all outputs in one script. Add SVG output. (glyph_range): use --formats, remove other options. 2004-12-02 Han-Wen Nienhuys * mftrace.py (make_ttf): call AddExtrema() too.
2004-12-30add missing fonts/mftrace/buildlink3.mkdmcmahill1-1/+2
2004-12-30add and enable ec-fonts-mftraceddmcmahill1-1/+2
2004-12-30import ec-fonts-mftraced-1.0.8dmcmahill5-0/+169
EC PostScript Type1 fonts with TFMs for TeX These are PostScript Type1 renderings and TFMs of the EC variant of the standard TeX CMR font family. These fonts include characters with European accents. GNU LilyPond depends on this. Authors: Han-Wen Nienhuys <hanwen@cs.uu.nl> Jan Nieuwenhuizen <janneke@gnu.org>
2004-12-28Bump PKGREVISIONs due to libtiff update.reed1-1/+2
Some BUILDLINK_RECOMMENDED bumps done also. (If I missed any, please let me know -- and let me know a good way to automate this.)
2004-12-28Fix ttf/type1 handling in fonts.mk:wiz12-20/+24
Previously, ttmkfdir's output was redirected to fonts.dir, while the correct behaviour is to let it create fonts.scale and then let mkfontdir merge fonts.scale into fonts.dir. type1 handling had a similar problem. Get the wanted behaviour by automatically appending the contents of FONTS_TTF_DIRS and FONTS_TYPE1_DIRS to FONTS_X11_DIRS. Also, save a subshell in install/fonts while there. Bump PKGREVISION for all affected packages. jmmv@ says ok.
2004-12-26Convert to fonts.mk. Bump PKGREVISION. Remove USE_X11BASE.wiz3-47/+4
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-12-20since perl is now built with threads on most platforms, the perl archlibgrant2-2/+4
module directory has changed (eg. "darwin-2level" vs. "darwin-thread-multi-2level"). binary packages of perl modules need to be distinguishable between being built against threaded perl and unthreaded perl, so bump the PKGREVISION of all perl module packages and introduce BUILDLINK_RECOMMENDED for perl as perl>=5.8.5nb5 so the correct dependencies are registered and the binary packages are distinct. addresses PR pkg/28619 from H. Todd Fujinaka.
2004-12-03Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.wiz4-8/+8
Suggested by Roland Illig, ok'd by various.
2004-11-29Update efont-unicode to 0.4.2. Minor fixes.uebayasi2-5/+5
2004-11-29Update monafont to 2.90.uebayasi4-22/+7
- True outlines added. - JPY symbol in the Unicode bitmap fonts (-mona-gothic-*-iso10646-1) fixed.
2004-11-29Revision bump: depend on fontforge, after is has been renamed from pfaedit; ↵adam1-2/+4
depend on potrace
2004-11-29Renamed pfaedit to fontforgeadam6-78/+2
2004-11-29Renamed from pfaeditadam5-0/+75
Changes 20041115: * If ff started without a prefs file, then creating a new font would crash * If a copyright string contained a newline then ff would generate bad postscript * If user added a comment to an empty glyph then the comment wasn't saved in the sfd file. * If ff saved a utf7 string to an sfd file (ttf names, etc.) and that string contained a hyphen that followed immediately after something that needed to be encoded in base64, then the hyphen would be lost. * new french UI * ff was (usually) setting the ascent/descent fields of the 'hhea' table to 0. When the font was drawn on the mac it was clipped to nothing.
2004-11-26Add a buildlink3.mk file.kristerw1-0/+18
2004-11-26Added mftrace (wip credit to atamaniuk-pkgsrc@frobs.net)adam1-1/+2
2004-11-26mftrace is a small Python program that lets you trace a TeX bitmap font intoadam5-0/+58
a PFA or PFB font (A PostScript Type1 Scalable Font) or TTF (TrueType) font.
2004-11-22Remove unnecessary LTCONFIG_OVERRIDE.wiz1-2/+1
2004-11-22USE_LANGUAGES=c c++wiz1-2/+2
2004-11-06Move ttf2pk patches to the original sources, i.e. freetype-lib.hubertf6-111/+0
2004-11-06Add RCS Id.wiz1-0/+1
2004-10-28Update to 1.4.2: sorry, changes unknown, but one can expect some bug fixesjmmv3-7/+12
and updated translations.
2004-10-19XFree86-clients is not required at run-time for these packages.reed6-7/+13
But it is needed to build. So use BUILD_DEPENDS instead of DEPENDS. (This is the way the xorg-fonts* packages do it.) Also bump PKGREVISIONs for these. (Okayed by maintainer, Juan RP.)
2004-10-13Update MASTER_SITES, which addresses PR#27246.ben1-2/+2
2004-10-12Use `+=' instead of `=' for SUBST_CLASSES.hira2-6/+6
OK'd by uebayasi.
2004-10-09add & enable ttf2pkhubertf1-1/+2
2004-10-09Import ttf2pk-1.3.1: TrueType to TeX PK font converterhubertf9-0/+200
ttf2pk/ttf2tfm permit using TrueType fonts with teTeX. To be used for pkgsrc-wip/cjk-latex & friends (fixes and a working cjk-latex-wadalab font pkg to be committed too)
2004-10-08Missing bits to make this build/work correctly on FreeBSD 5.x.xtraeme2-2/+12
Not tested on 4.x, but changes should be trivial to commit...
2004-10-04Add another master site.wiz1-2/+3
2004-10-04Update MASTER_SITES.wiz1-7/+4
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv18-22/+36
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-27Checksum correctedadam4-12/+12
2004-09-27Checksum correctedadam2-6/+6
2004-09-27Checksum correctedadam1-3/+3