pkgsrc/fonts
wiz 6de387b041 Update to 2.9.0. No proper NEWS file found.
Bump version to 2.9.0
    Get rid of $< from Makefile.am
    Fix a build fail on some environment.
    Fix a build fail on some environment
    Fix a build issue
    Update to detect the uncommited changes properly
    Update the version info
    Fix distcheck error
    Bug 19128 - Handling whitespace in aliases
    Add a workaround alias for Dingbats.
    Check null value for given object to avoid possibly segfaulting
    Bug 23336 - unable to display bitmap-only (SFNT) TrueType or OpenType
    Force to find out a size for bitmap-only ttf to avoid the blank glyphs
    in the font.
    Patch from Bug Fly
    Bug 41694 - FcCache functions have random-number-generator side
    effects
    Use the own random number generator state if possible.
    Bug 25652 - Add ortho file for locale mni_IN
    Add mni.orth for Maniputi
    Bug 25653 - Add ortho file for locale doi_IN
    Add doi.orth for Dogri
    Add brx.orth and sat.orth
    Bug 25650 - Add ortho file for locale sat_IN
    Add sat.orth for Santali
    Bug 25651 - Add ortho file for locale brx_IN
    Add brx.orth for Bodo.
    Bug 27385 - lcdfilter settings for freetype-2.3.12 not available
    in fontconfig-2.8.0
    Add config files for FT_LcdFilter options.
    Patch from Robin Johnson.
    Do not update stream->pos when seeking is failed.
    Bug 46169 - Pointer error in FcConfigGlobMatch
    Fix possibly accessing the invalid memory and a crash in the
    worst case
    when the glob string is longer than the string.
    makealias: handle missing funcs better
    When adding new functions, if the actual definition doesn't match the
    header (say due to a typo), the regeneration of the internal headers
    get confused and output bad cpp logic.  This causes gcc to barf due
    to mismatched #ifdef/#endif.  Which is a pain to figure out due to
    the sheer voulme of generated code.
    So tweak the makealias script to detect this case and error out.
    While we're here, improve the cpp output a bit to indent, include
    comments, and merge similar ifdef blocks.
    FcObjectValidType: tweak -1 checking
    Newer gcc doesn't like when you switch on an enum and use a value
    that isn't declared:
    fcname.c: In function 'FcObjectValidType':
    fcname.c:299:2: warning: case value '4294967295'
	not in enumerated type 'FcType' [-Wswitch]
    So tweak the logic to avoid this warning.
    fix build warnings when using --with-arch
    Latest configure code will setup FC_ARCHITECTURE directly rather than
    going through ARCHITECTURE, so update fcarch.h accordingly.
    fc-{list,match}: constify format string
    We don't free this string anywhere, so mark it const to avoid gcc
    warnings
    and possible bugs in the future (if people did try freeing it).
    fc-list.c: In function 'main':
    fc-list.c:161:16: warning: pointer targets in assignment
	differ in signedness [-Wpointer-sign]
    fc-match.c: In function 'main':
    fc-match.c:201:13: warning: pointer targets in assignment
	differ in signedness [-Wpointer-sign]
    fc-match.c:203:13: warning: pointer targets in assignment
	differ in signedness [-Wpointer-sign]
    FcName{,Get}Constant: constify string input
    These funcs don't modify the incoming string, so add const markings.
    This is the "right thing", shouldn't change the ABI, and fixes some
    gcc warnings:
    fccfg.c: In function 'FcConfigEvaluate':
    fccfg.c:916:2: warning: passing argument 1 of 'IA__FcNameConstant'
	discards 'const' qualifier from pointer target type [enabled
	by default]
    fcalias.h:253:34: note: expected 'FcChar8 *' but
	argument is of type 'const FcChar8 *'
    fcxml.c: In function 'FcTypecheckExpr':
    fcxml.c:604:2: warning: passing argument 1 of 'IA__FcNameGetConstant'
	discards 'const' qualifier from pointer target type [enabled
	by default]
    fcalias.h:251:37: note: expected 'FcChar8 *' but
	argument is of type 'const FcChar8 *'
    fc-cat: fix pointer warning
    Add a cast to avoid a gcc warning:
    fc-cat.c: In function 'cache_print_set':
    fc-cat.c:230:2: warning: pointer targets in passing argument 2
	of 'FcPatternFormat' differ in signedness [-Wpointer-sign]
    ../fontconfig/fontconfig.h:860:1: note:
	expected 'const FcChar8 *' but argument is of type 'char *'
    FcStat: change to FcChar8 for first arg
    This shouldn't affect the ABI, makes FcStat more like the rest of the
    fontconfig API, and fixes warnings where we pass FcChar8* pointers in
    to this func from other places.
    delete unused variables
    Newer gcc is better at detecting set-but-unused variables.
    FcStrPlus: optimize a little
    We've already calculated the lengths of these strings, so re-use those
    values to avoid having to rescan the strings multiple times.
    Bug 44826 - <alias> must contain only a single <family>
    Fix invalid syntax around alias elements in 30-metric-aliases.conf
    40-nonlatin.conf and 45-latin.conf.
    Patch from lolilolicon
    Get rid of the unexpected family name
    UmePlus P Gothic isn't a serif font.
    Bug 43406 - typo of Japanese font name in conf.d/65-nonlatin.conf
    Fix a typo.
    Bug 43321 - Required corrections in urdu.orth file
    Drop U+0629 and U+0647, and add U+06c3 to ur.orth
    Bug 42423 - make default Korean font from Un to Nanum
    Update 40-nonlatin.conf and 65-nonlatin.conf for Nanum korean fonts.
    Bug 40452 - Running 'fc-match --all' core dumps when no fonts are
    installed
    This would changes the behavior of FcFontSort().
    it won't returns NULL afterward.
    Bug 35517 - Remove Apple Roman cmap support
    Get rid of the apple roman encoding related code
    Add a missing file
    Bug 32965 - Asturian (ast-ES) language matching missing ḷḷḥ
    Add U+1E24, U+1E25, U+1E36 and U+1e37 for Asturian
    Remove the unnecessary comment in ks.orth
    Bug 27195 - need updates to ks.orth file
    Add U+0620, U+0657, U+065f, U+0672, U+0673 and U+06c4 for Kashmiri
    See http://www.unicode.org/charts/PDF/U0600.pdf
    Bug 24744 - No n'ko orthography
    Add nqo.orth for N'Ko
    Add FcPublic to FcLangSetUnion and FcLangSetSubtract
    Patch from ssp
    Fix parallel build
    Bug 41171 - Invalid use of memset
    Fix stupid bug in FcFontSort()
    I broke FcFontSort() language handling at the end of 2008 with this
    commit: c7641f28
    G-d knows how many of the lang-matching bugs in bugzilla will be
    fixed by this changed...
    I'm really sorry, everyone!
    Switch fc-cat to use FcPatternFormat()
    Added the a builtin "fccat" to FcPatternFormat().
    Switch fc-match to use FcPatternFormat()
    Fix small bug in FcPatternFormat that was letting element-default to
    consume the convertor sequence.
    Bug 26718 - "fc-match sans file" doesn't work
    - Do not throw away FC_FILE in FcNameUnparse
    - Update the builtin "fclist" format to remove FC_FILE properly
    instead
    - Switch fc-list to use FcPatternFormat()
    Note that I had previously broken fc-list and it was not showing the
    file name anymore.	No one noticed that it seems!  Now fixed.
    Bug 36577 - Updating cache with no-bitmaps disables bitmap fonts...
    Do not remove blacklisted fonts during cache generation.  We already
    apply the blacklist when reading the caches.  The idea always has been
    that the config should not affect caches built, although that design
    was tarnished with the introduction of target="scan" configurations.
    [.gitignore] Update
    Bug 35587 - Add padding to make valgrind and glibc not hate each other
    Fix warning
    Always define FcStat as a function
    Such that first arg is const char *.  We also need to make more
    changes
    in that function as part of some other bug.
    More doc typo fixes
    Mark constant strings as constant
    Fixes a few compiler warnings in fcxml.c and makes it clear that they
    should not be freed.
    Bug 30566 - fcformat.c:interpret_enumerate() passes uninitialized
    idx to FcPatternGetLangSet()
    Bug 20113 - Uighur (ug) orthography incomplete
    Documentation fixes
    Remove --enable-maintainer-mode from autogen.sh
    Update CaseFolding.txt to Unicode 6.0
    Remove AM_MAINTAINER_MODE
    That macro is simply broken.
    This was also brought up in:
    Bug 32679 - fontconfig-2.8.0 does not cross compile
    Fix assertion failure on le32d4
    Reported by Jon TURNEY.
    Doc nit
    Skip <range> elements with begin > end
    Add <range> support for <blank> into the DTD
