summaryrefslogtreecommitdiff
path: root/fonts
AgeCommit message (Collapse)AuthorFilesLines
2014-10-07Revbump after updating libwebp and icuadam1-1/+2
2014-10-05Fix ``Please add a line "# used by foo/bar/Makefile" here.'' warnings.wiz2-2/+9
2014-09-25Use -d rather than non-portable --make-directories cpio argument.jperkin1-2/+2
2014-09-04Update koruri-ttf to 20140904.nonaka3-12/+24
20140904: * M+ OUTLINE FONTS has been updated to CVS HEAD (2014.09.04).
2014-08-19ftp.gimp.org is no longer. Update/remove links pointing there.wiz2-6/+4
From Niclas Rosenvik.
2014-08-17Update to 0.9.35:wiz3-46/+6
Overview of changes leading to 0.9.35 Saturday, August 13, 2014 ===================================== - Fix major shape-plan caching bug when more than one shaper were provided to hb_shape_full() (as exercised by XeTeX). http://www.mail-archive.com/debian-bugs-dist@lists.debian.org/msg1246370.html - Fix Arabic fallback shaping regression. This was broken in 0.9.32. - Major hb-coretext fixes. That backend is complete now, including respecing buffer direction and language, down to vertical writing. - Build fixes for Windows CE. Should build fine now. - Misc fixes: Use atexit() only if it's safe to call from shared library https://bugs.freedesktop.org/show_bug.cgi?id=82246 Mandaic had errors in its Unicode Joining_Type https://bugs.freedesktop.org/show_bug.cgi?id=82306 - API changes: * hb_buffer_clear_contents() does not reset buffer flags now. After 763e5466c0a03a7c27020e1e2598e488612529a7, one doesn't need to set flags for different pieces of text. The flags now are something the client sets up once, depending on how it actually uses the buffer. As such, don't clear it in clear_contents(). I don't expect any changes to be needed to any existing client.
2014-08-13Remove Symbola-ttf, symbola-ttf has a newer version.wiz1-2/+1
2014-08-09+ new font packages.wiz1-1/+7
2014-08-09Add many font packages for Ancient Scripts, fromwiz24-0/+309
http://users.teilar.gr/~g1951d/
2014-08-09Update thaixfonts to 1.2.6.obache2-7/+7
Version 1.2.6 (2013-10-22) ============= - Updated build system. - Switch to .tar.xz release tarball.
2014-08-06Add upstream bug report URL.wiz2-3/+4
2014-08-06Libraries should not call atexit().wiz3-2/+41
Bump PKGREVISION.
2014-08-05Update to 0.9.34:wiz2-6/+6
Overview of changes leading to 0.9.34 Saturday, August 2, 2014 ===================================== - hb_feature_from_string() now accepts CSS font-feature-settings format. - As a result, hb-shape / hb-view --features also accept CSS-style strings. Eg, "'liga' off" is accepted now. - Add old-spec Myanmar shaper: https://bugs.freedesktop.org/show_bug.cgi?id=81775 - Don't apply 'calt' in Hangul shaper. - Fix mark advance zeroing for Hebrew shaper: https://bugs.freedesktop.org/show_bug.cgi?id=76767 - Implement Windows-1256 custom Arabic shaping. Only built on Windows, and requires help from get_glyph(). Used by Firefox. https://bugzilla.mozilla.org/show_bug.cgi?id=1045139 - Disable 'liga' in vertical text. - Build fixes. - API changes: * Make HB_BUFFER_FLAG_BOT/EOT easier to use. Previously, we expected users to provide BOT/EOT flags when the text *segment* was at paragraph boundaries. This meant that for clients that provide full paragraph to HarfBuzz (eg. Pango), they had code like this: hb_buffer_set_flags (hb_buffer, (item_offset == 0 ? HB_BUFFER_FLAG_BOT : 0) | (item_offset + item_length == paragraph_length ? HB_BUFFER_FLAG_EOT : 0)); hb_buffer_add_utf8 (hb_buffer, paragraph_text, paragraph_length, item_offset, item_length); After this change such clients can simply say: hb_buffer_set_flags (hb_buffer, HB_BUFFER_FLAG_BOT | HB_BUFFER_FLAG_EOT); hb_buffer_add_utf8 (hb_buffer, paragraph_text, paragraph_length, item_offset, item_length); Ie, HarfBuzz itself checks whether the segment is at the beginning/end of the paragraph. Clients that only pass item-at-a-time to HarfBuzz continue not setting any flags whatsoever. Another way to put it is: if there's pre-context text in the buffer, HarfBuzz ignores the BOT flag. If there's post-context, it ignores EOT flag.
2014-07-29Update to 0.9.33:wiz2-6/+6
Overview of changes leading to 0.9.33 Tuesday, July 22, 2014 ===================================== - Turn off ARabic 'cswh' feature that was accidentally turned on. - Add HB_TAG_MAX_SIGNED. - Make hb_face_make_immutable() really make face immutable! - Windows build fixes.
2014-07-22Update to 0.9.32:wiz3-37/+6
Overview of changes leading to 0.9.32 Thursday, July 17, 2014 ===================================== - Apply Arabic shaping features in spec order exactly. - Another fix for Mongolian free variation selectors. - For non-Arabic scripts in Arabic shaper apply 'rlig' and 'calt' together. - Minor adjustment to U+FFFD logic. - Fix hb-coretext build. Overview of changes leading to 0.9.31 Wednesday, July 16, 2014 ===================================== - Only accept valid UTF-8/16/32; we missed many cases before. - Better shaping of invalid UTF-8/16/32. Falls back to U+FFFD REPLACEMENT CHARACTER now. - With all changes in this release, the buffer will contain fully valid Unicode after hb_buffer_add_utf8/16/32 no matter how broken the input is. This can be overriden though. See below. - Fix Mongolian Variation Selectors for fonts without GDEF. - Fix minor invalid buffer access. - Accept zh-Hant and zh-Hans language tags. hb_ot_tag_to_language() now uses these instead of private tags. - Build fixes. - New API: * hb_buffer_add_codepoints(). This does what hb_buffer_add_utf32() used to do, ie. no validity check on the input at all. add_utf32 now replaces invalid Unicode codepoints with the replacement character (see below). * hb_buffer_set_replacement_codepoint() * hb_buffer_get_replacement_codepoint() Previously, in hb_buffer_add_utf8 and hb_buffer_add_utf16, when we detected broken input, we replaced that with (hb_codepoint_t)-1. This has changed to use U+FFFD now, but can be changed using these new API. Overview of changes leading to 0.9.30 Wednesday, July 9, 2014 ===================================== - Update to Unicode 7.0.0: * New scripts Manichaean and Psalter Pahlavi are shaped using Arabic shaper. * All the other new scripts to through the generic shaper for now. - Minor Indic improvements. - Fix graphite2 backend cluster mapping [crasher!] - API changes: * New HB_SCRIPT_* values for Unicode 7.0 scripts. * New function hb_ot_layout_language_get_required_feature(). - Build fixes.
2014-07-17Add sourcehansans-fontsryoon1-1/+2
2014-07-17Import sourcehansans-fonts-1.000 as fonts/sourcehansans-fonts.ryoon4-0/+50
Source Han Sans fonts are open source Pan-CJK fonts from Adobe.
2014-07-17Update to 20140716ryoon3-25/+44
* Update MASTER_SITES and HOMEPAGE * Use Google's zip archive file Changelog: * Design improvements. * More fonts See http://googledevelopers.blogspot.com/2014/07/the-new-roboto.html
2014-07-15Fix build under SCO OpenServer 5.0.7/3.2.ryoon9-8/+280
It seems that SCO OSR5 does not provide scandir(3), provide custom scandir().
2014-06-26FreeBSD's unzip doesn't handle the distfile.asau1-1/+8
This fixes the build on FreeBSD 10.
2014-06-12Update koruri-ttf to 20140524.nonaka2-7/+7
20140524: * Support for vertical writing in the Windows environment.
2014-06-08Set LICENSE.wiz1-2/+2
2014-06-08+ CamingoCodewiz1-1/+2
2014-06-08Import CamingoCode-1.0 as fonts/CamingoCode.wiz4-0/+44
CamingoCode is designed for source-code editors. It is based on CamingoMono, but has several specially drawn glyphs that work well at small sizes, including Q, l, &, *, ~ and #. The stroke weights are relatively light, which makes CamingoCode suitable for both bright and dark visual themes. The family consists of four style-linked fonts (Regular, Italic, Bold and Bold Italic) and is manually hinted to give the best possible appearance on screens.
2014-06-07Update to 4.39.wiz2-8/+6
A version of this font is now the FreeBSD console font, see http://svnweb.freebsd.org/base?view=revision&revision=267109 Changes in 4.39: Added ballot, checkmark, heavy ballot and heavy checkmark. Changed HT, LF etc. in sizes 14 and 18-hi2 to be proportional to the letter height, not the matrix height. Added the powerline characters E0A0..E0A2 and E0B0..E0B3. Added diameter (2300) - same gluph as empty set (2205). Small improvements in size 32.
2014-06-07Update to 0.463ryoon2-7/+6
Status: Unadjusted glyph: Unicode 7b27-9398
2014-06-05Update to 0.9.29:wiz4-31/+12
Overview of changes leading to 0.9.29 Thursday, May 29, 2014 ===================================== - Implement cmap in hb-ot-font.h. No variation-selectors yet. - Myanmar: Allow MedialYa+Asat. - Various Indic fixes: * Support most characters in Extended Devanagary and Vedic Unicode blocks. * Allow digits and a some punctuation as consonant placeholders. - Build fixes.
2014-06-01Adapt paths for font installation changes. Bump PKGREVISION.wiz4-10/+10
2014-06-01Adapt to kochi-ttf font installation path change. Bump PKGREVISION.wiz2-5/+5
2014-06-01Move fonts from lib/X11/fonts to share/fonts/X11.wiz215-4449/+4501
As discussed on tech-pkg. Bump PKGREVISION.
2014-05-31libungif is not relevant any longer since the GIF relevant patentswiz1-3/+3
expired (about 10 years ago). Unconditionally switch to libgif. As discussed on tech-pkg without dissent. Bump PKGREVISION.
2014-05-29Bump for perl-5.20.0.wiz10-19/+20
Do it for all packages that * mention perl, or * have a directory name starting with p5-*, or * depend on a package starting with p5- like last time, for 5.18, where this didn't lead to complaints. Let me know if you have any this time.
2014-05-27Don't use buggy CoreText in MacOS X 10.5pho3-6/+25
CTLineCreateWithAttributedString() seemingly fails when trying to use a font which isn't installed into the system standard path.
2014-05-25Revbump after updating graphics/giflibobache1-2/+2
2014-05-24+ fira.wiz1-1/+2
2014-05-24Import fira-3.105 as fonts/fira.wiz4-0/+73
The Mozilla Foundation commissioned Erik Spiekermann in 2013 to create a completely free, open-source typeface, for use in Firefox OS.
2014-05-21Also look in share/fonts/X11, as before in some cases.wiz1-2/+2
2014-05-21Search standard font paths on OS Xadam1-6/+7
2014-05-17Bump applications PKGREVISIONs for python users that might be usingwiz1-2/+2
python3, since the default changed from python33 to python34. I probably bumped too many. I hope I got them all.
2014-05-10Update koruri-ttf to 20140510.nonaka2-7/+7
20140510: * Fixed the problem that Koruri-Light.ttf is not a valid font file in the Windows environment.
2014-05-09Mark packages that are not ready for python-3.3 also not ready for 3.4,wiz3-6/+6
until proven otherwise.
2014-05-06Add koruri-ttfryoon1-1/+2
2014-05-06Import koruri-ttf-20140319 as fonts/koruri-ttf.ryoon4-0/+61
Koruri Japanese TrueType fonts. It is based on M+ Font and Open Sans Font (alphanumeric). Packaged by nonaka@, and submitted as PR pkg/48756.
2014-05-05Fix build under Mac OS X.tron2-1/+19
2014-05-05Recursive revbump from x11/pixmanryoon6-11/+12
Fix PR pkg/48777
2014-05-04Update to 0.9.28:wiz3-8/+8
Overview of changes leading to 0.9.28 Monday, April 28, 2014 ===================================== - Unbreak old-spec Indic shaping. (bug 76705) - Fix shaping of U+17DD and U+0FC6. - Add HB_NO_MERGE_CLUSTERS build option. NOT to be enabled by default for shipping libraries. It's an option for further experimentation right now. When we are sure how to do it properly, we will add public run-time API for the functionality. - Build fixes.
2014-04-24Update to 0.016, provided by Tim Larson in PR 48761.wiz3-10/+10
EB Garamond 0.016 (2014-04-07) =============================== * License - No reserved font name any more * New Features: - [12-It] fina for e.fina (more shall come) - [12-It] ss07: h and k with alternate accent placement above the stem - [12-Re] Smallcaps now don’t enable ss20 any longer - OS/2 Optical Size settings - Change the naming scheme for the small-caps-fonts: they now relate to the preferred family “EB Garamond SC”, hence they are named “EBGaramondSCXX-Style” where XX is the design size and Style is Regular (Italic, Bold, … once they exist). * New and redrawn Glyphs: - [08-Re] Half-ring modifiers - [12-Re] Redraw esh (with Siva Kalyan) - [12-Re] Regional identifiers 1F1E6 ­— 1F1FF (Tim Larson) - [12-Re] Arrows and mathematical symbols (Tim Larson): arrowdbldown, arrowdblleft, arrowdblright, arrowdblup, gradient, product, uni210E, uni214B, uni219E — uni21A2, uni21DA — uni21DD, uni2210, uni2B45, uni2B46, uniFFFD - [12-Re] e less round - [12-Re] exclam more delicate - [12-Re] Missing glyphs in Latin Extended C and D (Capillatus) - [12-Re] uni1DC4 (more shall come) - [12-Re] find a latin chi - [12-Re] ditto mark - [12-It] Fully redraw the small-caps - [12-It] Redraw the Euro - [12-It] Redraw the asterisk * Fixes: - Caron and alternate caron position on l.sc, dcaron.sc and tcaron.sc - Lots of kerning and spacing - Lots of anchors freshly positioned - Fix f-ligatures for German locale - c2sc + German umlauts - extended IPA small-caps are petite-caps now
2014-04-18Removed options.mk, because it didn't do anything. If specific options were ↵adam2-25/+5
enabled for SDL2, they would be pulled anyway. The 'static' option was pointless.
2014-04-18options.mkadam1-7/+3
2014-04-17Doesn't support Ruby before 1.9.3.joerg1-1/+3