summaryrefslogtreecommitdiff
path: root/x11-fonts (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix a dependency bug that crept in with rev. 1.7, even when using theMarius Strobl2005-09-293-9/+6
| | | | | | | | | | | | | currently commented out pkg-install script linux-expat is only a RUN_DEPENDS rather than a BUILD_DEPENDS so declare it as such instead of a BUILD_DEPENDS and setting RUN_DEPENDS=${BUILD_DEPENDS}. The latter caused archivers/rpm and devel/popt to be unnecessarily dragged in as RUN_DEPENDS (via the included x11-toolkits/linux-gtk/Makefile). Approved by: netchild Notes: svn path=/head/; revision=143778
* search.cpan.org redirect reduction canonicalization project, pass 1:Bill Fenner2005-09-211-1/+1
| | | | | | | | | | | URLs automatically rewritten from /search?dist=Foo or /dist/Foo to /dist/Foo/ (note trailing slash). After a 2002(!) reorganization, this is the preferred way to refer to modules on search.cpan.org. This pass brought to you by http://people.freebsd.org/~fenner/fix-search Notes: svn path=/head/; revision=143304
* - Update to 1.14Michael Johnson2005-09-212-3/+3
| | | | Notes: svn path=/head/; revision=143266
* - Fix build with GNOME 2.12 [1]Jean-Yves Lefort2005-09-131-17/+16
| | | | | | | | | | - Respect ${CFLAGS} - Reformat the Makefile Reported by: Piotr Smyrak <piotr.smyrak@heron.pl> [1] Notes: svn path=/head/; revision=142634
* reset maintainer to ports@FreeBSD.org since original maintainer doesn'tOliver Lehmann2005-09-061-1/+1
| | | | | | | | | have the time any longer to maintain them Approved by: maintainer Notes: svn path=/head/; revision=142117
* Really use libneXtawVolker Stolz2005-08-291-1/+3
| | | | | | | | PR: ports/85392 Submitted by: Ports Fury Notes: svn path=/head/; revision=141350
* Move setup instructions to PKGMESSAGE.Jimmy Olgeni2005-08-283-10/+11
| | | | Notes: svn path=/head/; revision=141185
* - Update to 1.13Michael Johnson2005-08-282-3/+4
| | | | Notes: svn path=/head/; revision=141132
* - Remove ttmkfdir dependency and do not use it, using static method byJeremy Messenger2005-08-283-122/+667
| | | | | | | | | | | | | | | | | | | | | | | | | | add fonts.dir in webfonts/files/. It's easier on us for no prefer what to use tools. For example, if you install Xorg and why do you need ttmkfdir when there have mkfontscale and mkfontdir that came with Xorg? - Add run fc-cache like bitstream-vera port has, useful for the new Xorg/XFree86 and other desktops. - Remove the rename, leave the default alone to avoid cause a few apps crash. - Move LICENSE in DOCSDIR instead in font directory. - Remove too many targets, they aren't need and the complicate isn't need too. - Correct the extract way, now it will extracting in WRKSRC. - Remove WITH_NETSCAPE_ALIASES, there's no Netscape 4.x in ports tree. - A few other cleans up. BTW: If it causes any different language font problem, please let me know and I will be happy to try to fix it. PR: ports/84201 Approved by: Konstantinos Konstantinidis <konstand@gmail.com> (maintainer) Tested by: keramida (Greek font) Notes: svn path=/head/; revision=141008
* - Update CJK patch to fix bug which caused Firefox to crash on startupPav Lucistnik2005-07-152-5/+6
| | | | | | | Submitted by: chinsan <chinsan.tw@gmail.com> Notes: svn path=/head/; revision=139302
* - Readd WITH_CJK knob with an updated patchPav Lucistnik2005-07-152-0/+8
| | | | | | | Submitted by: nobutaka Notes: svn path=/head/; revision=139273
* - Remove WITH_CJK knob and patch, it was merged into 2.1.7Pav Lucistnik2005-07-142-8/+0
| | | | | | | Submitted by: chinsan <chinsan.tw@gmail.com> Notes: svn path=/head/; revision=139204
* - Restore distinfo for WITH_CJK knobPav Lucistnik2005-07-141-0/+2
| | | | | | | | PR: ports/83446 Submitted by: chinsan <chinsan.tw@gmail.com> Notes: svn path=/head/; revision=139198
* Update to 2.1.7.Joe Marcus Clarke2005-07-144-71/+5
| | | | Notes: svn path=/head/; revision=139168
* Change the software's Makefile to run `mkfontdir' in the destinationMikhail Teterin2005-07-112-1/+18
| | | | | | | | | directory after install instead of the ${WRKSRC} after build. This works around a bug in Xorg's mkfontdir, which lists both -- the bdf-sources and the pcf-binary fonts -- in the generated fonts.dir. Notes: svn path=/head/; revision=138920
* Update to 0.35Erwin Lansing2005-07-063-65/+57
| | | | Notes: svn path=/head/; revision=138573
* - Update to 1.11Michael Johnson2005-06-222-3/+3
| | | | Notes: svn path=/head/; revision=137830
* Mega-patch to cleanup the ports infrastructure regarding our linux bits:Alexander Leidinger2005-06-175-8/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - USE_LINUX now implies NO_FILTER_SHLIBS=yes. It also doesn't use FreeBSD tools to strip binaries anymore, so it's not neccesary anymore to override STRIP and STRIP_CMD. - USE_LINUX_PREFIX implies NO_MTREE now. - In the USE_LINUX case, USE_XLIB now depends upon the linux X11 libraries instead upon the native FreeBSD libraries. - The variable LINUX_BASE_PORT contains a string which is suitable as an item in *_DEPENDS, so if a port BATCH_DEPENDS or FETCH_DEPENDS upon the default (or overriden) linux base, ${LINUX_BASE_PORT} should be used instead of a hardcoded reference. - Change all ports to comply to the "new world order". - The Ports Collection now allows to override the default linux_base port. Specify e.g. OVERRIDE_LINUX_BASE_PORT=rh-9 in /etc/make.conf to use ${PORTSDIR}/emulators/linux_base-rh-9 (the logic is to use ${PORTSDIR}/emulators/linux_base-${OVERRIDE_LINUX_BASE_PORT}). - If USE_LINUX or OVERRIDE_LINUX_BASE doesn't point to an existing linux_base port and if USE_LINUX isn't set to "yes" (case insensitive), the port will be marked as IGNORE. [1] - Readd USE_LINUX knobs into several ports and make several uses of a conditional dependency ("USE_LINUX?=") into an unconditional one ("USE_LINUX=") which where removed/changed by Trevor to allow the use of alternative linux_base ports. While this is a nice goal, the implementation resulted in missing dependencies. The OVERRIDE_LINUX_BASE_PORT knob in this commit is supposed to fix the problem while keeping the feature. Basicaly this includes a backout of Trevor's commit, to prevent confusion I mention it here explicitely. - Use the correct prefix (X11- instead of LOCAL- or LINUX-) for some ports. Chase dependencies for this. - Changes to make linux_devtools installable on amd64, remove some stray device nodes (they don't work on recent OS versions and aren't really needed). - Make linux_base-8 PREFIX clean and remove some stray device nodes. Additionally tell a little bit more about how to setup NIS/YP [2]. - Update the PGSQL dependency in the linux-opengroupware port to a recent version (the old one isn't available anymore), I don't know if this works (at least it isn't more broken than before). - Use PREFIX/usr/share/doc instead of PREFIX/usr/doc in the divx4linux ports, the former path exists already and gets populated by other packages too (PREFIX=LINUXPREFIX!). - Fix some obvious (non-linuxolator) bugs in some linux ports while being there. - Bump PORTREVISION where neccesary. Requested by: portmgr (linimon) [1] Submittted by: Gerrit Kuehn <gerrit_huehn@gruft.fido.de [2] Approved by: portmgr (kris, linimon), maintainers (or maintainer timeout) Tested on: ports cluster (kris) Reviewed by: silence on emulation@ Superseedes PR: 69997 Maintainer approval from: chris@chrisburkert.de cracauer@cons.org des girgen jamie@bishopston.net mezz mi nivit@users.sf.net pat simond@irrelevant.org riggs@rrr.de Udo.Schweigert@Siemens.com Notes: svn path=/head/; revision=137660
* Fix up plist after modifications to mtree (BSD.x11-4.dist rev. 1.27).Dejan Lesjak2005-06-158-24/+13
| | | | Notes: svn path=/head/; revision=137467
* Upgrade to XFree86 4.5.0.Dejan Lesjak2005-06-1518-33/+46
| | | | | | | | | | | | | | | | | | | | | Ports changes: - Drop dependency on x11/wrapper. X server already contains this code (programs/Xserver/os/utils.c rev. 3.58). - Install default SecurityPolicy with XFree86-4-libraries, thus avoiding plists and who-owns-what complications between different fooServer ports. Copy default file to real one if that doesn't exist and remove both upon uninstall if they are the same. - Revert change to Imake.rules rev. 3.132 in devel/imake-4 port, since couple of ports break with this change (devel/imake-4/files/patch-Imake.rules) - Add grehans patches for PPC [1] - Several of directories that were previously in /etc/mtree/BSD.x11-4.dist were moved to respective ports pkg-plists PR: [1] 78345, 78346, 78348, 78352, 78353, 78354, 78355, 78356 Notes: svn path=/head/; revision=137466
* - Update to 1.10Michael Johnson2005-05-222-3/+3
| | | | Notes: svn path=/head/; revision=135884
* Add mgopen.Jean-Yves Lefort2005-05-206-0/+98
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The MgOpen typefaces are freely available and contain glyphs for viewing texts in Greek (written in the monotoniko system). The MgOpen typeface collection is composed of the following typefaces: - MgOpenCanonica is a serif typeface, based on the design of Times Roman. - MgOpenCosmetica is a sans-serif typeface, based on the design of Optima. - MgOpenModata is another sans-serif typeface. - MgOpenModerna is a sans-serif typeface, based on the design of Helvetica. Each family contains four fonts, namely all the combinations of regular and bold weight and upright and italic (or oblique) shape. All the fonts contain glyphs for the latin and greek alphabets (using the monotoniko system), while the fonts of the Canonica family also contain all the glyphs necessary for viewing Greek texts written in the polytoniko system. All the fonts use the Unicode encoding for characters and are in the TrueType format. The fonts, in their initial release, have some characters missing (the most important one being the Euro symbol). These shortcomings will be fixed in future releases. WWW: http://www.ellak.gr/fonts/mgopen/ PR: ports/81137 Submitted by: Panagiotis Astithas <past@ebs.gr> Notes: svn path=/head/; revision=135690
* - MASTER_SITE is dead, mirror distfilePav Lucistnik2005-05-201-1/+3
| | | | | | | Reported by: krismail Notes: svn path=/head/; revision=135679
* Add wqy.Jean-Yves Lefort2005-05-144-0/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | The wqy font includes all the CJK characters covered by the Unicode Standard 4.0. This font is created by merging GNU Unifont (by Roman Czyborra <roman@czyborra.com> and David Starner <dvdeug@debian.org>) with GBK 16 font from yh-3.1 (Yan Huang Chinese Platform, Redflag Linux, http://www.redflag-linux.com/). The CJK Unified Ideographs (U+4E00~U+9FA5) are now complete, and the quality of the bitmaps has improved significantly. This release is part of an ongoing effort from the WenQuanYi Project to create high-quality open-source bitmap Chinese fonts. Currently only bitmap fonts are available. TTF fonts are in progress. WWW: http://wqy.sourceforge.net/en/ WWW: http://sitaphi.com/pub/song_jian_biao/ PR: ports/80878 Submitted by: Dryice Liu <dryice@liu.com.cn> Notes: svn path=/head/; revision=135229
* - Change maintainer's mail address.Vanilla I. Shu2005-05-033-5/+5
| | | | | | | | | | | - Change URL of {MASTER,PATCH}_SITES where I distribute sources/patches. - mkbold/mkitalic: Make portlint happy. PR: ports/80538 Submitted by: maintainer Notes: svn path=/head/; revision=134539
* Add tolkien-ttf, a collection of the best JRR Tolkien TrueType fontsSam Lawrance2005-04-226-0/+92
| | | | | | | | | | | based on Daniel Steven Smith encoding system. PR: ports/79396 Submitted by: Andrew <obscure9@gmail.com> Approved by: clement (mentor) Notes: svn path=/head/; revision=133941
* - Update to 1.9Michael Johnson2005-04-182-3/+3
| | | | Notes: svn path=/head/; revision=133602
* Change my MAINTAINER email address to jylefort@FreeBSD.orgJean-Yves Lefort2005-04-122-2/+2
| | | | | | | Approved by: adamw (mentor) Notes: svn path=/head/; revision=133186
* At Kris's request, back out the MACHINE_ARCH spelling correction untilDavid E. O'Brien2005-04-121-1/+1
| | | | | | | after 5.4-RELEASE. Notes: svn path=/head/; revision=133116
* Assist getting more ports working on AMD64 by obeying theDavid E. O'Brien2005-04-111-1/+1
| | | | | | | Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'. Notes: svn path=/head/; revision=132992
* Update from 1.14 to 1.15 -- the older distfile is no longer available.Mikhail Teterin2005-04-102-3/+3
| | | | | | | Approved by: Thierry Thomas (maintainer) Notes: svn path=/head/; revision=132919
* - Update to 3.0.1Pav Lucistnik2005-04-103-7/+13
| | | | | | | | PR: ports/79757 Submitted by: Ports Fury Notes: svn path=/head/; revision=132886
* Remove XAWVER from neXtaw LIB_DEPENDS re. neXtaw will be depended upon justDejan Lesjak2005-04-101-1/+1
| | | | | | | | | | fine without explicit version in there, while specifying it can occasionally confuse (cf. ports/78527). Packages depend on specific versions of neXtaw and X libraries anyway and ports will get the right version number through imake. Notes: svn path=/head/; revision=132856
* fix packaging on 4Oliver Lehmann2005-04-071-1/+1
| | | | | | | | Sponsored by: Dejan Lesjak <dejan.lesjak@ijs.si> Noted by: pointyhat Notes: svn path=/head/; revision=132704
* Update x11-fonts/mkbold-mkitalic to 0.09.Alexey Dokuchaev2005-04-063-5/+4
| | | | | | | | PR: ports/79568 Submitted by: maintainer Notes: svn path=/head/; revision=132631
* Fix a crash that can occur when using TrueType fonts. This should haveJoe Marcus Clarke2005-03-272-0/+13
| | | | | | | | | | | | gone in with X.Org 6.8.2, but since we're using the external libXft library, it was missed. Reported by: adamw Obtained from: Freedesktop.org CVS Approved by: portmgr (implicit) Notes: svn path=/head/; revision=132091
* Generate proper package listing when using new mtree from xorg-server port.Dejan Lesjak2005-03-182-1/+10
| | | | Notes: svn path=/head/; revision=131587
* Upgrade X.Org ports to 6.8.2.Dejan Lesjak2005-03-1730-150/+62
| | | | | | | | | | | | | | | | | | | | | | | | Release notes are available at http://www.x.org/X11R6.8.2/doc/RELNOTES.html Thanks to kris and krion for running several cluster test builds, maintainers of GNOME for prompt responses, portmgr for postponing ports freeze for this update, testers on FreeBSD-X11@ list and others that I might have mised here. Also included: - fix for ATI Mobility on Dell Inspiron 7500 (obtained from Marc Aurele La France; obtained and tested by julian) - fix for kbd driver on Sparc64 (tested by Aaron Dudek, Michael G. Jung and Matthias Muthmann), which still appears to have problems with some keyboards - so - fix for kbd driver on PC98 (reported and tested by NAKAJI Hiroyuki; PR ports/77217) - fix for i810 on HP D530 (obtained from Egbert Eich; obtained and tested by Anders Nor Berle; PR ports/74757) Notes: svn path=/head/; revision=131533
* Reset maintainer to ports@FreeBSD.orgSergey Skvortsov2005-03-172-3/+1
| | | | | | | Approved by: portmgr (krion) Notes: svn path=/head/; revision=131511
* Update to the latest Firefly patchset. This patchset makes CJK TrueType fontsJoe Marcus Clarke2005-03-163-13/+7
| | | | | | | | | | prettier. PR: 78886 Submitted by: hamigua <hamigua@cuc.cn> Notes: svn path=/head/; revision=131378
* - Update to 1.8Michael Johnson2005-03-143-12/+10
| | | | | | | Thanks to lesi for not letting me go insane. Notes: svn path=/head/; revision=131151
* Bump PORTREVISION to chase the glib20 shared lib version change.Joe Marcus Clarke2005-03-121-0/+1
| | | | Notes: svn path=/head/; revision=130974
* Add mathfonts 4.1, mathematica fonts for MathML-enabled Mozilla.Thierry Thomas2005-03-066-0/+120
| | | | | | | | These fonts are required to display MathML pages with Mozilla or Firefox. Notes: svn path=/head/; revision=130484
* Add texcm-ttf 20010117, teX's Computer Modern Fonts.Thierry Thomas2005-03-066-0/+87
| | | | | | | | These fonts are required to display MathML pages with Mozilla or Firefox. Notes: svn path=/head/; revision=130482
* Remove hardcoding of MTREE_FILE. This is handled in bsd.port.mk sinceDejan Lesjak2005-03-061-1/+0
| | | | | | | rev. 1.503 for ${PREFIX} == ${XPREFIX} cases. Notes: svn path=/head/; revision=130436
* Add another MASTER_SITE. It's ridiculously slow (I neverAdam Weinberger2005-03-051-1/+2
| | | | | | | got above 4 Kbps), but at least that server's alive. Notes: svn path=/head/; revision=130431
* Remove the now-redundant MTREE file selection code. This is handled inJoe Marcus Clarke2005-03-042-12/+0
| | | | | | | | | bsd.port.mk. Requested by: lesi Notes: svn path=/head/; revision=130329
* Re-add the distinfo entries for the CJK patch.Joe Marcus Clarke2005-02-241-0/+2
| | | | | | | | PR: 78032 Submitted by: NIIMI Satoshi <sa2c@sa2c.net> Notes: svn path=/head/; revision=129685
* Update to 0.07.Hiroki Sato2005-02-232-4/+4
| | | | | | | | | | | | | | | | | | | | The previous versions can generate corrupted output when the input BDF font file contains a '%' character. The users should update this port and rebuild all of BDF files generated by the old ones if any. Also, the previous versions have a possible format string vulnerability which can be triggered by a maliciously-crafted BDF font file. Reported by: SHIOZAKI Takehiko (st at be dot to), Tod McQuillin (devin at spamcop dot net) Suggested by: KANOU Hiroki (kanou at khdd dot net) Fixed by: caffeine@m13.alpha-net.ne.jp (Author) Approved by: KOMATSU Shinichiro (maintainer) Security: the previous versions have a format string vulnerability Notes: svn path=/head/; revision=129621
* Update to 4.11.Norikatsu Shigemura2005-02-205-56/+671
| | | | | | | | | PR: ports/77762 Submitted by: Kang-min Liu <gugod@gugod.org> (maintainer) Pointed out by: pointyhat via kris Notes: svn path=/head/; revision=129335