Merge: 30fd4fa fa269cf
    Allow editing charset and lang in target="scan"
    Merge commit 'fa269cf812ee304534b0e4c44662202496008db0'
    Fixes:
    Bug 31969 - Can't modify charset in target="scan"
    Bug 23758 - Can't modify lang in target="scan"
    Bump version
    Make fc-arch stuff cross-compiling-safe
    Fixes:
    Bug 32679 - fontconfig-2.8.0 does not cross compile
    Bug 25462 - Cross-compilation doesn't work
    Make most generated-files cross-compiling-safe
    By simply including a copy in the tarball.
    Remains fc-arch which is trickier.
    add some documents
    Add editing langset feature.
    The syntax to add any langset to the langset table looks like:
    <match target="scan">
	<test name="family">
	    <string>Buggy Sans</string>
	</test>
	<edit name="lang" mode="assign">
	    <plus>
		<name>lang</name>
		<langset>
		    <string>zh-cn</string>
		    <string>zh-tw</string>
		</langset>
	    </plus>
	</edit>
    </match>
    To remove any langset from the langset table:
    <match target="scan">
	<test name="family">
	    <string>Buggy Sans</string>
	</test>
	<edit name="lang" mode="assign">
	    <minus>
		<name>lang</name>
		<langset>
		    <string>ja</string>
		</langset>
	    </minus>
	</edit>
    </match>
    Add the range support in blank element
    add some document for range and charset.
    Add charset editing feature.
    The syntax to add any characters to the charset table looks like:
    <match target="scan">
	<test name="family">
	    <string>Buggy Sans</string>
	</test>
	<edit name="charset" mode="assign">
	    <plus>
		<name>charset</name>
		<charset>
		    <int>0x3220</int>	 <!-- PARENTHESIZED IDEOGRAPH
		    ONE -->
		</charset>
	    </plus>
	</edit>
    </match>
    To remove any characters from the charset table:
    <match target="scan">
	<test name="family">
	    <string>Buggy Sans</string>
	</test>
	<edit name="charset" mode="assign">
	    <minus>
		<name>charset</name>
		<charset>
		    <int>0x06CC</int>	 <!-- ARABIC LETTER FARSI YEH -->
		    <int>0x06D2</int>	 <!-- ARABIC LETTER YEH BARREE -->
		    <int>0x06D3</int>	 <!-- ARABIC LETTER YEH BARREE
		    WITH HAMZA ABOVE -->
		</charset>
	    </minus>
	</edit>
    </match>
    You could also use the range element for convenience:
    ...
		<charset>
		    <int>0x06CC</int>	 <!-- ARABIC LETTER FARSI YEH -->
		    <range>
			<int>0x06D2</int>    <!-- ARABIC LETTER YEH
			BARREE -->
			<int>0x06D3</int>    <!-- ARABIC LETTER YEH
			BARREE WITH HAMZA ABOVE -->
		    </range>
		</charset>
    ...
    Bug 28958 - lang=en matches other langs
    Patch from Akira TAGOH.
    Fix returned value
    Cleanup copyright notices to replace "Keith Packard" with "the
    author(s)"
    Add more copyright owners
    fontconfig.pc.in: Add sysconfdir, localstatedir, and PACKAGE
    In the default case, cachedir and confdir will evaluate to something
    referencing these other variables (which wouldn't otherwise be defined
    in the pkg-config file.
    Fixes a regression introduced by
    81b542b50f82f8a0ad9f38f7d913fe5433631166
    Tested-by: Jon TURNEY <jon.turney@dronecode.org.uk>
    fontconfig.pc: Add variables for confdir and cachedir
    Bug 24729 - [ne_NP] Fix ortho file
    Exclude three characters (U+090C..090E) from Nepalese.
    [fc-lang] Support excluding characters
    By prefixing a line by a hyphen/minus sign.  Useful when including
    other orth files.
    Add new public API: FcCharSetDelChar()
    Bug 29995 - fc-cat does not invoke FcFini()
    Add comments
    Bug 29338 - fc-pattern.sgml, open para tag
    Fix compiler warnings
    Add fc-pattern cmdline tool
    Fix comment
    Remove all training whitespaces
    More whitespace
    Whitespace
    Accept TT_PLATFORM_MICROSOFT, TT_MS_ID_SYMBOL_CS from name table
    The OT spec says:
    "When building a Unicode font for Windows, the platform ID should
    be 3 and the encoding ID should be 1. When building a symbol
    font for Windows, the platform ID should be 3 and the encoding
    ID should be 0."
    We were ignoring the SYMBOL_CS entry before.  It's UTF-16/UCS-2
    like the UNICODE_CS.
    Also, always use UTF-16BE instead of UCS-2BE.  The conversion
    was doing UTF-16BE anyway.
    Don't include unistd.h in fontconfig.h
    Bug 26783 patch: unistd.h not exist on ms windows
    Bug 25152 Don't sleep(2) if all caches were uptodate
    Bug 26157 Solaris/Sun C 5.8: compilation of 2.8.0 and 2.7.3 fails
    Bug 18886 installation crashes if fontconfig already installed
    Run the uninstalled fc-cache, not the installed one.
    More doc typo fixes
    Fix doc typo
    Add note about autogen.sh to INSTALL
    Update INSTALL
    Bug 25508 configure assumes bash > 2.0 is on system
    Remove dolt.  With libtool2, there's not much need for dolt.
    [doc] Fix typo
    [fc-cache] Document -r argument in man page
2012-06-10 16:12:46 +00:00
..
acroread7-chsfont
acroread7-chtfont
acroread7-font-share Do not conflict implicitly with acroread7 itself. 2009-11-25 22:45:07 +00:00
acroread7-jpnfont
acroread7-korfont
acroread9-chsfont Import acroread9-chsfont-9.1 as fonts/acroread9-chsfont from wip/acroread9-chsfont 2011-07-30 07:33:48 +00:00
acroread9-chtfont Import acroread9-chtfont-9.1 as fonts/acroread9-chtfont from wip/acroread9-chtfont-9.1 2011-07-30 07:42:28 +00:00
acroread9-font-share Import acroread9-font-share-9.1 as fonts/acroread9-font-share from wip/acroread9-font-share 2011-07-30 07:36:14 +00:00
acroread9-jpnfont Import acroread9-jpnfont-9.1 as fonts/acroread9-jpnfont from wip/acroread9-jpnfont 2011-07-30 07:37:29 +00:00
acroread9-korfont Import acroread9-korfont-9.1 as fonts/acroread9-korfont from wip/acroread9-korfont 2011-07-30 07:38:36 +00:00
adobe-cidfonts Fix a number of GENERATE_PLIST entries to always have a terminating ; 2009-06-16 15:25:31 +00:00
adobe-cmaps Change @exec/@unexec to @pkgdir or drop it. 2009-06-14 19:01:13 +00:00
ae-mono-ttf Initial import of ae-mono-ttf-1.0, packaged for wip by 2010-09-16 23:41:37 +00:00
alee-ttf Update to 12. 2011-02-06 00:33:06 +00:00
AnonymousPro Initial import of AnonymousPro-1.001: 2010-09-03 18:24:47 +00:00
arphic-ttf Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
artwiz-fonts
baekmuk-ttf Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
bakoma-fonts Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
bdftopcf Recursive bump for graphics/freetype2 buildlink addition. 2011-11-01 06:00:33 +00:00
biznet-iso8859_2
chkfontpath recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
croscorefonts Import croscorefonts-1.21.0 as fonts/croscorefonts. 2012-04-14 15:53:04 +00:00
cyberbase-ttf Change default for zip extraction to leave files as they are. 2009-08-25 11:56:34 +00:00
cyberbit-ttf avaiable via http instead of ftp 2012-04-07 12:49:35 +00:00
cyr-rfx-bulgarian-mik
cyr-rfx-ibm-cp866
cyr-rfx-iso8859_5
cyr-rfx-iso8859_15
cyr-rfx-iso10646_0400
cyr-rfx-koi8-o
cyr-rfx-koi8-ru
cyr-rfx-koi8-ub
cyr-rfx-koi8_1
cyr-rfx-mac-cyrillic
cyr-rfx-share Follow pkglint advice: add '# used by ...' lines. 2009-01-04 16:29:41 +00:00
cyr-rfx-windows_1251
cyr-rfx-winlatin_1
dbz-ttf Change default for zip extraction to leave files as they are. 2009-08-25 11:56:34 +00:00
dejavu-ttf Remove USE_X11=yes, so that rrdtool (and thus xymon) can be installed on 2012-04-26 03:06:05 +00:00
droid-ttf Update to 20111115 2011-11-17 19:16:08 +00:00
EB-Garamond Initial import of EB-Garamond-0.012: 2012-01-08 16:20:08 +00:00
efont-unicode
encodings Update to 1.0.4: 2012-06-03 18:34:10 +00:00
fntsample Recursive bump for pcre-8.30* (shlib major change) 2012-03-03 00:11:51 +00:00
font-adobe-75dpi Drop gmake dependency 2010-09-09 17:59:36 +00:00
font-adobe-100dpi Drop gmake dependency 2010-09-09 17:59:36 +00:00
font-adobe-utopia-75dpi Remove hashes for patches that no longer exist. 2010-10-04 05:26:47 +00:00
font-adobe-utopia-100dpi Remove hashes for obsolete patches. 2010-09-19 05:26:44 +00:00
font-adobe-utopia-type1 Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
font-alias Update to 1.0.3. 2012-06-03 18:35:22 +00:00
font-arabic-misc Import font-arabic-misc-1.0.1 as fonts/font-arabic-misc. 2010-09-10 05:46:31 +00:00
font-bh-75dpi Drop gmake dependency 2010-09-09 17:59:36 +00:00
font-bh-100dpi Drop gmake dependency 2010-09-09 17:59:36 +00:00
font-bh-lucidatypewriter-75dpi Upadte to font-bh-lucidatypewriter-75dpi-1.0.1: Move to share/fonts 2010-09-09 18:10:41 +00:00
font-bh-lucidatypewriter-100dpi Update to font-bh-lucidatypewriter-100dpi-1.0.1: Move to share/fonts. 2010-09-09 18:08:50 +00:00
font-bh-ttf Update to font-bh-ttf-1.0.1: Move to share/fonts 2010-09-09 18:13:19 +00:00
font-bh-type1 Update to font-bh-type1-1.0.1: Move to share/fonts. 2010-09-09 18:15:39 +00:00
font-bitstream-75dpi Update to font-bitstream-75dpi-1.0.1: Move to share/fonts. 2010-09-09 18:21:42 +00:00
font-bitstream-100dpi Update to font-bitstream-100dpi-1.0.1: Move to share/fonts 2010-09-09 18:18:03 +00:00
font-bitstream-type1 Update to font-bitstream-type1-1.0.1: Move to share/fonts 2010-09-09 18:24:28 +00:00
font-cronyx-cyrillic Import font-cronyx-cyrillic-1.0.1 as fonts/font-cronyx-cyrillic. 2010-09-10 05:48:08 +00:00
font-cursor-misc Remove hashes for patches that no longer exist. 2010-10-04 05:26:47 +00:00
font-daewoo-misc Remove hashes for patches that no longer exist. 2010-10-04 05:26:47 +00:00
font-dec-misc Update to font-dec-misc-1.0.1: Move to share/fonts 2010-09-09 18:29:52 +00:00
font-ibm-type1 Update to font-ibm-type1-1.0.1: Move to share/fonts. 2010-09-09 18:32:57 +00:00
font-isas-misc Update to font-isas-misc-1.0.1: move to share/fonts 2010-09-09 18:37:10 +00:00
font-jis-misc Update to font-jis-misc-1.0.1: move to share/fonts 2010-09-09 18:39:33 +00:00
font-micro-misc Import font-micro-misc-1.0.1 as fonts/font-micro-misc. 2010-09-10 05:49:23 +00:00
font-misc-cyrillic Import font-misc-cyrillic-1.0.1 as fonts/font-misc-cyrillic. 2010-09-10 05:50:28 +00:00
font-misc-ethiopic Import font-misc-ethiopic-1.0.1 as fonts/font-misc-ethiopic. 2010-09-10 05:51:30 +00:00
font-misc-meltho Import font-misc-meltho-1.0.1 as fonts/font-misc-meltho. 2010-09-10 05:52:47 +00:00
font-misc-misc Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
font-mutt-misc Update to font-mutt-misc-1.0.1: move to share/fonts 2010-09-09 18:44:31 +00:00
font-schumacher-misc Update to 1.1.2: 2011-07-12 13:45:51 +00:00
font-screen-cyrillic Import font-screen-cyrillic-1.0.2 as fonts/font-screen-cyrillic. 2010-09-10 05:58:07 +00:00
font-sony-misc Update to font-sony-misc-1.0.1: move to share/fonts 2010-09-09 18:48:52 +00:00
font-sun-misc fix path inconsistencies 2010-12-01 19:44:23 +00:00
font-util Update to 1.3.0. 2012-06-10 15:27:41 +00:00
font-winitzki-cyrillic Import font-winitzki-cyrillic-1.0.1 as fonts/font-winitzki-cyrillic. 2010-09-10 06:01:22 +00:00
font-xfree86-type1 fix path inconsistencies 2010-12-01 19:44:23 +00:00
fontconfig Update to 2.9.0. No proper NEWS file found. 2012-06-10 16:12:46 +00:00
fontforge Recursive bump for pcre-8.30* (shlib major change) 2012-03-03 00:11:51 +00:00
freefont-ttf Updated HOMEPAGE. 2011-09-06 11:28:54 +00:00
freefonts
gbdfed Recursive bump for pcre-8.30* (shlib major change) 2012-03-03 00:11:51 +00:00
gentium-ttf
geoslab703-ttf
ghostscript-cidfonts Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions. 2009-04-09 00:48:06 +00:00
ghostscript-cmaps Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions. 2009-04-09 00:48:06 +00:00
ghostscript-fonts explain what happened to the 35 standard PostScript fonts 2010-06-10 10:17:23 +00:00
gsftopkk Update DISTFILES. No functional change. 2012-03-04 17:46:15 +00:00
gucharmap Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
inconsolata-ttf Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
intlfonts Add DESTDIR support. 2008-11-27 13:11:17 +00:00
ipaexfont IPAex Mincho font 001.03 is released. 2011-01-14 11:04:41 +00:00
ipafont Fix typo in filename. 2011-05-22 20:55:31 +00:00
ja-elisat Use correct path to bdftopcf. 2012-04-18 00:06:12 +00:00
ja-elisau Use correct path to bdftopcf. 2012-04-18 00:06:12 +00:00
ja-kaname Use correct path to bdftopcf. 2012-04-18 00:06:12 +00:00
ja-kappa20
ja-naga10
ja-sazanami-ttf
ja-shinonome add license 2010-02-07 18:25:30 +00:00
jisx0208fonts
jisx0212fonts
jisx0213fonts
jmk-fonts Fix build (install under ${PREFIX}). 2011-10-08 03:23:38 +00:00
kanjistrokeorders-ttf Update to 2.016 2011-07-30 12:32:14 +00:00
kcfonts Add missing dependency, fixes parallel build. 2010-10-02 07:10:01 +00:00
kiloji-ttf Import kiloji-ttf-2.1.0 as fonts/kiloji-ttf 2011-05-04 05:41:33 +00:00
ko-baekmuk user-destdir support 2009-07-08 16:55:21 +00:00
ko-hanyang user-destdir support 2009-07-08 16:55:21 +00:00
ko-kaist user-destdir support 2009-07-08 16:55:21 +00:00
ko-mizi PKG_DESTDIR_SUPPORT= user-destdir 2009-12-17 17:23:36 +00:00
ko-x11fonts
kochi-ttf Remove message about deleting distfiles from 2003. Everyone who 2011-03-01 11:25:54 +00:00
konatu-ttf Import konatu-ttf-26 as fonts/konatu-ttf from wip/konatu-ttf. 2011-05-08 11:10:14 +00:00
liberation-ttf Mirror locally. 2011-12-07 10:30:32 +00:00
libfontenc Use hacks file from meta-pkgs/modular-xorg instead of patch for 2012-06-06 22:19:57 +00:00
linux-libertine-ttf Update to 5.1.3 2011-11-17 18:16:03 +00:00
lohit-fonts Import lohit-fonts package (also known as fonts-indic), a set of free 2008-10-20 20:32:11 +00:00
mftrace Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
mglfonts Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
migu-ttf Update to 20111002 2012-03-22 18:20:33 +00:00
misaki-fonts Use correct path to bdftopcf. 2012-04-18 00:06:12 +00:00
mkfontalias Bump PKGREVISION from default python to 2.7. 2012-03-15 11:53:20 +00:00
mkfontdir Update to 1.0.7: 2012-06-03 18:34:38 +00:00
mkfontscale Update to 1.1.0: 2012-06-03 17:22:08 +00:00
mminstance Fix build on amd64. Mark as DESTDIR ready. 2008-09-19 23:59:52 +00:00
monafonts Don't output verbose output of mkbold/mkitalic commands. It is useless 2010-03-03 15:44:55 +00:00
monafonts-ttf
mothanna-ttf Initial import of mothanna-ttf, packaged for wip by Kamel Derouiche. 2010-09-04 10:38:24 +00:00
motoya-fonts Update to 20111115 2011-11-17 20:47:13 +00:00
mozilla-fonts user-destdir support 2009-07-08 16:55:21 +00:00
mplayer-fonts remove dead mirror from list. 2011-03-11 11:32:47 +00:00
ms-ttf Typo. 2012-02-07 09:40:13 +00:00
nanum-ttf Import nanum-ttf-3.0 as fonts/nanum-ttf. 2011-08-08 23:26:31 +00:00
otf2bdf Recursive bump for graphics/freetype2 buildlink addition. 2011-11-01 06:00:33 +00:00
oto user-destdir support 2009-07-08 16:55:21 +00:00
p5-Font-AFM Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:38:56 +00:00
p5-Font-TTF Update to 0.48. Changes undocumented. 2011-08-16 21:48:05 +00:00
p5-Font-TTFMetrics Add HOMEPAGE and LICENSE. 2011-10-04 08:37:51 +00:00
pcf2bdf
profont
proggy-fonts Initial import of proggy-fonts-1, based on a package provided 2010-02-16 13:48:10 +00:00
ps2pkm Make ps2pkm build with clang. 2012-04-26 15:18:55 +00:00
py-fonttools All supported python versions in pkgsrc support eggs, so remove 2012-04-08 20:21:41 +00:00
py-TTFQuery Update to 1.0.5. No proper changelog found, but previous version is 2012-06-03 22:59:03 +00:00
ricty-ttf Update to 3.2.0 2012-05-02 22:02:00 +00:00
roboto-fonts Update to 20111115a 2011-11-17 19:26:42 +00:00
ruby-ttfunk Update ruby-ttfunk package to 1.0.3. 2011-12-15 15:36:20 +00:00
sgi-fonts Add bdftopcf to USE_TOOLS, because it is used on build stage. 2012-03-25 05:36:14 +00:00
t1lib Use ${RM} -f to avoid failure if no files are found to be removed. 2012-02-02 09:26:17 +00:00
t1utils Add description of patch. 2009-08-11 14:59:09 +00:00
takao-fonts-ttf Update MAINTAINER e-mail address. 2011-03-07 08:52:44 +00:00
tamsyn-font Update to 1.9 on request by author: 2012-04-20 15:00:12 +00:00
terminus-font Update Terminus font to version 4.36 2012-02-02 21:17:40 +00:00
tex-adobemapping Update tex-adobemapping to 2010.21940. 2011-07-15 19:33:53 +00:00
tex-ae Let tex-ae{,-doc} use DISTFILES from TeX Live 2009. No functional change. 2010-02-15 00:51:26 +00:00
tex-ae-doc Let tex-ae{,-doc} use DISTFILES from TeX Live 2009. No functional change. 2010-02-15 00:51:26 +00:00
tex-amsfonts Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-amsfonts-doc Update DISTFILES for tex-amsfonts{,-doc} for TeX Live 2010. 2010-09-24 20:28:58 +00:00
tex-arphic Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-arphic-doc Import tex-arphic-doc-2.11 as fonts/tex-arphic-doc. 2011-03-21 16:52:39 +00:00
tex-avantgar Update tex-avantgar to 2010.21993. 2011-07-20 02:00:15 +00:00
tex-bbold Import tex-bbold-1.01 as fonts/tex-bbold. 2012-05-08 18:28:38 +00:00
tex-bbold-doc Import tex-bbold-doc-1.01 as fonts/tex-bbold-doc. 2012-05-08 18:28:51 +00:00
tex-bbold-type1 Make font names in the map file match with the names defined in font files. 2012-05-09 21:02:03 +00:00
tex-bbold-type1-doc Import tex-bbold-type1-doc-2011 as fonts/tex-bbold-type1-doc. 2012-05-08 18:00:16 +00:00
tex-bera Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-bera-doc Import tex-bera-doc-2010 as fonts/tex-bera-doc. 2011-03-06 20:51:26 +00:00
tex-bookman Update tex-bookman to 2010.21993. 2011-07-20 02:03:25 +00:00
tex-charter Import tex-charter-2010 as fonts/tex-charter. 2011-03-03 04:13:17 +00:00
tex-charter-doc Import tex-charter-doc-2010 as fonts/tex-charter-doc. 2011-03-03 04:13:26 +00:00
tex-cm Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-cm-doc Update DISTFILES of tex-cm{,-doc} for TeX Live 2010. No functional change. 2010-09-13 05:07:54 +00:00
tex-cm-super Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-cm-super-doc Let tex-cm-super{,-doc} use DISTFILES from TeX Live 2009. 2010-05-25 07:14:56 +00:00
tex-cm-unicode Import tex-cm-unicode-0.7.0 as fonts/tex-cm-unicode. 2011-10-10 22:07:23 +00:00
tex-cm-unicode-doc Import tex-cm-unicode-doc-0.7.0 as fonts/tex-cm-unicode-doc. 2011-10-10 22:07:32 +00:00
tex-cmcyr Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-cmcyr-doc Update DISTFILES for TeX Live 2010. No functional change. 2010-09-13 05:19:46 +00:00
tex-cmextra Import tex-cmextra-2010 as fonts/tex-cmextra. 2011-03-03 19:14:05 +00:00
tex-cmsd Import tex-cmsd-2010 as fonts/tex-cmsd. 2011-01-22 22:13:07 +00:00
tex-cmsd-doc Import tex-cmsd-doc-2010 as fonts/tex-cmsd-doc. 2011-01-22 22:13:15 +00:00
tex-cns Import tex-cns-2011 as fonts/tex-cns. 2011-10-19 22:02:28 +00:00
tex-cns-doc Import tex-cns-doc-2011 as fonts/tex-cns-doc. 2011-10-19 22:02:38 +00:00
tex-collection-fontsrecommended Fix paths to tex-wasysym{,-doc}. 2011-03-08 19:27:27 +00:00
tex-collection-fontsrecommended-doc Fix paths to tex-wasysym{,-doc}. 2011-03-08 19:27:27 +00:00
tex-courier Update tex-courier to 2010.21993. 2011-07-20 02:06:03 +00:00
tex-ec Update DISTFILES of tex-ec{,-doc} for TeX Live 2010. No functional change. 2011-01-11 17:00:01 +00:00
tex-ec-doc Update DISTFILES of tex-ec{,-doc} for TeX Live 2010. No functional change. 2011-01-11 17:00:01 +00:00
tex-eco Import tex-eco-1.3 as fonts/tex-eco. 2011-03-10 20:16:12 +00:00
tex-eco-doc Import tex-eco-doc-1.3 as fonts/tex-eco-doc. 2011-03-10 20:16:39 +00:00
tex-esint Import tex-esint-1.1 as fonts/tex-esint. 2011-03-10 20:39:21 +00:00
tex-esint-doc Import tex-esint-doc-1.1 as fonts/tex-esint-doc. 2011-03-10 20:39:31 +00:00
tex-euenc Update tex-euenc{,-doc} to 0.1h. 2010-09-19 14:35:48 +00:00
tex-euenc-doc Update tex-euenc{,-doc} to 0.1h. 2010-09-19 14:35:48 +00:00
tex-euro-ce Import tex-euro-ce-2010 as fonts/tex-euro-ce. 2011-03-04 19:51:53 +00:00
tex-euro-ce-doc Import tex-euro-ce-doc-2010 as fonts/tex-euro-ce-doc. 2011-03-04 19:52:01 +00:00
tex-eurofont Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-eurofont-doc Import tex-eurofont-doc-1.1.3 as fonts/tex-eurofont-doc. 2011-03-06 21:13:34 +00:00
tex-eurosans Import tex-eurosans-2.1 as fonts/tex-eurosans. 2011-03-06 23:22:09 +00:00
tex-eurosans-doc Import tex-eurosans-doc-2.1 as fonts/tex-eurosans-doc. 2011-03-06 23:22:16 +00:00
tex-eurosym Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-eurosym-doc Import tex-eurosym-doc-1.4 from pkgsrc-wip. Packaged by Nicolas Thauvin. 2010-09-08 18:32:06 +00:00
tex-fontname Import tex-fontname-2010 as fonts/tex-fontname. 2011-03-15 18:11:45 +00:00
tex-fontname-doc Import tex-fontname-doc-2010 as fonts/tex-fontname-doc. 2011-03-15 18:11:53 +00:00
tex-fontspec Update tex-fontspec{,-doc} to 2.1f. 2011-03-17 17:58:04 +00:00
tex-fontspec-doc Update tex-fontspec{,-doc} to 2.1f. 2011-03-17 17:58:04 +00:00
tex-fourier Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-fourier-doc Import tex-fourier-doc-1.3 as fonts/tex-fourier-doc. 2011-03-13 23:31:04 +00:00
tex-fpl Import tex-fpl-1.002 as fonts/tex-fpl. 2011-03-06 23:23:50 +00:00
tex-fpl-doc Fix a typo. 2012-03-07 04:03:13 +00:00
tex-garuda-c90 Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-glyphlist Update tex-glyphlist to 2.84. 2010-11-11 18:30:23 +00:00
tex-helvetic Update tex-helvetic to 2010.21993. 2011-07-20 02:09:38 +00:00
tex-ipaex Import tex-ipaex-2011 as fonts/tex-ipaex. 2012-03-04 01:11:24 +00:00
tex-ipaex-doc Import tex-ipaex-doc-2011 as fonts/tex-ipaex-doc. 2012-03-04 01:11:34 +00:00
tex-japanese-otf Import tex-japanese-otf-1.7b4 as fonts/tex-japanese-otf. 2012-03-04 01:13:42 +00:00
tex-japanese-otf-doc Import tex-japanese-otf-doc-1.7b4 as fonts/tex-japanese-otf-doc. 2012-03-04 01:13:54 +00:00
tex-kotex-base Update tex-kotex-base{,-doc} to 0.3. 2011-11-29 20:35:32 +00:00
tex-kotex-base-doc Update tex-kotex-base{,-doc} to 0.3. 2011-11-29 20:35:32 +00:00
tex-latex-fonts Update DISTFILES for TeX Live 2010. No functional change. 2010-09-13 15:19:41 +00:00
tex-lcyw Import tex-lcyw-1.1 as fonts/tex-lcyw. 2011-03-14 21:41:52 +00:00
tex-lcyw-doc Import tex-lcyw-doc-1.1 as fonts/tex-lcyw-doc. 2011-03-14 21:42:00 +00:00
tex-lh Import tex-lh-3.5g as fonts/tex-lh. 2010-05-10 22:39:01 +00:00
tex-lh-doc Import tex-lh-doc-3.5g as fonts/tex-lh-doc. 2010-05-10 22:39:28 +00:00
tex-lm Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-lm-doc Update DISTFILES for TeX Live 2010. No functional change. 2010-09-14 00:18:08 +00:00
tex-ly1 Update PLIST for the previous commit. 2011-01-21 18:42:53 +00:00
tex-ly1-doc Update tex-ly1{,-doc} to TeX Live r21086. 2011-01-21 18:42:04 +00:00
tex-manfnt Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-marvosym Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-marvosym-doc Let tex-marvosym{,-doc} use DISTFILES from TeX Live 2009. 2010-05-12 09:30:47 +00:00
tex-mathpazo Import tex-mathpazo-1.003 as fonts/tex-mathpazo. 2011-03-06 23:27:59 +00:00
tex-mathpazo-doc Import tex-mathpazo-doc-1.003 as fonts/tex-mathpazo-doc. 2011-03-06 23:28:17 +00:00
tex-metafont Sync tex-metafont with TeX Live r21566. No functional change. 2011-04-13 01:48:55 +00:00
tex-mflogo Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-mflogo-doc Update DISTFILES for TeX Live 2010. 2010-09-14 20:50:11 +00:00
tex-mfware Sync tex-mfware with TeX Live r21345. 2011-03-03 22:28:23 +00:00
tex-ncntrsbk Update tex-ncntrsbk to 2010.21993. 2011-07-20 02:11:23 +00:00
tex-norasi-c90 Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-ocr-b Import tex-ocr-b-2011 as fonts/tex-ocr-b. 2011-08-22 16:27:36 +00:00
tex-ocr-b-doc Import tex-ocr-b-doc-2011 as fonts/tex-ocr-b-doc. 2011-08-22 16:28:36 +00:00
tex-palatino Update tex-palatino to 2010.21993. 2011-07-20 02:13:53 +00:00
tex-psnfss Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-psnfss-doc Update tex-psnfss{,-doc} to TeX Live r20257. No functional change. 2010-11-17 17:37:33 +00:00
tex-pxfonts Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-pxfonts-doc Import tex-pxfonts-doc-2010 as fonts/tex-pxfonts-doc. 2011-03-07 20:04:35 +00:00
tex-rsfs Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-rsfs-doc Update DISTFILES for TeX Live 2010. No functional change. 2010-09-14 00:18:08 +00:00
tex-stmaryrd Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-stmaryrd-doc Update tex-stmaryrd{,-doc} to 2010. 2011-07-20 02:25:55 +00:00
tex-symbol Sync URW fonts with TeX Live 21570. No functional change. 2011-03-07 19:52:16 +00:00
tex-tex-gyre Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-tex-gyre-doc Import tex-tex-gyre-doc-2.004 as fonts/tex-tex-gyre-doc. 2011-03-08 18:33:51 +00:00
tex-times Update tex-times to 2010.21993. 2011-07-20 02:16:08 +00:00
tex-tipa Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-tipa-doc Let tex-tipa-doc use DISTFILES from TeX Live 2009. No functional change. 2010-04-21 05:49:31 +00:00
tex-ttfutils Import tex-ttfutils-2011 as fonts/tex-ttfutils. 2011-10-19 20:11:45 +00:00
tex-ttfutils-doc Import tex-ttfutils-doc-2011 as fonts/tex-ttfutils-doc. 2011-10-19 20:11:55 +00:00
tex-txfonts Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-txfonts-doc Update DISTFILES for TeX Live 2010. No functional change. 2010-09-14 00:18:08 +00:00
tex-uhc Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-uhc-doc Import tex-uhc-doc-2011 as fonts/tex-uhc-doc. 2011-10-19 21:39:28 +00:00
tex-utopia Import tex-utopia-2010 as fonts/tex-utopia. 2011-03-08 18:37:26 +00:00
tex-utopia-doc Import tex-utopia-doc-2010 as fonts/tex-utopia-doc. 2011-03-08 18:37:34 +00:00
tex-wadalab Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-wadalab-doc Import tex-wadalab-doc-2011 as fonts/tex-wadalab-doc. 2011-10-19 22:19:40 +00:00
tex-wasy Replace the updmap script with the version in TeX Live 2011. 2011-11-06 08:43:28 +00:00
tex-wasy-doc Update DISTFILES for TeX Live 2010. No functional change. 2010-09-14 00:18:08 +00:00
tex-wasysym Import tex-wasysym-2.0 as fonts/tex-wasysym. 2011-03-08 19:20:41 +00:00
tex-wasysym-doc Import tex-wasysym-doc-2.0 as fonts/tex-wasysym-doc. 2011-03-08 19:20:58 +00:00
tex-zapfchan Update tex-zapfchan to 2010.21993. 2011-07-20 02:18:17 +00:00
tex-zapfding Sync URW fonts with TeX Live 21570. No functional change. 2011-03-07 19:52:16 +00:00
thaixfonts Fix more OWN_DIRS abuse. 2011-10-20 11:32:11 +00:00
ttf2pk Sync ttf2pk with TeX Live 2011. 2011-07-28 21:09:54 +00:00
ttf2pt1 Recursive bump for graphics/freetype2 buildlink addition. 2011-11-01 06:00:33 +00:00
ttftot42 recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
ttmkfdir2 Recursive bump for graphics/freetype2 buildlink addition. 2011-11-01 06:00:33 +00:00
type1inst Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
umefont-ttf Update to 0.440 2012-06-04 16:14:17 +00:00
un-core-ttf Update un-core-ttf to 1.0.2.20080514. 2008-12-21 00:25:00 +00:00
un-extra-ttf Update un-extra-ttf to 1.0.2.20080514. 2008-12-21 00:26:11 +00:00
uni-vga Fix path to bdftopcf and gzip. 2011-11-23 15:39:57 +00:00
uralic-ttf Initial import of uralic-ttf-0.0.20040603: 2009-09-01 21:04:31 +00:00
urbanrenewal-ttf Fix paths (caused by late PKGNAME change). Noted by Timothy E. Larson. 2011-03-01 15:16:07 +00:00
urw-fonts Add urw-fonts-1 which contains newer and fixed versions of the fonts 2010-06-02 19:00:36 +00:00
vera-ttf Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
vfontcap-kochi Remove kei as maintainer, he resigned. 2009-09-02 08:34:13 +00:00
vlgothic-ttf Update to 20120325 2012-05-20 10:25:53 +00:00
watanabe_vfont ftp service suspended. fetch from backup. 2011-03-11 11:42:46 +00:00
Xft2 Drop imake-check logic from X11 components' builtin.mk. 2012-03-19 12:34:12 +00:00
Xg Switch to using gzip compression. 2012-02-21 06:39:54 +00:00
xmbdfed PKGREV bump for libXp-less openmotif 2011-12-09 14:36:32 +00:00
Makefile Add tex-bbold{,-doc}. 2012-05-08 18:29:45 +00:00