/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- * camel-private.h: Private info for class implementers. * * Authors: Michael Zucchi * * Copyright 1999, 2000 Ximian, Inc. (www.ximian.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of version 2 of the GNU General Public * License as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA */ #ifndef CAMEL_PRIVATE_H #define CAMEL_PRIVATE_H 1 #ifdef __cplusplus extern "C" { #pragma } #endif /* __cplusplus }*/ /* need a way to configure and save this data, if this header is to be installed. For now, dont install it */ #include "config.h" #ifdef ENABLE_THREADS #include #include #endif struct _CamelFolderPrivate { #ifdef ENABLE_THREADS EMutex *lock; EMutex *change_lock; #endif /* must require the 'change_lock' to access this */ int frozen; struct _CamelFolderChangeInfo *changed_frozen; /* queues changed events */ }; #ifdef ENABLE_THREADS #define CAMEL_FOLDER_LOCK(f, l) (e_mutex_lock(((CamelFolder *)f)->priv->l)) #define CAMEL_FOLDER_UNLOCK(f, l) (e_mutex_unlock(((CamelFolder *)f)->priv->l)) #else #define CAMEL_FOLDER_LOCK(f, l) #define CAMEL_FOLDER_UNLOCK(f, l) #endif struct _CamelStorePrivate { #ifdef ENABLE_THREADS EMutex *folder_lock; /* for locking folder operations */ EMutex *cache_lock; /* for locking access to the cache */ #else gpointer dummy; #endif }; #ifdef ENABLE_THREADS #define CAMEL_STORE_LOCK(f, l) (e_mutex_lock(((CamelStore *)f)->priv->l)) #define CAMEL_STORE_UNLOCK(f, l) (e_mutex_unlock(((CamelStore *)f)->priv->l)) #else #define CAMEL_STORE_LOCK(f, l) #define CAMEL_STORE_UNLOCK(f, l) #endif struct _CamelTransportPrivate { #ifdef ENABLE_THREADS GMutex *send_lock; /* for locking send operations */ #else gpointer dummy; #endif }; #ifdef ENABLE_THREADS #define CAMEL_TRANSPORT_LOCK(f, l) (g_mutex_lock(((CamelTransport *)f)->priv->l)) #define CAMEL_TRANSPORT_UNLOCK(f, l) (g_mutex_unlock(((CamelTransport *)f)->priv->l)) #else #define CAMEL_TRANSPORT_LOCK(f, l) #define CAMEL_TRANSPORT_UNLOCK(f, l) #endif struct _CamelServicePrivate { #ifdef ENABLE_THREADS EMutex *connect_lock; /* for locking connection operations */ EMutex *connect_op_lock;/* for locking the connection_op */ #else gpointer dummy; #endif }; #ifdef ENABLE_THREADS #define CAMEL_SERVICE_LOCK(f, l) (e_mutex_lock(((CamelService *)f)->priv->l)) #define CAMEL_SERVICE_UNLOCK(f, l) (e_mutex_unlock(((CamelService *)f)->priv->l)) #else #define CAMEL_SERVICE_LOCK(f, l) #define CAMEL_SERVICE_UNLOCK(f, l) #endif struct _CamelSessionPrivate { #ifdef ENABLE_THREADS GMutex *lock; /* for locking everything basically */ GMutex *thread_lock; /* locking threads */ int thread_id; GHashTable *thread_active; EThread *thread_queue; #else gpointer dummy; #endif }; #ifdef ENABLE_THREADS #define CAMEL_SESSION_LOCK(f, l) (g_mutex_lock(((CamelSession *)f)->priv->l)) #define CAMEL_SESSION_UNLOCK(f, l) (g_mutex_unlock(((CamelSession *)f)->priv->l)) #else #define CAMEL_SESSION_LOCK(f, l) #define CAMEL_SESSION_UNLOCK(f, l) #endif /* most of this stuff really is private, but the lock can be used by subordinate classes */ struct _CamelFolderSummaryPrivate { GHashTable *filter_charset; /* CamelMimeFilterCharset's indexed by source charset */ struct _CamelMimeFilterIndex *filter_index; struct _CamelMimeFilterBasic *filter_64; struct _CamelMimeFilterBasic *filter_qp; struct _CamelMimeFilterBasic *filter_uu; struct _CamelMimeFilterSave *filter_save; struct _CamelMimeFilterHTML *filter_html; struct _CamelStreamFilter *filter_stream; struct _CamelIndex *index; #ifdef ENABLE_THREADS GMutex *summary_lock; /* for the summary hashtable/array */ GMutex *io_lock; /* load/save lock, for access to saved_count, etc */ GMutex *filter_lock; /* for accessing any of the filtering/indexing stuff, since we share them */ GMutex *alloc_lock; /* for setting up and using allocators */ GMutex *ref_lock; /* for reffing/unreffing messageinfo's ALWAYS obtain before summary_lock */ #endif }; #ifdef ENABLE_THREADS #define CAMEL_SUMMARY_LOCK(f, l) (g_mutex_lock(((CamelFolderSummary *)f)->priv->l)) #define CAMEL_SUMMARY_UNLOCK(f, l) (g_mutex_unlock(((CamelFolderSummary *)f)->priv->l)) #else #define CAMEL_SUMMARY_LOCK(f, l) #define CAMEL_SUMMARY_UNLOCK(f, l) #endif struct _CamelStoreSummaryPrivate { #ifdef ENABLE_THREADS GMutex *summary_lock; /* for the summary hashtable/array */ GMutex *io_lock; /* load/save lock, for access to saved_count, etc */ GMutex *alloc_lock; /* for setting up and using allocators */ GMutex *ref_lock; /* for reffing/unreffing messageinfo's ALWAYS obtain before summary_lock */ #else gpointer dummy; #endif }; #ifdef ENABLE_THREADS #define CAMEL_STORE_SUMMARY_LOCK(f, l) (g_mutex_lock(((CamelStoreSummary *)f)->priv->l)) #define CAMEL_STORE_SUMMARY_UNLOCK(f, l) (g_mutex_unlock(((CamelStoreSummary *)f)->priv->l)) #else #define CAMEL_STORE_SUMMARY_LOCK(f, l) #define CAMEL_STORE_SUMMARY_UNLOCK(f, l) #endif struct _CamelVeeFolderPrivate { GList *folders; /* lock using subfolder_lock before changing/accessing */ GList *folders_changed; /* for list of folders that have changed between updates */ int freeze_count; #ifdef ENABLE_THREADS GMutex *summary_lock; /* for locking vfolder summary */ GMutex *subfolder_lock; /* for locking the subfolder list */ GMutex *changed_lock; /* for locking the folders-changed list */ #endif }; #ifdef ENABLE_THREADS #define CAMEL_VEE_FOLDER_LOCK(f, l) (g_mutex_lock(((CamelVeeFolder *)f)->priv->l)) #define CAMEL_VEE_FOLDER_UNLOCK(f, l) (g_mutex_unlock(((CamelVeeFolder *)f)->priv->l)) #else #define CAMEL_VEE_FOLDER_LOCK(f, l) #define CAMEL_VEE_FOLDER_UNLOCK(f, l) #endif struct _CamelDataWrapperPrivate { #ifdef ENABLE_THREADS pthread_mutex_t stream_lock; #else gpointer dummy; #endif }; #ifdef ENABLE_THREADS #define CAMEL_DATA_WRAPPER_LOCK(dw, l) (pthread_mutex_lock(&((CamelDataWrapper *)dw)->priv->l)) #define CAMEL_DATA_WRAPPER_UNLOCK(dw, l) (pthread_mutex_unlock(&((CamelDataWrapper *)dw)->priv->l)) #else #define CAMEL_DATA_WRAPPER_LOCK(dw, l) #define CAMEL_DATA_WRAPPER_UNLOCK(dw, l) #endif #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* CAMEL_PRIVATE_H */ .10-removal&id=9e5169dc7090515dfbe4369a476ece346137846e'>root/x11-fonts
Commit message (Expand)AuthorAgeFilesLines
* - Update to 0.4pav2005-01-284-9/+8
* - Set USE_RC_SUBR to fix the new rcNG startup scriptale2005-01-261-1/+2
* Add x11-fonts/gnome-font-samplerahze2005-01-257-0/+104
* Add rcNG startup script. [1]lesi2005-01-245-0/+71
* Add mkbold-mkitalic 0.06, a C implementation of mkbold/mkitalic.nork2005-01-225-0/+71
* - Update to 1.6ahze2005-01-194-15/+39
* Fix dependency.hrs2005-01-161-2/+2
* Update my email address in MAINTAINER and comment fields.bms2005-01-121-2/+2
* Say hello to the linux mega patch, it consolidates our linux bits anetchild2005-01-017-20/+119
* Support NO_WRKSUBDIR properlykrion2004-12-301-1/+1
* Back out the previous change. Mita-san will continue tohrs2004-12-271-1/+1
* Update COMMENT to make senseahze2004-12-241-1/+1
* Add dejavuahze2004-12-237-0/+201
* Reset MAINTAINER to ports@.nork2004-12-234-4/+4
* Update X.Org ports to 6.8.1, and the DRI port to use Mesa 6.2. Because Mesa 6.2anholt2004-12-2320-59/+168
* New Port x11-fonts/artwiz-aleczapka-deedwin2004-12-226-0/+83
* New Port x11-fonts/artwiz-aleczapka-se - Swedish Encodingedwin2004-12-226-0/+82
* As previously announced, remove x11-fonts/mkfontalias. Its mastersitelinimon2004-11-295-95/+0
* - Remove useless quotes.sem2004-11-241-2/+2
* Add the Firefly font patchset. This patchset is mainly used to makemarcus2004-11-224-0/+23
* farewell to libxpg4.sf2004-11-151-1/+1
* replace /usr/bin/perl with ${PERL}.sf2004-11-101-1/+3
* Update to include information about X.Org as well as XFree86.marcus2004-10-271-2/+5
* Remove trailing whitespace.marcus2004-10-272-2/+2
* Upgrade to 1.14.thierry2004-10-124-6/+6
* Use MASTER_SITE_XORG.lesi2004-09-028-8/+24
* Update my email address to `@FreeBSD.org'.danfe2004-08-271-1/+1
* Depend on x11-fonts/bitstream-vera, as it is also among scalablelesi2004-08-231-1/+3
* Add arkpandora 2.04,krion2004-08-186-0/+133
* - Use more correct path for fonts, to be exact, use X prefix andvs2004-08-133-43/+57
* Reset maintainer. Much thanks to Stijn for maintaining the ports so far!vs2004-08-101-1/+4
* Update XFree86 clients to 4.4 release. Release notes are available atmarcus2004-08-1019-40/+97
* I have forgotten to remove the lthack. The USE_LIBTOOL_VER and lthack shouldmezz2004-07-271-1/+1
* Register missing CONFLICTS, mostly on xorg-libraries-*anholt2004-07-271-1/+1
* Use the correct version of libtool 13 -> 15 to avoid install the *.la files.mezz2004-07-261-1/+1
* - Add a patch to support some Ghostscript fonts.hrs2004-07-253-11/+33
* - Extend IGNORE message, point users to instructions how to switchpav2004-07-248-8/+8
* - Add the X_WINDOW_SYSTEM={xorg,xfree86-4,xfree86-3} variable to bsd.port.mk,anholt2004-07-2432-108/+116
* Start QT2 deorbit by removing expired ports.arved2004-07-235-60/+0
* Change maintainer's mail.krion2004-07-211-1/+1
* Canonicalize MASTER_SITES a bit, to ease sorting by dumb scripts (ranksites)eik2004-07-071-3/+3
* Update to 2.2.3.marcus2004-07-032-3/+3
* add a missing dependency to XFree86-4-clientsoliver2004-06-211-0/+2
* A number of fonts which are useful for TV applicationsoliver2004-06-206-0/+100
* New port: xorg-fontserver taken from X.Org release 6.7.0.anholt2004-06-116-0/+78
* Sync with new bsd.autotools.mkade2004-06-051-1/+1
* Register CONFLICTS on new xorg ports.anholt2004-05-316-0/+12
* Add xorg-fonts-truetype, a port of the X.Org TrueType fonts (bitstream-veraanholt2004-05-317-0/+91
* Add xorg-fonts-miscbitmaps, a port of the X.Org "misc" bitmap fonts.anholt2004-05-316-0/+461
* Add xorg-fonts-cyrillic, a port of the X.Org Cyrillic bitmap fonts.anholt2004-05-316-0/+133
* Add xorg-fonts-75dpi, a port of the X.Org 75 dpi bitmap fonts.anholt2004-05-316-0/+1945
* Add xorg-fonts-100dpi, a port of the X.Org 100 dpi bitmap fonts.anholt2004-05-316-0/+1945
* Add xorg-fonts-encodings, a port of the X.Org font encoding files.anholt2004-05-316-0/+91
* Add xorg-fonts-type1, a port of the X.Org Type1 fonts.anholt2004-05-316-0/+110
* Start the QT2 deorbit by marking all ports that depend non-optionalarved2004-05-171-0/+3
* Remove conditional %%PORTDOCS%% since the docs will be installed no mattermarcus2004-05-121-132/+132
* Fix some portlint warnings, and use lthack to eliminate the needs for amarcus2004-05-123-145/+136
* Update to 1.4.2, fixing a buffer overflow in dirfile.c.anholt2004-05-076-40/+5
* Display install instructions using pkg-message.olgeni2004-05-029-31/+34
* Move install instructions to pkg-message.olgeni2004-05-023-10/+11
* Move install instructions from pkg-descr to pkg-message.olgeni2004-05-013-10/+11
* Add artwiz-aleczapka 1.3, a set of (improved) artwiz fonts.thierry2004-05-016-0/+80
* Use the right MTREE_FILEarved2004-04-191-0/+1
* - Update maintainer's addresspav2004-04-172-2/+2
* Tidy up whitespace.trevor2004-04-111-1/+1
* Use SORT macro. Clarify COMMENT. Use PLIST_DIRS. Drop maintainership.trevor2004-04-071-3/+3
* Add gentium 1.0.1, gentium TrueType font collection.thierry2004-04-0413-0/+381
* Remove category pkg/COMMENT files in favour of a COMMENT variable in thekris2004-04-022-1/+2
* SIZEify (maintainer timeout)trevor2004-03-3122-0/+34
* SIZE update jumbo-commit.bms2004-03-251-0/+1
* Declare CONFLICTS between freedesktop.org X extension/library ports andlofi2004-03-251-0/+2
* Update to 2.1.6 with the official freetype2-2.1.7 fix.marcus2004-03-233-61/+3
* Fix build with freetype2-2.1.7.marcus2004-03-223-0/+36
* - Fix build with new freetypepav2004-03-223-5/+44
* Add size data, approved by maintainers.trevor2004-03-211-0/+1
* Add size data.nork2004-03-201-0/+1
* Revert a portion of the font rendering code that enforces strict bitmap fontmarcus2004-03-192-0/+58
* SIZE-ify my ports.thierry2004-03-191-0/+1
* Add SIZE data.olgeni2004-03-196-0/+6
* Update to 4.7, patch 1. Notable changes in this release:naddy2004-03-195-43/+36
* Add size data, approved by maintainers.trevor2004-03-192-0/+2
* - Add SIZE to GNOME portspav2004-03-181-0/+1
* SIZEify.trevor2004-03-183-0/+3
* Add libXft after a repo-copy from Xft and update to 2.1.5. libXft is simplymarcus2004-03-173-6/+6
* Remove Xft. This port has been renamed libXft.marcus2004-03-176-106/+0
* "Update" to 2.2.2, the latest stable release with a PORTEPOCH bump.marcus2004-03-176-678/+19
* o Bump $LIB_DEPENDS line to chase expat's shlib version.kuriyama2004-03-141-2/+2
* Whoa there, boy, that's a mighty big commit y'all have there...ade2004-03-141-1/+1
* Avoid "size unknown" error by setting DISABLE_SIZE.trevor2004-03-131-0/+1
* - Style: s/@freebsd.org/@FreeBSD.org/pav2004-03-041-1/+1
* - Fix MASTER_SITESclement2004-02-231-1/+1
* Apply studly caps to "FreeBSD".trevor2004-02-071-1/+1
* Use PLIST_FILES (bento-tested, marcus-reviewed).trevor2004-02-0614-7/+7
* Use PLIST_FILES.trevor2004-02-068-5/+5
* Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.marcus2004-02-0410-6/+10
* patch fromtrevor2004-02-014-12/+4
* Make fetchable, add some mirrors from gimp-devel.olgeni2004-01-301-1/+5
* SIZEify.trevor2004-01-308-0/+9
* Add size data.trevor2004-01-281-0/+1
* Add size data.trevor2004-01-281-0/+1
* Update to 1.4.1anholt2004-01-253-16/+5
* No member of the kde@ team has touched anything related to Qt2 in ages, sowill2004-01-241-1/+1
* Use the CPIO macro defined in bsd.port.mk.trevor2004-01-221-1/+1
* New port: Prerelease version of libXfont from freedesktop.org:anholt2003-12-225-0/+60
* - Use canonical form (ports@FreeBSD.org) in MAINTAINER linesergei2003-12-211-1/+1
* s/rpm2cpio/rpm2cpio.pl/ after the recent update of archivers/rpm2cpio (thenetchild2003-12-125-10/+10
* Add Code2000, a shareware Unicode reference font. It contains over 34000 glyphs!pav2003-12-096-0/+158
* - On many systems, ttmkfdir was the only reason to install freetype1.pav2003-12-096-103/+59
* Fix packing list.trevor2003-11-213-3/+6
* Define USE_PERL5_BUILD, not erroneous USE_PERL.trevor2003-11-201-1/+1
* Define USE_PERL to make Perl available for (mostly deprecated)trevor2003-11-201-0/+1
* new port providing Truetype fonts to use with Linux programstrevor2003-11-204-0/+57
* Decrease PORTREVISION from 2 to 0. I hope no one has installedtrevor2003-11-193-0/+3
* new Linux/i386 binary port of Fontconfigtrevor2003-11-1910-0/+163
* USE_REINPLACE need be defined only when REINPLACE_CMD is used.trevor2003-11-173-3/+0
* Move these ports to the new arabic category after the repocopies. Fixwill2003-11-1620-368/+0
* Switch MAINTAINER to x11@FreeBSD.org for group maintaining of these ports.anholt2003-11-126-6/+6
* utilize SITE_PERLijliao2003-10-243-87/+86
* Make fetchable.trevor2003-10-211-1/+2
* New Port: x11-fonts/ppantsfontsedwin2003-10-037-0/+62
* New arabic port: khototedwin2003-10-035-0/+84
* New arabic port: kacst_fontsedwin2003-10-036-0/+68
* New arabic port: ae_fonts_ttfedwin2003-10-036-0/+154
* New arabic port: ae_fonts_monoedwin2003-10-036-0/+62
* Update vertion to 1.2.1taoka2003-09-303-4/+4
* Fix typo in MASTER_SITES, add MASTER_SITE_SUBDIR.olgeni2003-09-283-3/+6
* Cease FreeBSD port maintainershipsedwin2003-09-241-1/+1
* Add a new MASTER_SITE since the Fontconfig site went away.marcus2003-09-183-4/+3
* Remove fontilus. It has been rolled into gnomecontrolcenter2.marcus2003-09-186-79/+0
* Bump PORTREVISION for previous commit.kris2003-08-171-1/+1
* Switch to tcl/tk 8.4 and add tcl84 virtual categorykris2003-08-171-3/+3
* 1) Move install code to Makefile rather than in patch.olgeni2003-08-034-48/+13
* RESTRICTED implies NO_CDROM and NO_PACKAGEkris2003-07-311-2/+0
* a) Fix some additional undetected fonts,maho2003-07-282-11/+18
* Updated the foundries. Especially for print/gsfont (See also PR #54647)maho2003-07-271-0/+107
* Fix dependence on rpm2cpio.trevor2003-07-201-2/+2
* This is a first for me. Correct a typo in the patch _name_ so the patchmarcus2003-07-192-1/+1
* Revert some of the FreeType code in fontconfig to fix some font renderingmarcus2003-07-192-1/+644
* Fix a problem with certain languages not having any fonts in Mozilla andmarcus2003-07-192-0/+16
* Update to 2.2.90.marcus2003-07-183-2/+4
* Correct misplaced spacesarved2003-07-101-2/+2
* Remove WWW tag: the referenced page does not say anything about the fontsolgeni2003-07-032-4/+0
* Unbreak fetch: use MASTER_SITES_SOURCEFORGE.olgeni2003-06-301-1/+1
* Use MASTER_SITES_SOURCEFORGE.olgeni2003-06-301-1/+1
* Unbreak fetch using MASTER_SITES_SOURCEFORGE.olgeni2003-06-301-1/+1
* update maintainer's email address.leeym2003-06-241-2/+2
* Update to 2.2.1.marcus2003-06-182-2/+2
* Utilize USE_GNOME= pkgconfig.adamw2003-06-171-3/+1
* Change to my FreeBSD.org addresserwin2003-06-131-1/+1
* Fix master siteache2003-06-021-1/+1
* imaintainer-update x11-fonts/p5-Font-TTF to 0.34edwin2003-05-222-2/+2
* Update to 2.1.2. This wraps up a lot of our patches, and fixes some othermarcus2003-05-1522-992/+120
* Reset Maintainer addressarved2003-04-301-1/+1
* Always use "/etc/X11/XF86Config" as the default file for fontolgeni2003-04-276-8/+6
* Add a patch to fix PCF glyph problems.marcus2003-04-254-2/+74
* Convert to new GNOME infrastructure, and sign over to gnome@.marcus2003-04-221-5/+2
* Update to 2.2.0, the fontastic-everything-finally-works release.marcus2003-04-224-71/+2
* Remove USE_GNOMENG.marcus2003-04-212-2/+0
* Add patch to avoid dereferencing a NULL pointer in freetype2. This fixesmarcus2003-04-192-0/+47
* Add a missing '\'.marcus2003-04-181-1/+1
* At least one person had problems fetching 2.1.94. Add another dist site.marcus2003-04-181-1/+2
* Update to the release version, 1.10.marcus2003-04-176-78/+77
* Update to 2.1.94.marcus2003-04-172-2/+2
* Make the fonts.dir more detailed, i.e. qualify the font names with fulladamw2003-04-162-14/+15
* Chase home page.trevor2003-04-161-1/+1
* Update to 2.1.93.marcus2003-04-137-104/+13
* Do not install the included mozilla fonts: x11-fonts/mozilla-fontsolgeni2003-04-133-106/+13
* Fix a segfault that can occur when mixing RENDER and non-RENDER fonts.marcus2003-04-074-2/+42
* * Allow these ports to build in a read-only ${PORTSDIR} [1]marcus2003-04-051-2/+1
* fontconfig-config is no longer installed. Therefore, Xft wasn't beingmarcus2003-04-052-2/+4
* Revert previous commit since it caused an infinite recursion loopmarcus2003-04-054-40/+2
* Borrow a little from kdelibs3, and add a dependency on the scalable fonts.marcus2003-04-044-8/+42
* Update to 2.1.92. This is a hacked development version that should solvemarcus2003-04-0416-326/+420
* Add -f to fc-cache to force a font cache build. This fixes GNOMEmarcus2003-03-292-6/+2
* Make sure the include directory exists before trying to copy files intomarcus2003-03-292-0/+6
* Set proper dependency.shige2003-03-251-2/+4
* Unbreak by merging changes from ports/49029 (patch-aa).olgeni2003-03-241-279/+319
* Move cabextract dependency from BUILD_DEPENDS to EXTRACT_DEPENDS todemon2003-03-191-2/+2
* Fix a bug in fontconfig's configure script that was causing fonts.confmarcus2003-03-142-2/+13
* Update XFree86 ports, including linux_dri, to 4.3.0. Set IGNORE= in dri-develanholt2003-03-1215-50/+97
* Update portkeichii2003-03-113-66/+98
* Home page and MASTER_SITE moved.olgeni2003-03-092-2/+2
* Clear moonlight beckons.ade2003-03-0732-16/+16
* Force ldconfig to run before pkg-install to fix a problem where the usermarcus2003-03-061-0/+1
* Sync with XFree86 4.3.0 release.marcus2003-03-034-2/+554
* Sync fontconfig with the XFree86 4.3.0 release.marcus2003-03-032-1/+213
* Retire comment file.trevor2003-03-012-1/+1
* * Set LC_ALL to C in MAKE_ENV to avoid creating non-well-formed XMLmarcus2003-03-012-1/+13
* * Install fc-cache and fc-list manpages [1]marcus2003-02-283-3/+9
* De-pkg-comment.marcus2003-02-262-1/+1
* Remove duplicate patch.sobomax2003-02-251-23/+0
* Suppress command echo.olgeni2003-02-234-10/+10
* De-pkg-comment my ports + some more.olgeni2003-02-2312-6/+6
* * Install the Xft manpagemarcus2003-02-234-4/+14
* De-pkg-comment.nork2003-02-232-1/+1
* Distfile was re-rolled again (only HTML and punctuation changes to themarcus2003-02-221-1/+1
* De-pkg-comment.knu2003-02-2122-11/+11
* Add a RUN_DEPENDS on fontconfig as well.marcus2003-02-211-0/+1
* Looks like we do need fc-cache since the cache files seem to vary slightlymarcus2003-02-213-13/+7
* De-pkg-comment.knu2003-02-2110-5/+5
* Unbreak on -current: use INT_MAX instead of MAXINT.sobomax2003-02-211-0/+23
* * Don't depend on fontconfig (instead, package fonts.cache-1 with the port)marcus2003-02-203-21/+22
* * The distfile was rerolled (only HTML formatting changes) so correctmarcus2003-02-203-22/+55
* Add urwfonts-ttf 1.0.7b18, unicode TrueType fonts from URW extendedsobomax2003-02-195-0/+74
* Remove redundant -p from ${MKDIR}.marcus2003-02-191-1/+1
* Add bitstream-vera, a collection of 10 high-quality TrueType fonts thatmarcus2003-02-196-0/+139
* Remove the Xft.h -> Xft2.h hack.marcus2003-02-181-4/+0
* Remove the renaming of Xft headers and library from the Xft (Xft2) port.anholt2003-02-1810-88/+178
* Add fontilus, a font viewer and thumbnailer for Nautilus.marcus2003-02-16