From 897319326dd2b8fd09235f00744a99a121cde7fd Mon Sep 17 00:00:00 2001 From: Dirk Meyer Date: Sun, 19 Oct 2003 11:14:50 +0000 Subject: [PATCH] - Update to 0.9.0, Retire 0.8.5 --- x11-toolkits/gnustep-back/Makefile | 9 +- x11-toolkits/gnustep-back/distinfo | 3 +- x11-toolkits/gnustep-back/files/ftfont.m.diff | 179 -- x11-toolkits/gnustep-back/pkg-plist | 36 +- x11-toolkits/gnustep-gui/Makefile | 18 +- x11-toolkits/gnustep-gui/distinfo | 3 +- x11-toolkits/gnustep-gui/pkg-plist | 2233 +++++++---------- 7 files changed, 922 insertions(+), 1559 deletions(-) delete mode 100644 x11-toolkits/gnustep-back/files/ftfont.m.diff diff --git a/x11-toolkits/gnustep-back/Makefile b/x11-toolkits/gnustep-back/Makefile index b2a33d5a2dd0..7b097afb59cc 100644 --- a/x11-toolkits/gnustep-back/Makefile +++ b/x11-toolkits/gnustep-back/Makefile @@ -6,11 +6,7 @@ # PORTNAME= gnustep-back -.if defined(WITH_GNUSTEP_DEVEL) -PORTVERSION= 0.8.9 -.else -PORTVERSION= 0.8.5 -.endif +PORTVERSION= 0.9.0 CATEGORIES= x11-toolkits MASTER_SITES= ${MASTER_SITE_GNUSTEP} \ ftp://ftp.gnustep.org/pub/gnustep/%SUBDIR%/ @@ -56,9 +52,6 @@ CONFIGURE_ARGS+= --enable-graphics=art --with-name=art PLIST_SUB+= BACK=art USE_XLIB="@comment " PLIST_SUB+= USE_XLIB="@comment " USE_XDPS="@comment " USE_ART="" PKGNAMESUFFIX?= -art -.if !defined(WITH_GNUSTEP_DEVEL) -EXTRA_PATCHES+= ${FILESDIR}/ftfont.m.diff -.endif .else CONFIGURE_ARGS+= --enable-graphics=xlib --with-name=back PLIST_SUB+= BACK=back diff --git a/x11-toolkits/gnustep-back/distinfo b/x11-toolkits/gnustep-back/distinfo index fc245e7af863..1072bab8f13f 100644 --- a/x11-toolkits/gnustep-back/distinfo +++ b/x11-toolkits/gnustep-back/distinfo @@ -1,2 +1 @@ -MD5 (gnustep-back-0.8.5.tar.gz) = 9020f254f584ed176221321218857b55 -MD5 (gnustep-back-0.8.9.tar.gz) = af2ba9a683a28f75ebdeb91dd58debec +MD5 (gnustep-back-0.9.0.tar.gz) = a2e912a376315dbd3a188e0d5a617b3c diff --git a/x11-toolkits/gnustep-back/files/ftfont.m.diff b/x11-toolkits/gnustep-back/files/ftfont.m.diff deleted file mode 100644 index 4af6073ac1a3..000000000000 --- a/x11-toolkits/gnustep-back/files/ftfont.m.diff +++ /dev/null @@ -1,179 +0,0 @@ ---- Source/art/ftfont.m.orig Sun May 11 19:23:43 2003 -+++ Source/art/ftfont.m Tue Jun 3 05:25:16 2003 -@@ -79,9 +79,9 @@ - @interface FTFontInfo : GSFontInfo - { - @public -- FTC_ImageDesc imgd; -+ FTC_Image_Desc imgd; - -- FTC_ImageDesc fallback; -+ FTC_Image_Desc fallback; - - FTFaceInfo *face_info; - -@@ -748,7 +748,7 @@ - int use_sbit; - - FTC_SBit sbit; -- FTC_ImageDesc cur; -+ FTC_Image_Desc cur; - - FT_Matrix ftmatrix; - FT_Vector ftdelta; -@@ -800,23 +800,23 @@ - int rh = face_info->render_hints_hack; - if (rh & 0x10000) - { -- cur.type = ftc_image_grays; -+ cur.image_type = ftc_image_grays; - rh = (rh >> 8) & 0xff; - } - else - { -- cur.type = ftc_image_mono; -+ cur.image_type = ftc_image_mono; - rh = rh & 0xff; - } - if (rh & 1) -- cur.type |= ftc_image_flag_autohinted; -+ cur.image_type |= ftc_image_flag_autohinted; - if (!(rh & 2)) -- cur.type |= ftc_image_flag_unhinted; -+ cur.image_type |= ftc_image_flag_unhinted; - } - else if (xx < 8) -- cur.type = ftc_image_grays | ftc_image_flag_unhinted; -+ cur.image_type = ftc_image_grays | ftc_image_flag_unhinted; - else -- cur.type = ftc_image_grays; -+ cur.image_type = ftc_image_grays; - } - else - { -@@ -1163,7 +1163,7 @@ - int use_sbit; - - FTC_SBit sbit; -- FTC_ImageDesc cur; -+ FTC_Image_Desc cur; - - FT_Matrix ftmatrix; - FT_Vector ftdelta; -@@ -1215,23 +1215,23 @@ - int rh = face_info->render_hints_hack; - if (rh & 0x10000) - { -- cur.type = ftc_image_grays; -+ cur.image_type = ftc_image_grays; - rh = (rh >> 8) & 0xff; - } - else - { -- cur.type = ftc_image_mono; -+ cur.image_type = ftc_image_mono; - rh = rh & 0xff; - } - if (rh & 1) -- cur.type |= ftc_image_flag_autohinted; -+ cur.image_type |= ftc_image_flag_autohinted; - if (!(rh & 2)) -- cur.type |= ftc_image_flag_unhinted; -+ cur.image_type |= ftc_image_flag_unhinted; - } - else if (xx < 8) -- cur.type = ftc_image_grays | ftc_image_flag_unhinted; -+ cur.image_type = ftc_image_grays | ftc_image_flag_unhinted; - else -- cur.type = ftc_image_grays; -+ cur.image_type = ftc_image_grays; - } - else - { -@@ -1521,7 +1521,7 @@ - /* TODO: try to more efficiently? */ - /* TODO: set up all this stuff in -init... for the raw metric case */ - float xx, yy; -- FTC_ImageDesc cur; -+ FTC_Image_Desc cur; - FTC_SBit sbit; - - cur = imgd; -@@ -1534,23 +1534,23 @@ - int rh = face_info->render_hints_hack; - if (rh & 0x10000) - { -- cur.type = ftc_image_grays; -+ cur.image_type = ftc_image_grays; - rh = (rh >> 8) & 0xff; - } - else - { -- cur.type = ftc_image_mono; -+ cur.image_type = ftc_image_mono; - rh = rh & 0xff; - } - if (rh & 1) -- cur.type |= ftc_image_flag_autohinted; -+ cur.image_type |= ftc_image_flag_autohinted; - if (!(rh & 2)) -- cur.type |= ftc_image_flag_unhinted; -+ cur.image_type |= ftc_image_flag_unhinted; - } - else if (xx < 8) -- cur.type = ftc_image_grays | ftc_image_flag_unhinted; -+ cur.image_type = ftc_image_grays | ftc_image_flag_unhinted; - else -- cur.type = ftc_image_grays; -+ cur.image_type = ftc_image_grays; - - if ((error=FTC_SBitCache_Lookup(ftc_sbitcache, &cur, glyph, &sbit, NULL))) - { -@@ -1605,7 +1605,7 @@ - - - (NSRect) boundingRectForGlyph: (NSGlyph)glyph - { -- FTC_ImageDesc *cur; -+ FTC_Image_Desc *cur; - FT_BBox bbox; - FT_Glyph g; - FT_Error error; -@@ -1682,7 +1682,7 @@ - - FTC_SBit sbit; - -- FTC_ImageDesc *cur; -+ FTC_Image_Desc *cur; - - - cmap.face_id = imgd.font.face_id; -@@ -1895,7 +1895,7 @@ - unichar *uch; - int ulen; - -- FTC_ImageDesc cur; -+ FTC_Image_Desc cur; - - - FT_Matrix ftmatrix; -@@ -2065,7 +2065,7 @@ - int use_sbit; - - FTC_SBit sbit; -- FTC_ImageDesc cur; -+ FTC_Image_Desc cur; - - FT_Matrix ftmatrix; - FT_Vector ftdelta; -@@ -2111,9 +2111,9 @@ - - /* if (cur.font.pix_width < 16 && cur.font.pix_height < 16 && - cur.font.pix_width > 6 && cur.font.pix_height > 6) -- cur.type = ftc_image_mono; -+ cur.image_type = ftc_image_mono; - else*/ -- cur.type = ftc_image_grays, subpixel = YES, cur.font.pix_width *= 3, x *= 3; -+ cur.image_type = ftc_image_grays, subpixel = YES, cur.font.pix_width *= 3, x *= 3; - // imgd.type|=|ftc_image_flag_unhinted; /* TODO? when? */ - } - else diff --git a/x11-toolkits/gnustep-back/pkg-plist b/x11-toolkits/gnustep-back/pkg-plist index 04daa2df894b..5b2dbeed4e40 100644 --- a/x11-toolkits/gnustep-back/pkg-plist +++ b/x11-toolkits/gnustep-back/pkg-plist @@ -1,32 +1,12 @@ -%%GNUSTEP_DEVEL%%System/Library/Bundles/libgnustep-%%BACK%%.bundle/Resources/English.lproj/nfontFaceNames.strings +System/Library/Bundles/libgnustep-%%BACK%%.bundle/Resources/English.lproj/nfontFaceNames.strings System/Library/Bundles/libgnustep-%%BACK%%.bundle/Resources/Info-gnustep.plist -%%GNUSTEP_DEVEL%%System/Library/Bundles/libgnustep-%%BACK%%.bundle/Resources/Swedish.lproj/nfontFaceNames.strings -System/Library/Bundles/libgnustep-%%BACK%%.bundle/%%NOFLAT%%libgnustep-%%BACK%% +System/Library/Bundles/libgnustep-%%BACK%%.bundle/Resources/Swedish.lproj/nfontFaceNames.strings +System/Library/Bundles/libgnustep-%%BACK%%.bundle/libgnustep-%%BACK%% System/Library/Bundles/libgnustep-%%BACK%%.bundle/stamp.make -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Headers/gnustep/gsc/GSContext.h -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Headers/gnustep/gsc/GSGState.h -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Headers/gnustep/gsc/GSGStateOps.h -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Headers/gnustep/gsc/gscolors.h -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Headers/gnustep/x11/XGServer.h -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Headers/gnustep/x11/XGServerWindow.h -%%GNUSTEP_STABLE%%%%USE_ART%%%%SYSTEMLIBRARY%%/Headers/gnustep/art/ARTContext.h -%%GNUSTEP_STABLE%%%%USE_XDPS%%%%SYSTEMLIBRARY%%/Headers/gnustep/xdps/NSDPSContext.h -%%GNUSTEP_STABLE%%%%USE_XLIB%%%%SYSTEMLIBRARY%%/Headers/gnustep/xlib/XGContext.h -%%GNUSTEP_STABLE%%%%USE_XLIB%%%%SYSTEMLIBRARY%%/Headers/gnustep/xlib/XGGState.h -%%GNUSTEP_STABLE%%%%USE_XLIB%%%%SYSTEMLIBRARY%%/Headers/gnustep/xlib/XGGeometry.h -%%GNUSTEP_STABLE%%%%USE_XLIB%%%%SYSTEMLIBRARY%%/Headers/gnustep/xlib/XGPrivate.h -%%GNUSTEP_DEVEL%%System/Library/Documentation/man/man1/gpbs.1.gz -%%USE_XLIB%%System/Tools/%%NOFLAT%%font_cacher -System/Tools/%%NOFLAT%%gpbs -%%GNUSTEP_STABLE%%@dirrm %%SYSTEMLIBRARY%%/Headers/gnustep/x11 -%%GNUSTEP_STABLE%%%%USE_ART%%@dirrm %%SYSTEMLIBRARY%%/Headers/gnustep/art -%%GNUSTEP_STABLE%%%%USE_XDPS%%@dirrm %%SYSTEMLIBRARY%%/Headers/gnustep/xdps -%%GNUSTEP_STABLE%%%%USE_XLIB%%@dirrm %%SYSTEMLIBRARY%%/Headers/gnustep/xlib -%%GNUSTEP_STABLE%%@dirrm %%SYSTEMLIBRARY%%/Headers/gnustep/gsc -%%GNUSTEP_STABLE%%@dirrm System/Library/Bundles/libgnustep-%%BACK%%.bundle/%%GNU_ARCH%%/%%OPSYS%%/gnu-gnu-gnu -%%GNUSTEP_STABLE%%@dirrm System/Library/Bundles/libgnustep-%%BACK%%.bundle/%%GNU_ARCH%%/%%OPSYS%% -%%GNUSTEP_STABLE%%@dirrm System/Library/Bundles/libgnustep-%%BACK%%.bundle/%%GNU_ARCH%% -%%GNUSTEP_DEVEL%%@dirrm System/Library/Bundles/libgnustep-%%BACK%%.bundle/Resources/Swedish.lproj -%%GNUSTEP_DEVEL%%@dirrm System/Library/Bundles/libgnustep-%%BACK%%.bundle/Resources/English.lproj +System/Library/Documentation/man/man1/gpbs.1.gz +%%USE_XLIB%%System/Tools/font_cacher +System/Tools/gpbs +@dirrm System/Library/Bundles/libgnustep-%%BACK%%.bundle/Resources/Swedish.lproj +@dirrm System/Library/Bundles/libgnustep-%%BACK%%.bundle/Resources/English.lproj @dirrm System/Library/Bundles/libgnustep-%%BACK%%.bundle/Resources @dirrm System/Library/Bundles/libgnustep-%%BACK%%.bundle diff --git a/x11-toolkits/gnustep-gui/Makefile b/x11-toolkits/gnustep-gui/Makefile index 2a078c98671b..c39cc76fea92 100644 --- a/x11-toolkits/gnustep-gui/Makefile +++ b/x11-toolkits/gnustep-gui/Makefile @@ -6,11 +6,7 @@ # PORTNAME= gnustep-gui -.if defined(WITH_GNUSTEP_DEVEL) -PORTVERSION= 0.8.9 -.else -PORTVERSION= 0.8.5 -.endif +PORTVERSION= 0.9.0 CATEGORIES= x11-toolkits MASTER_SITES= ${MASTER_SITE_GNUSTEP} \ ftp://ftp.gnustep.org/pub/gnustep/%SUBDIR%/ @@ -39,7 +35,7 @@ USE_GNUSTEP_BASE= yes MAKEFILE= MAKE_FLAGS+= OPTFLAG="${CFLAGS}" BREAKS_IF_PEDANTIC= yes -EXTRA_FIX= ${WRKSRC}/Tools/gsnd/portaudio/pa_unix_oss/Makefile +USE_REINPLACE= yes post-extract: .for file in config.guess config.sub install-sh @@ -47,10 +43,12 @@ post-extract: .endfor pre-configure: - @ ${MV} ${EXTRA_FIX} ${EXTRA_FIX}.sed - ${SED} -e "s=-lphread=${PTHREAD_LIBS}=" -e "s;CFLAGS =;CFLAGS+=;" \ - -e "s;-Wall;-Wall ${PTHREAD_CFLAGS:S=""==};" \ - ${EXTRA_FIX}.sed > ${EXTRA_FIX} + ${REINPLACE_CMD} -e "s|-lphread|${PTHREAD_LIBS}|" -e "s|CFLAGS =|CFLAGS+=|" \ + -e "s|-Wall|-Wall ${PTHREAD_CFLAGS:S=""==}|" \ + ${WRKSRC}/Tools/gsnd/portaudio/pa_unix_oss/Makefile +.if !defined(NOPORTDOCS) + ${REINPLACE_CMD} -e "s|doc=no|doc=yes|" ${WRKSRC}/GNUmakefile +.endif test: @(cd ${WRKSRC}/Tools/gsnd/portaudio/pa_unix_oss && \ diff --git a/x11-toolkits/gnustep-gui/distinfo b/x11-toolkits/gnustep-gui/distinfo index 7ceff8883d4e..126b21169ccf 100644 --- a/x11-toolkits/gnustep-gui/distinfo +++ b/x11-toolkits/gnustep-gui/distinfo @@ -1,2 +1 @@ -MD5 (gnustep-gui-0.8.5.tar.gz) = ddaf662db31a4e6b382499548e9efcf4 -MD5 (gnustep-gui-0.8.9.tar.gz) = 294b03e9c39e6f08c56ff66abade121e +MD5 (gnustep-gui-0.9.0.tar.gz) = d8fd5b87bc0673684c643194a4f10aa9 diff --git a/x11-toolkits/gnustep-gui/pkg-plist b/x11-toolkits/gnustep-gui/pkg-plist index c67fed526932..3c892817d801 100644 --- a/x11-toolkits/gnustep-gui/pkg-plist +++ b/x11-toolkits/gnustep-gui/pkg-plist @@ -1,20 +1,18 @@ -%%GNUSTEP_DEVEL%%System/Applications/md5Digest.app/Resources/Info-gnustep.plist -%%GNUSTEP_DEVEL%%System/Applications/md5Digest.app/Resources/md5Digest.desktop -%%GNUSTEP_DEVEL%%System/Applications/md5Digest.app/library_paths.openapp -%%GNUSTEP_DEVEL%%System/Applications/md5Digest.app/md5Digest -%%GNUSTEP_DEVEL%%System/Applications/md5Digest.app/stamp.make -%%GNUSTEP_STABLE%%System/Libraries/Resources/gnustep-gui/Resources/English.lproj/Localizable.strings -%%GNUSTEP_STABLE%%System/Libraries/Resources/gnustep-gui/Resources/Italian.lproj/Localizable.strings +System/Applications/md5Digest.app/Resources/Info-gnustep.plist +System/Applications/md5Digest.app/Resources/md5Digest.desktop +System/Applications/md5Digest.app/library_paths.openapp +System/Applications/md5Digest.app/md5Digest +System/Applications/md5Digest.app/stamp.make System/Library/Bundles/TextConverters/RTFConverter.bundle/Resources/Info-gnustep.plist -System/Library/Bundles/TextConverters/RTFConverter.bundle/%%NOFLAT%%RTFConverter +System/Library/Bundles/TextConverters/RTFConverter.bundle/RTFConverter System/Library/Bundles/TextConverters/RTFConverter.bundle/stamp.make System/Library/Bundles/libgmodel.bundle/Resources/Info-gnustep.plist -System/Library/Bundles/libgmodel.bundle/%%NOFLAT%%libgmodel +System/Library/Bundles/libgmodel.bundle/libgmodel System/Library/Bundles/libgmodel.bundle/stamp.make -%%GNUSTEP_DEVEL%%System/Library/ColorPickers/NamedPicker.bundle/NamedPicker -%%GNUSTEP_DEVEL%%System/Library/ColorPickers/NamedPicker.bundle/Resources/Info-gnustep.plist -%%GNUSTEP_DEVEL%%System/Library/ColorPickers/NamedPicker.bundle/Resources/GSNamedColorPicker.tiff -%%GNUSTEP_DEVEL%%System/Library/ColorPickers/NamedPicker.bundle/stamp.make +System/Library/ColorPickers/NamedPicker.bundle/NamedPicker +System/Library/ColorPickers/NamedPicker.bundle/Resources/Info-gnustep.plist +System/Library/ColorPickers/NamedPicker.bundle/Resources/GSNamedColorPicker.tiff +System/Library/ColorPickers/NamedPicker.bundle/stamp.make System/Library/ColorPickers/StandardPicker.bundle/Resources/English.lproj/StandardPicker.strings System/Library/ColorPickers/StandardPicker.bundle/Resources/French.lproj/StandardPicker.strings System/Library/ColorPickers/StandardPicker.bundle/Resources/GSCMYKColorPicker.tiff @@ -23,1343 +21,918 @@ System/Library/ColorPickers/StandardPicker.bundle/Resources/GSHSBColorPicker.tif System/Library/ColorPickers/StandardPicker.bundle/Resources/GSRGBColorPicker.tiff System/Library/ColorPickers/StandardPicker.bundle/Resources/Info-gnustep.plist System/Library/ColorPickers/StandardPicker.bundle/Resources/Swedish.lproj/StandardPicker.strings -System/Library/ColorPickers/StandardPicker.bundle/%%NOFLAT%%StandardPicker +System/Library/ColorPickers/StandardPicker.bundle/StandardPicker System/Library/ColorPickers/StandardPicker.bundle/stamp.make System/Library/ColorPickers/WheelPicker.bundle/Resources/GSWheelColorPicker.tiff System/Library/ColorPickers/WheelPicker.bundle/Resources/Info-gnustep.plist -System/Library/ColorPickers/WheelPicker.bundle/%%NOFLAT%%WheelPicker +System/Library/ColorPickers/WheelPicker.bundle/WheelPicker System/Library/ColorPickers/WheelPicker.bundle/stamp.make -%%SYSTEMLIBRARY%%/Headers/AppKit/AppKit.h -%%SYSTEMLIBRARY%%/Headers/AppKit/AppKitDefines.h -%%SYSTEMLIBRARY%%/Headers/AppKit/AppKitExceptions.h -%%SYSTEMLIBRARY%%/Headers/AppKit/DPSOperators.h -%%SYSTEMLIBRARY%%/Headers/AppKit/GMAppKit.h -%%SYSTEMLIBRARY%%/Headers/AppKit/GMArchiver.h -%%SYSTEMLIBRARY%%/Headers/AppKit/GSDisplayServer.h -%%SYSTEMLIBRARY%%/Headers/AppKit/GSFontInfo.h -%%SYSTEMLIBRARY%%/Headers/AppKit/GSFusedSilica.h -%%SYSTEMLIBRARY%%/Headers/AppKit/GSHbox.h -%%SYSTEMLIBRARY%%/Headers/AppKit/GSHelpManagerPanel.h -%%SYSTEMLIBRARY%%/Headers/AppKit/GSHorizontalTypesetter.h -%%SYSTEMLIBRARY%%/Headers/AppKit/GSInfoPanel.h -%%SYSTEMLIBRARY%%/Headers/AppKit/GSLayoutManager.h -%%SYSTEMLIBRARY%%/Headers/AppKit/GSLayoutManager_internal.h -%%SYSTEMLIBRARY%%/Headers/AppKit/GSMemoryPanel.h -%%SYSTEMLIBRARY%%/Headers/AppKit/GSMethodTable.h -%%SYSTEMLIBRARY%%/Headers/AppKit/GSNibTemplates.h -%%SYSTEMLIBRARY%%/Headers/AppKit/GSPasteboardServer.h -%%SYSTEMLIBRARY%%/Headers/AppKit/GSServicesManager.h -%%SYSTEMLIBRARY%%/Headers/AppKit/GSTable.h -%%SYSTEMLIBRARY%%/Headers/AppKit/GSTextConverter.h -%%GNUSTEP_DEVEL%%System/Library/Headers/AppKit/GSToolbarView.h -%%SYSTEMLIBRARY%%/Headers/AppKit/GSTrackingRect.h -%%SYSTEMLIBRARY%%/Headers/AppKit/GSTypesetter.h -%%SYSTEMLIBRARY%%/Headers/AppKit/GSVbox.h -%%SYSTEMLIBRARY%%/Headers/AppKit/GSVersion.h -%%SYSTEMLIBRARY%%/Headers/AppKit/IMConnectors.h -%%SYSTEMLIBRARY%%/Headers/AppKit/IMCustomObject.h -%%SYSTEMLIBRARY%%/Headers/AppKit/IMLoading.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSActionCell.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSAffineTransform.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSApplication.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSAttributedString.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSBezierPath.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSBitmapImageRep.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSBox.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSBrowser.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSBrowserCell.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSButton.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSButtonCell.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSCachedImageRep.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSCell.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSClipView.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSColor.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSColorList.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSColorPanel.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSColorPicker.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSColorPicking.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSColorWell.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSComboBox.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSComboBoxCell.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSControl.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSCursor.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSCustomImageRep.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSDataLink.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSDataLinkManager.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSDataLinkPanel.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSDocument.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSDocumentController.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSDocumentFrameworkPrivate.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSDragging.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSDrawer.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSEPSImageRep.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSEvent.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSFileWrapper.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSFont.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSFontManager.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSFontPanel.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSForm.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSFormCell.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSGraphics.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSGraphicsContext.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSHelpManager.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSHelpPanel.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSImage.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSImageCell.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSImageRep.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSImageView.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSInputManager.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSInputServer.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSInterfaceStyle.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSLayoutManager.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSMatrix.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSMenu.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSMenuItem.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSMenuItemCell.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSMenuView.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSNibConnector.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSNibDeclarations.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSNibLoading.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSOpenGL.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSOpenGLView.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSOpenPanel.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSOutlineView.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSPageLayout.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSPanel.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSParagraphStyle.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSPasteboard.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSPopUpButton.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSPopUpButtonCell.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSPrintInfo.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSPrintOperation.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSPrintPanel.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSPrinter.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSProgressIndicator.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSResponder.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSRulerMarker.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSRulerView.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSSavePanel.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSScreen.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSScrollView.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSScroller.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSSecureTextField.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSSelection.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSSlider.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSSliderCell.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSSound.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSSpellChecker.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSSpellProtocol.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSSpellServer.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSSplitView.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSStepper.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSStepperCell.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSStringDrawing.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSTabView.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSTabViewItem.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSTableColumn.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSTableHeaderCell.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSTableHeaderView.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSTableView.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSText.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSTextAttachment.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSTextContainer.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSTextField.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSTextFieldCell.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSTextStorage.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSTextView.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSToolbar.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSToolbarItem.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSUserInterfaceValidation.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSView.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSWindow.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSWindowController.h -%%SYSTEMLIBRARY%%/Headers/AppKit/NSWorkspace.h -%%SYSTEMLIBRARY%%/Headers/AppKit/PSOperators.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/GSVersion.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/GMAppKit.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/GMArchiver.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/GSFontInfo.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/GSMemoryPanel.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/GSInfoPanel.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/GSMethodTable.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/GSPasteboardServer.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/GSServicesManager.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/GSTextConverter.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/GSTrackingRect.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/GSHelpManagerPanel.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/GSNibTemplates.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/GSDisplayServer.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/GSFusedSilica.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/GSTable.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/GSHbox.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/GSVbox.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/IMConnectors.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/IMCustomObject.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/IMLoading.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/GSLayoutManager.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/GSLayoutManager_internal.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/GSTypesetter.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/GSHorizontalTypesetter.h -%%GNUSTEP_DEVEL%%System/Library/Headers/GNUstepGUI/GSToolbarView.h -%%SYSTEMLIBRARY%%/Headers/gnustep/gui/GMAppKit.h -%%SYSTEMLIBRARY%%/Headers/gnustep/gui/GMArchiver.h -%%GNUSTEP_DEVEL%%System/Library/Headers/gnustep/gui/GSVersion.h -%%GNUSTEP_DEVEL%%System/Library/Headers/gnustep/gui/GSFontInfo.h -%%GNUSTEP_DEVEL%%System/Library/Headers/gnustep/gui/GSMemoryPanel.h -%%GNUSTEP_DEVEL%%System/Library/Headers/gnustep/gui/GSInfoPanel.h -%%GNUSTEP_DEVEL%%System/Library/Headers/gnustep/gui/GSMethodTable.h -%%GNUSTEP_DEVEL%%System/Library/Headers/gnustep/gui/GSPasteboardServer.h -%%GNUSTEP_DEVEL%%System/Library/Headers/gnustep/gui/GSServicesManager.h -%%GNUSTEP_DEVEL%%System/Library/Headers/gnustep/gui/GSTextConverter.h -%%GNUSTEP_DEVEL%%System/Library/Headers/gnustep/gui/GSTrackingRect.h -%%GNUSTEP_DEVEL%%System/Library/Headers/gnustep/gui/GSHelpManagerPanel.h -%%GNUSTEP_DEVEL%%System/Library/Headers/gnustep/gui/GSNibTemplates.h -%%GNUSTEP_DEVEL%%System/Library/Headers/gnustep/gui/GSDisplayServer.h -%%GNUSTEP_DEVEL%%System/Library/Headers/gnustep/gui/GSFusedSilica.h -%%GNUSTEP_DEVEL%%System/Library/Headers/gnustep/gui/GSTable.h -%%GNUSTEP_DEVEL%%System/Library/Headers/gnustep/gui/GSHbox.h -%%GNUSTEP_DEVEL%%System/Library/Headers/gnustep/gui/GSVbox.h -%%GNUSTEP_DEVEL%%System/Library/Headers/gnustep/gui/GSLayoutManager.h -%%GNUSTEP_DEVEL%%System/Library/Headers/gnustep/gui/GSLayoutManager_internal.h -%%GNUSTEP_DEVEL%%System/Library/Headers/gnustep/gui/GSTypesetter.h -%%GNUSTEP_DEVEL%%System/Library/Headers/gnustep/gui/GSHorizontalTypesetter.h -%%GNUSTEP_DEVEL%%System/Library/Headers/gnustep/gui/GSToolbarView.h -%%SYSTEMLIBRARY%%/Headers/gnustep/gui/IMConnectors.h -%%SYSTEMLIBRARY%%/Headers/gnustep/gui/IMCustomObject.h -%%SYSTEMLIBRARY%%/Headers/gnustep/gui/IMLoading.h -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Additions/.cvsignore -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Additions/GNUmakefile -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Additions/GuiAdditions.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Additions/TypesAndConstants.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Additions/Functions.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Additions/GSDisplayServer.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Additions/GSTable.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Additions/GSHbox.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Additions/GSVbox.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Additions/GuiAdditions.igsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Additions/GSDisplayServer.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Additions/Functions.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Additions/TypesAndConstants.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Additions/GSTable.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Additions/GSHbox.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Additions/GSVbox.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/ReleaseNotes/%%VERSION%%/INSTALL -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/ReleaseNotes/%%VERSION%%/NEWS -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/ReleaseNotes/%%VERSION%%/README -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/ReleaseNotes/%%VERSION%%/ANNOUNCE -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/ReleaseNotes/%%VERSION%%/BUGS -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/.cvsignore -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/GNUmakefile -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/Gui.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/Introduction.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSBundleAdditions.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSCoderAdditions.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSMutableAttributedStringAdditions.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSStringAdditions.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSDocumentController.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/TypesAndConstants.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/Functions.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSActionCell.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSAffineTransform.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSApplication.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSBezierPath.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSBox.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSBitmapImageRep.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSBrowser.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSBrowserCell.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSButton.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSButtonCell.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSCachedImageRep.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSCell.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSClipView.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSColor.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSColorList.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSColorPanel.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSColorPicker.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSColorWell.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSComboBox.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSComboBoxCell.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSControl.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSCursor.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSCustomImageRep.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSDataLink.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSDataLinkManager.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSDataLinkPanel.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSDocument.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSEPSImageRep.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSDrawer.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSFileWrapper.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSEvent.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSFontManager.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSFont.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSFontPanel.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTableView.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSForm.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSFormCell.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSGraphicsContext.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSHelpPanel.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSHelpManager.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSImage.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSImageCell.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSImageRep.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSImageView.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSInputManager.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSInputServer.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSLayoutManager.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSMatrix.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSMenu.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSMenuItem.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSMenuItemCell.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSMenuView.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSOpenPanel.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSOutlineView.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSPageLayout.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSPanel.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSParagraphStyle.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSPasteboard.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSPopUpButton.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSPopUpButtonCell.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSPrintInfo.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSPrintOperation.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSPrintPanel.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSPrinter.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSProgressIndicator.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSResponder.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSRulerMarker.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSRulerView.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSSavePanel.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSScreen.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSScrollView.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSScroller.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSSecureTextField.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSSelection.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSSlider.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSSliderCell.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSSound.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSSpellChecker.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSSpellServer.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSSplitView.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSStepper.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSStepperCell.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSStringDrawing.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTabView.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTabViewItem.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTableColumn.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTableHeaderCell.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTableHeaderView.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTextAttachment.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSText.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTextContainer.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTextField.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTextFieldCell.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTextStorage.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTextView.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSToolbar.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSToolbarItem.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSView.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSWindow.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSWindowController.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSWorkspace.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/Gui.igsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/Gui.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/Functions.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSActionCell.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/TypesAndConstants.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSAffineTransform.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSApplication.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSBezierPath.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSBox.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSBitmapImageRep.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSBrowser.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSBrowserCell.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSButton.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSButtonCell.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSCachedImageRep.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSCell.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSClipView.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSColor.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSColorList.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSColorPanel.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSColorPicker.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSPageLayout.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSColorWell.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSComboBox.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSComboBoxCell.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSControl.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSCursor.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSCustomImageRep.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSDataLink.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSDataLinkManager.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSDataLinkPanel.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSDocument.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSDocumentController.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSDrawer.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSEPSImageRep.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSEvent.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSFileWrapper.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSFont.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSFontManager.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSFontPanel.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSForm.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSFormCell.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSGraphicsContext.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSHelpPanel.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSHelpManager.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSImage.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSImageCell.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSImageRep.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSImageView.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSInputManager.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSInputServer.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSLayoutManager.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSMatrix.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSMenu.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSMenuItem.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSMenuItemCell.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSMenuView.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSOpenPanel.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSOutlineView.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSParagraphStyle.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSPanel.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSPasteboard.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSPopUpButton.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSPopUpButtonCell.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSPrintInfo.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSPrintOperation.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSPrintPanel.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSPrinter.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSProgressIndicator.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSResponder.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSRulerMarker.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSRulerView.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSSavePanel.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSScreen.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSScrollView.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSScroller.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSSelection.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTableHeaderCell.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSSecureTextField.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSSlider.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSSliderCell.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSSound.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSSpellChecker.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSSpellServer.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSSplitView.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSStepper.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSStepperCell.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSStringDrawing.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTabView.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTabViewItem.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTableColumn.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTableHeaderView.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTableView.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSText.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTextAttachment.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTextContainer.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTextField.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTextFieldCell.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTextStorage.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSTextView.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSToolbar.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSToolbarItem.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSView.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSWindow.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSWindowController.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSWorkspace.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/Introduction.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSBundleAdditions.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSCoderAdditions.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSMutableAttributedStringAdditions.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/Developer/Gui/Reference/NSStringAdditions.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/User/Gui/.cvsignore -%%GNUSTEP_DEVEL%%System/Library/Documentation/User/Gui/DefaultsSummary.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/User/Gui/LanguageSetup.gsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/User/Gui/DefaultsSummary.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/User/Gui/GuiUser.igsdoc -%%GNUSTEP_DEVEL%%System/Library/Documentation/User/Gui/LanguageSetup.html -%%GNUSTEP_DEVEL%%System/Library/Documentation/man/man1/gopen.1.gz -%%GNUSTEP_DEVEL%%System/Library/Images/GNUstep.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/GNUstepMenuImage.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/GNUstep_Images_Copyright -%%GNUSTEP_DEVEL%%System/Library/Images/NSComboArrow.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_2DCheckMark.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_2DDash.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_3DArrowDown.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_3DArrowRight.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_3DArrowRightH.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_ArrowDown.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_ArrowLeft.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_ArrowRight.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_ArrowUp.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_CenterTabStop.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_Close.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_CloseBroken.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_CloseH.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_ColorSwatch.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_DecimalTabStop.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_Diamond.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_Dimple.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_DownArrowSmall.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_Folder.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_Home.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_HomeDirectory.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_LeftTabStop.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_Mount.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_Nibble.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_RadioOff.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_RadioOn.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_Right.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_RightH.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_RightTabStop.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_Root_Apple.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_Root_PC.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_Root_SGI.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_Root_Sparc.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_Root_Sparc2.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_SliderHoriz.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_SliderVert.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_SwitchOff.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_SwitchOn.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_TabDownSelectedLeft.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_TabDownSelectedRight.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_TabDownSelectedToUnSelectedJunction.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_TabDownUnSelectedJunction.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_TabDownUnSelectedLeft.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_TabDownUnSelectedRight.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_TabDownUnSelectedToSelectedJunction.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_TabSelectedLeft.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_TabSelectedRight.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_TabSelectedToUnSelectedJunction.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_TabUnSelectToSelectedJunction.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_TabUnSelectedJunction.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_TabUnSelectedLeft.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_TabUnSelectedRight.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_Tile.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_Unknown.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_UnknownApplication.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_UnknownTool.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_Unmount.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_UpAndDownArrowSmall.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_WMClose.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_WMCloseBroken.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_copyCursor.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_linkCursor.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_noCursor.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_outlineCollapsed.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_outlineExpanded.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_outlineUnexpandable.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_ret.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/common_retH.tiff -%%GNUSTEP_DEVEL%%System/Library/Images/nsmapping.strings -%%GNUSTEP_DEVEL%%System/Library/KeyBindings/DefaultKeyBindings.dict -%%GNUSTEP_DEVEL%%System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSDataLinkPanel.gorm/data.classes -%%GNUSTEP_DEVEL%%System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSDataLinkPanel.gorm/objects.gorm -%%GNUSTEP_DEVEL%%System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSPageLayout.gorm/data.classes -%%GNUSTEP_DEVEL%%System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSPageLayout.gorm/objects.gorm -%%GNUSTEP_DEVEL%%System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSPrintPanel.gorm/data.classes -%%GNUSTEP_DEVEL%%System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSPrintPanel.gorm/objects.gorm -%%GNUSTEP_DEVEL%%System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSSpellPanel.gorm/data.classes -%%GNUSTEP_DEVEL%%System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSSpellPanel.gorm/objects.gorm -%%GNUSTEP_DEVEL%%System/Library/Libraries/Resources/gnustep-gui/English.lproj/Localizable.strings -%%GNUSTEP_DEVEL%%System/Library/Libraries/Resources/gnustep-gui/Italian.lproj/Localizable.strings -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/English.lproj/GSPageLayout.gorm -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/English.lproj/GSPrintPanel.gorm -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/GNUstep.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/GNUstepMenuImage.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/GNUstep_Images_Copyright -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/NSComboArrow.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_2DCheckMark.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_2DDash.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_3DArrowDown.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_3DArrowRight.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_3DArrowRightH.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_ArrowDown.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_ArrowDownH.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_ArrowLeft.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_ArrowLeftH.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_ArrowRight.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_ArrowRightH.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_ArrowUp.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_ArrowUpH.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_CenterTabStop.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_Close.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_CloseBroken.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_CloseH.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_ColorSwatch.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_DecimalTabStop.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_Diamond.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_Dimple.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_DownArrowSmall.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_Folder.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_Home.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_HomeDirectory.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_LeftTabStop.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_Mount.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_Nibble.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_RadioOff.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_RadioOn.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_Right.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_RightH.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_RightTabStop.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_Root_Apple.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_Root_PC.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_Root_SGI.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_Root_Sparc.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_Root_Sparc2.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_SliderHoriz.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_SliderVert.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_SwitchOff.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_SwitchOn.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_TabDownSelectedLeft.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_TabDownSelectedRight.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_TabDownSelectedToUnSelectedJunction.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_TabDownUnSelectedJunction.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_TabDownUnSelectedLeft.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_TabDownUnSelectedRight.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_TabDownUnSelectedToSelectedJunction.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_TabSelectedLeft.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_TabSelectedRight.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_TabSelectedToUnSelectedJunction.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_TabUnSelectToSelectedJunction.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_TabUnSelectedJunction.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_TabUnSelectedLeft.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_TabUnSelectedRight.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_Tile.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_Unknown.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_Unmount.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_UpAndDownArrowSmall.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_WMClose.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_WMCloseBroken.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_copyCursor.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_linkCursor.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_noCursor.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_outlineCollapsed.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_outlineExpanded.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_outlineUnexpandable.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_ret.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/common_retH.tiff -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/Images/nsmapping.strings -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/KeyBindings/DefaultKeyBindings.dict -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/AGFA_AccuSet.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/AGFA_AccuSetSF.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/AGFA_ProSet9400.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/AGFA_ProSet9400SF.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/AGFA_ProSet9550.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/AGFA_ProSet9550SF.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/AGFA_ProSet9600.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/AGFA_ProSet9600SF.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/AGFA_ProSet9700.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/AGFA_ProSet9700SF.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/AGFA_ProSet9800.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/AGFA_ProSet9800SF.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/AGFA_SelectSet5000.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/AGFA_SelectSet5000SF.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/AGFA_SelectSet7000.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/AGFA_SelectSet7000SF.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/AGFA_StudioSet2000.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/APS-PS_PIP_with_APS-6-108.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/APS-PS_PIP_with_APS-6-80.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/APS-PS_PIP_with_LZR_1200.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/APS-PS_PIP_with_LZR_2600.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/AST_TurboLaser-PS.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Adobe_LaserJet_II_Cartridge.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Agfa-Compugraphic_9400P.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Agfa_Matrix_ChromaScript.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Agfa_TabScript_C500_PostScript_Printer.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Apple_LaserWriter-Select_310.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Apple_LaserWriter.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Apple_LaserWriter_II_NT.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Apple_LaserWriter_II_NTX-J_v50.5.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Apple_LaserWriter_II_NTX.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Apple_LaserWriter_II_NTX_v50.5.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Apple_LaserWriter_II_NTX_v51.8.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Apple_LaserWriter_IIf.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Apple_LaserWriter_IIg.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Apple_LaserWriter_Personal_NT.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Apple_LaserWriter_Plus.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Apple_LaserWriter_Plus_v42.2.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Apple_LaserWriter_Pro_600.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Apple_LaserWriter_Pro_630.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Apple_LaserWriter_Pro_810.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Apple_LaserWriter_Pro_810_with_Fax_Card.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Apple_LaserWriter_Select_610.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Apple_Personal_LaserWriter_NTR.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_APS-1000_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_APS-1560_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_APS-4000_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_APS-5000_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_APS-6%108c_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_APS-6%108h_or_APS-6%108ch_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_APS-6%108hs_or_APS-6%108chs_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_APS-6%70_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_APS-6%70c_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_APS-6%70ch_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_APS-6%70chs_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_APS-6%70vr_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_APS-6%80_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_APS-6%84c_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_APS-6000_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_APS-6600_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_APS-7000_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_APS-9800_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_APS-AccuSet_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_APS-BroadSheet_Imager_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_APS-ColorMaster_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_APS-PlateMaster_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_APS-ProSet_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_LZR-1200_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Autologic_LZR-2600_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/COMPAQ_PAGEMARQ_15.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/COMPAQ_PAGEMARQ_15_v2013.109.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/COMPAQ_PAGEMARQ_20.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/COMPAQ_PAGEMARQ_20_v2013.109.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Canon_LASER_SHOT_A404PS_with_2_fonts.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Canon_LASER_SHOT_A404PS_with_5_fonts.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Canon_LBP-4_PS-2.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Canon_LBP-8IIIR_PS-1.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Canon_LBP-8IIIT_PS-1.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Canon_LBP-8III_PS-1.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Canon_PS-IPU-J_Color_BJ_Copier.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Canon_PS-IPU_Color_BJ_Copier.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Canon_PS-IPU_Color_Laser_Copier.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Canon_PS-IPU_Kanji_Color_Laser_Copier.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Colormate_PS.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/CompuPrint_PageMaster_825%1025.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/DataProducts_LZR_2080%F5.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/DataProducts_LZR_2080%F5_Kanji.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Dataproducts_LZR-2665.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Dataproducts_LZR_1260.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Dataproducts_LZR_1560.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Dataproducts_LZR_960.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Digital_Colormate_PS.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Digital_DECcolorwriter_1000__17_fonts.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Digital_DECcolorwriter_1000__39_fonts.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Digital_DEClaser_1150.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Digital_DEClaser_1152.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Digital_DEClaser_1152_(43_fonts).ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Digital_DEClaser_2150.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Digital_DEClaser_2150_plus.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Digital_DEClaser_2250.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Digital_DEClaser_2250_plus.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Digital_PrintServer_17.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Digital_PrintServer_20.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Digital_PrintServer_32.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Digital_PrintServer_40_Plus.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Digital_ScriptPrinter.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Digital_turbo_PrintServer_20.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/EPSON_EPL-7500.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/EPSON_LP-3000PS_F2.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/EPSON_LP-3000PS_F5.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/EPSON_PostScript_CARD.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Fiery_200i-CF80_J_Color_Server.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Fujitsu_RX7100PS.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/GCC_BLP_Elite.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/GCC_BLP_II.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/GCC_BLP_IIS.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/GCC_Business_LaserPrinter.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/GCC_Business_LaserPrinter_v49.2.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Gestetner_GLP800-Scout.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/HP_DesignJet_650C.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/HP_DeskJet_1200C%PS.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/HP_LaserJet_4ML.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/HP_LaserJet_4MP.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/HP_LaserJet_4Si%4SiMX_PS_300dpi.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/HP_LaserJet_4Si%4SiMX_PS_600dpi.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/HP_LaserJet_4_PostScript_600DPI.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/HP_LaserJet_IID_PostScript_Cartridge.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/HP_LaserJet_IIID_PostScript_Cartridge.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/HP_LaserJet_IIID_PostScript_Plus.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/HP_LaserJet_IIIP_PostScript_Cartridge.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/HP_LaserJet_IIIP_PostScript_Plus.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/HP_LaserJet_IIISi_PostScript.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/HP_LaserJet_IIISi_Postscript_2.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/HP_LaserJet_III_PostScript_Cartridge.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/HP_LaserJet_III_PostScript_Plus.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/HP_LaserJet_IIP_PostScript_Cartridge.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/HP_PaintJet_XL300.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/IBM_4019_17_fonts.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/IBM_4019_39_fonts.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/IBM_4029_with_17_Fonts.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/IBM_4029_with_39_Fonts.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/IBM_4216-020.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/IBM_4216-030.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/IDT_OracC_Velociraptor.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/KODAK_ColorEase_PS_Printer.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Linotronic_100.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Linotronic_200.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Linotronic_200_230.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Linotronic_200_v49.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Linotronic_260.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Linotronic_300.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Linotronic_300_v49.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Linotronic_300_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Linotronic_330.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Linotronic_500.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Linotronic_500_v52.3.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Linotronic_530.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Linotronic_630.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Linotronic_830.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Linotronic_930.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Linotronic_Pr60.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Monotype_ImageMaster_1200.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Monotype_Imagesetter.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/NEC_Colormate_PS%40.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/NEC_Colormate_PS%80.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/NEC_PC-PR3000PS%4.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/NEC_PC-PR3000PS%4F.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/NEC_SilentWriter_95.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/NEC_SilentWriter_95_v2010.119.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/NEC_Silentwriter2_990.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/NEC_Silentwriter_1097.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/NEC_Silentwriter_80PS2.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/NEC_Silentwriter_80PS5.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/NEC_Silentwriter_97.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/NeXT_400_dpi_Laser_Printer.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/NeXT_400_dpi_Level_II_Printer.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/NeXT_Color_Printer.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/NeXT_Generic_Color.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/OKI_MICROLINE_800PSII_LT.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/OKI_MICROLINE_801PS+F.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/OKI_MICROLINE_801PSII+F.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/OKI_MICROLINE_801PSII.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/OKI_OL850.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/OceColor_G5242_PostScript_Printer.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Oki_OL830-PS.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Oki_OL840-PS.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/OkidataOL870.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Panasonic_KX-P4455.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Panasonic_KX-P5400.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Panasonic_KX-P5400_Fax.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Panasonic_KX-P5410.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Panasonic_KX-P5410_with_39_Fonts.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Personal_LaserWriter_320.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS-PS_1700.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS-PS_2000.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS-PS_2200.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS-PS_2210.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS-PS_2220.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS-PS_410.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS-PS_800.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS-PS_800_Plus.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS-PS_810.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS-PS_810_Turbo.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS-PS_815.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS-PS_815_MR.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS-PS_820.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS-PS_820_Turbo.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS-PS_825.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS-PS_825_MR.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS_1725_Print_System.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS_860_Print_System.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS_ColorScript_100.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS_ColorScript_100_Model_10.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS_ColorScript_100_Model_20.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS_ColorScript_100_Model_30.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS_PS_Jet.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/QMS_PS_Jet_Plus.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Qume_ScripTEN.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/RICOH_LP-M32.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Ricoh_PC_Laser_6000-PS.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Scantext_2030-51.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Schlumberger_5232_Color_PostScript_Printer.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Scitex_Dolev_PSM_L2.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Shinko_Color_CHC-746PSJ_PostScript_Printer.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Silentwriter2_290.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Silentwriter2_Model_90.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Silentwriter_LC_890.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Silentwriter_LC_890XL.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/TI_2115_13_fonts.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/TI_2115_35_fonts.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/TI_OmniLaser_2108.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/TI_microLaser16_Turbo.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/TI_microLaser6_Turbo.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/TI_microLaser9_Turbo.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/TI_microLaser_PS17.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/TI_microLaser_PS35.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/TI_microLaser_Pro_600_2013_PS23.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/TI_microLaser_Pro_600_2013_PS65.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/TI_microLaser_XL_PS17.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/TI_microLaser_XL_PS35.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_200J_v2011.108(4).ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_200e.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_200e_with_17_fonts_v2011.108(2).ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_200e_with_17_fonts_v2011.108(3).ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_200e_with_39_fonts_v2011.108(2).ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_200i.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_200i_v2011.108(2).ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_220J.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_220e_with_17_fonts.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_220e_with_39_fonts.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_220i.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_300J_v2013.113.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_300i_v2013.113.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_480.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_480J.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_III_PXi.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_III_PXiJ.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_III_PXi_v2010.116.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_IISD.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_IISDJ.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_IISDX.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_II_PXe_with_17_fonts.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_II_PXe_with_39_fonts.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_II_PXi.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_II_PXiJ.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_II_PXi_v2010.116.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Tektronix_Phaser_PXi.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/UNISYS_AP9210_17_Fonts.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/UNISYS_AP9210_39_Fonts.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Unisys_AP9415.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4000%5100A.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4000%5300A.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4000%5300B.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4000%5300C.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4000%5300EA.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4000%5300EB.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4000%5300EC.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4000%5330A.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4000%5330B.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4000%5330C.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4000%5500A.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4000%5500B.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4000%5500C.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4000%5510_or_5100E.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4000%5630A.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4000%5630B.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4000%5660_or_5660E.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4000%5860_or_5860E.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4000%L300.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4000%L330.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4000%L500_or_4000%L530.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4200B-P.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4300P.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4990.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_4990T.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_5100E.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_5960E.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_6000.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_6990.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_Series_4000-5300.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_Series_4000-5330.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_Series_4000-5500.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_VT-600P.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Varityper_VT-600W.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Xerox_4220_LPS.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Xerox_8812.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Xerox_DocuTech_135.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Xerox_DocuTech_90.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj/Xerox_MajestiK_5765.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/French.lproj/Linotronic_300.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/GSProlog.ps -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/German.lproj/Linotronic_300.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/Italian.lproj/Linotronic_300.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/Printers -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/Spanish.lproj/Linotronic_300.ppd -%%GNUSTEP_STABLE%%%%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/Swedish.lproj/Linotronic_300.ppd -%%SYSTEMLIBRARY%%/Libraries/%%NOFLAT%%libgnustep-gui.so -%%SYSTEMLIBRARY%%/Libraries/%%NOFLAT%%libgnustep-gui.so.%%MAJORVERSION%% -%%SYSTEMLIBRARY%%/Libraries/%%NOFLAT%%libgnustep-gui.so.%%VERSION%% -%%GNUSTEP_DEVEL%%System/Library/PostScript/GSProlog.ps -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/AGFA_AccuSet.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/AGFA_AccuSetSF.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/AGFA_ProSet9400.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/AGFA_ProSet9400SF.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/AGFA_ProSet9550.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/AGFA_ProSet9550SF.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/AGFA_ProSet9600.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/AGFA_ProSet9600SF.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/AGFA_ProSet9700.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/AGFA_ProSet9700SF.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/AGFA_ProSet9800.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/AGFA_ProSet9800SF.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/AGFA_SelectSet5000.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/AGFA_SelectSet5000SF.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/AGFA_SelectSet7000.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/AGFA_SelectSet7000SF.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/AGFA_StudioSet2000.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/APS-PS_PIP_with_APS-6-108.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/APS-PS_PIP_with_APS-6-80.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/APS-PS_PIP_with_LZR_1200.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/APS-PS_PIP_with_LZR_2600.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/AST_TurboLaser-PS.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Adobe_LaserJet_II_Cartridge.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Agfa-Compugraphic_9400P.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Agfa_Matrix_ChromaScript.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Agfa_TabScript_C500_PostScript_Printer.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter-Select_310.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_II_NT.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_II_NTX-J_v50.5.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_II_NTX.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_II_NTX_v50.5.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_II_NTX_v51.8.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_IIf.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_IIg.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_Personal_NT.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_Plus.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_Plus_v42.2.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_Pro_600.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_Pro_630.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_Pro_810.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_Pro_810_with_Fax_Card.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_Select_610.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Apple_Personal_LaserWriter_NTR.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_APS-1000_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_APS-1560_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_APS-4000_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_APS-5000_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_APS-6%108c_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_APS-6%108h_or_APS-6%108ch_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_APS-6%108hs_or_APS-6%108chs_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_APS-6%70_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_APS-6%70c_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_APS-6%70ch_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_APS-6%70chs_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_APS-6%70vr_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_APS-6%80_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_APS-6%84c_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_APS-6000_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_APS-6600_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_APS-7000_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_APS-9800_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_APS-AccuSet_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_APS-BroadSheet_Imager_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_APS-ColorMaster_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_APS-PlateMaster_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_APS-ProSet_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_LZR-1200_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Autologic_LZR-2600_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/COMPAQ_PAGEMARQ_15.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/COMPAQ_PAGEMARQ_15_v2013.109.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/COMPAQ_PAGEMARQ_20.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/COMPAQ_PAGEMARQ_20_v2013.109.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Canon_LASER_SHOT_A404PS_with_2_fonts.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Canon_LASER_SHOT_A404PS_with_5_fonts.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Canon_LBP-4_PS-2.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Canon_LBP-8IIIR_PS-1.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Canon_LBP-8IIIT_PS-1.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Canon_LBP-8III_PS-1.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Canon_PS-IPU-J_Color_BJ_Copier.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Canon_PS-IPU_Color_BJ_Copier.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Canon_PS-IPU_Color_Laser_Copier.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Canon_PS-IPU_Kanji_Color_Laser_Copier.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Colormate_PS.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/CompuPrint_PageMaster_825%1025.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/DataProducts_LZR_2080%F5.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/DataProducts_LZR_2080%F5_Kanji.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Dataproducts_LZR-2665.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Dataproducts_LZR_1260.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Dataproducts_LZR_1560.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Dataproducts_LZR_960.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Digital_Colormate_PS.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Digital_DECcolorwriter_1000__17_fonts.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Digital_DECcolorwriter_1000__39_fonts.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Digital_DEClaser_1150.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Digital_DEClaser_1152.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Digital_DEClaser_1152_(43_fonts).ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Digital_DEClaser_2150.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Digital_DEClaser_2150_plus.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Digital_DEClaser_2250.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Digital_DEClaser_2250_plus.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Digital_PrintServer_17.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Digital_PrintServer_20.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Digital_PrintServer_32.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Digital_PrintServer_40_Plus.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Digital_ScriptPrinter.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Digital_turbo_PrintServer_20.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/EPSON_EPL-7500.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/EPSON_LP-3000PS_F2.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/EPSON_LP-3000PS_F5.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/EPSON_PostScript_CARD.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Fiery_200i-CF80_J_Color_Server.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Fujitsu_RX7100PS.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/GCC_BLP_Elite.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/GCC_BLP_II.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/GCC_BLP_IIS.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/GCC_Business_LaserPrinter.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/GCC_Business_LaserPrinter_v49.2.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Gestetner_GLP800-Scout.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/HP_DesignJet_650C.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/HP_DeskJet_1200C%PS.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/HP_LaserJet_4ML.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/HP_LaserJet_4MP.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/HP_LaserJet_4Si%4SiMX_PS_300dpi.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/HP_LaserJet_4Si%4SiMX_PS_600dpi.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/HP_LaserJet_4_PostScript_600DPI.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/HP_LaserJet_IID_PostScript_Cartridge.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/HP_LaserJet_IIID_PostScript_Cartridge.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/HP_LaserJet_IIID_PostScript_Plus.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/HP_LaserJet_IIIP_PostScript_Cartridge.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/HP_LaserJet_IIIP_PostScript_Plus.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/HP_LaserJet_IIISi_PostScript.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/HP_LaserJet_IIISi_Postscript_2.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/HP_LaserJet_III_PostScript_Cartridge.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/HP_LaserJet_III_PostScript_Plus.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/HP_LaserJet_IIP_PostScript_Cartridge.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/HP_PaintJet_XL300.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/IBM_4019_17_fonts.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/IBM_4019_39_fonts.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/IBM_4029_with_17_Fonts.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/IBM_4029_with_39_Fonts.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/IBM_4216-020.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/IBM_4216-030.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/IDT_OracC_Velociraptor.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/KODAK_ColorEase_PS_Printer.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Linotronic_100.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Linotronic_200.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Linotronic_200_230.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Linotronic_200_v49.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Linotronic_260.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Linotronic_300.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Linotronic_300_v49.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Linotronic_300_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Linotronic_330.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Linotronic_500.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Linotronic_500_v52.3.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Linotronic_530.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Linotronic_630.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Linotronic_830.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Linotronic_930.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Linotronic_Pr60.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Monotype_ImageMaster_1200.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Monotype_Imagesetter.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/NEC_Colormate_PS%40.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/NEC_Colormate_PS%80.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/NEC_PC-PR3000PS%4.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/NEC_PC-PR3000PS%4F.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/NEC_SilentWriter_95.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/NEC_SilentWriter_95_v2010.119.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/NEC_Silentwriter2_990.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/NEC_Silentwriter_1097.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/NEC_Silentwriter_80PS2.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/NEC_Silentwriter_80PS5.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/NEC_Silentwriter_97.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/NeXT_400_dpi_Laser_Printer.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/NeXT_400_dpi_Level_II_Printer.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/NeXT_Color_Printer.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/NeXT_Generic_Color.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/OKI_MICROLINE_800PSII_LT.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/OKI_MICROLINE_801PS+F.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/OKI_MICROLINE_801PSII+F.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/OKI_MICROLINE_801PSII.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/OKI_OL850.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/OceColor_G5242_PostScript_Printer.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Oki_OL830-PS.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Oki_OL840-PS.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/OkidataOL870.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Panasonic_KX-P4455.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Panasonic_KX-P5400.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Panasonic_KX-P5400_Fax.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Panasonic_KX-P5410.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Panasonic_KX-P5410_with_39_Fonts.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Personal_LaserWriter_320.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS-PS_1700.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS-PS_2000.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS-PS_2200.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS-PS_2210.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS-PS_2220.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS-PS_410.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS-PS_800.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS-PS_800_Plus.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS-PS_810.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS-PS_810_Turbo.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS-PS_815.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS-PS_815_MR.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS-PS_820.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS-PS_820_Turbo.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS-PS_825.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS-PS_825_MR.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS_1725_Print_System.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS_860_Print_System.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS_ColorScript_100.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS_ColorScript_100_Model_10.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS_ColorScript_100_Model_20.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS_ColorScript_100_Model_30.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS_PS_Jet.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/QMS_PS_Jet_Plus.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Qume_ScripTEN.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/RICOH_LP-M32.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Ricoh_PC_Laser_6000-PS.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Scantext_2030-51.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Schlumberger_5232_Color_PostScript_Printer.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Scitex_Dolev_PSM_L2.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Shinko_Color_CHC-746PSJ_PostScript_Printer.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Silentwriter2_290.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Silentwriter2_Model_90.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Silentwriter_LC_890.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Silentwriter_LC_890XL.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/TI_2115_13_fonts.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/TI_2115_35_fonts.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/TI_OmniLaser_2108.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/TI_microLaser16_Turbo.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/TI_microLaser6_Turbo.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/TI_microLaser9_Turbo.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/TI_microLaser_PS17.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/TI_microLaser_PS35.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/TI_microLaser_Pro_600_2013_PS23.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/TI_microLaser_Pro_600_2013_PS65.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/TI_microLaser_XL_PS17.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/TI_microLaser_XL_PS35.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_200J_v2011.108(4).ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_200e.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_200e_with_17_fonts_v2011.108(2).ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_200e_with_17_fonts_v2011.108(3).ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_200e_with_39_fonts_v2011.108(2).ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_200i.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_200i_v2011.108(2).ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_220J.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_220e_with_17_fonts.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_220e_with_39_fonts.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_220i.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_300J_v2013.113.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_300i_v2013.113.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_480.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_480J.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_III_PXi.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_III_PXiJ.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_III_PXi_v2010.116.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_IISD.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_IISDJ.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_IISDX.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_II_PXe_with_17_fonts.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_II_PXe_with_39_fonts.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_II_PXi.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_II_PXiJ.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_II_PXi_v2010.116.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_PXi.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/UNISYS_AP9210_17_Fonts.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/UNISYS_AP9210_39_Fonts.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Unisys_AP9415.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4000%5100A.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4000%5300A.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4000%5300B.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4000%5300C.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4000%5300EA.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4000%5300EB.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4000%5300EC.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4000%5330A.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4000%5330B.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4000%5330C.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4000%5500A.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4000%5500B.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4000%5500C.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4000%5510_or_5100E.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4000%5630A.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4000%5630B.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4000%5660_or_5660E.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4000%5860_or_5860E.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4000%L300.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4000%L330.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4000%L500_or_4000%L530.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4200B-P.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4300P.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4990.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_4990T.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_5100E.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_5960E.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_6000.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_6990.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_Series_4000-5300.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_Series_4000-5330.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_Series_4000-5500.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_VT-600P.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Varityper_VT-600W.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Xerox_4220_LPS.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Xerox_8812.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Xerox_DocuTech_135.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Xerox_DocuTech_90.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/English.lproj/Xerox_MajestiK_5765.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/French.lproj/Linotronic_300.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/German.lproj/Linotronic_300.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/Italian.lproj/Linotronic_300.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/Spanish.lproj/Linotronic_300.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/PPD/Swedish.lproj/Linotronic_300.ppd -%%GNUSTEP_DEVEL%%System/Library/PostScript/Printers -%%GNUSTEP_STABLE%%System/Library/Model/ColorPanel.gmodel -%%GNUSTEP_STABLE%%System/Library/Model/SavePanel.gmodel -%%GNUSTEP_STABLE%%System/Library/Model/SpellPanel.gmodel +System/Library/Headers/AppKit/AppKit.h +System/Library/Headers/AppKit/AppKitDefines.h +System/Library/Headers/AppKit/AppKitExceptions.h +System/Library/Headers/AppKit/DPSOperators.h +System/Library/Headers/AppKit/GMAppKit.h +System/Library/Headers/AppKit/GMArchiver.h +System/Library/Headers/AppKit/GSDisplayServer.h +System/Library/Headers/AppKit/GSFontInfo.h +System/Library/Headers/AppKit/GSFusedSilica.h +System/Library/Headers/AppKit/GSHbox.h +System/Library/Headers/AppKit/GSHelpManagerPanel.h +System/Library/Headers/AppKit/GSHorizontalTypesetter.h +System/Library/Headers/AppKit/GSInfoPanel.h +System/Library/Headers/AppKit/GSLayoutManager.h +System/Library/Headers/AppKit/GSLayoutManager_internal.h +System/Library/Headers/AppKit/GSMemoryPanel.h +System/Library/Headers/AppKit/GSMethodTable.h +System/Library/Headers/AppKit/GSNibTemplates.h +System/Library/Headers/AppKit/GSPasteboardServer.h +System/Library/Headers/AppKit/GSServicesManager.h +System/Library/Headers/AppKit/GSTable.h +System/Library/Headers/AppKit/GSTextConverter.h +System/Library/Headers/AppKit/GSToolbarView.h +System/Library/Headers/AppKit/GSTrackingRect.h +System/Library/Headers/AppKit/GSTypesetter.h +System/Library/Headers/AppKit/GSVbox.h +System/Library/Headers/AppKit/GSVersion.h +System/Library/Headers/AppKit/IMConnectors.h +System/Library/Headers/AppKit/IMCustomObject.h +System/Library/Headers/AppKit/IMLoading.h +System/Library/Headers/AppKit/NSActionCell.h +System/Library/Headers/AppKit/NSAffineTransform.h +System/Library/Headers/AppKit/NSApplication.h +System/Library/Headers/AppKit/NSAttributedString.h +System/Library/Headers/AppKit/NSBezierPath.h +System/Library/Headers/AppKit/NSBitmapImageRep.h +System/Library/Headers/AppKit/NSBox.h +System/Library/Headers/AppKit/NSBrowser.h +System/Library/Headers/AppKit/NSBrowserCell.h +System/Library/Headers/AppKit/NSButton.h +System/Library/Headers/AppKit/NSButtonCell.h +System/Library/Headers/AppKit/NSCachedImageRep.h +System/Library/Headers/AppKit/NSCell.h +System/Library/Headers/AppKit/NSClipView.h +System/Library/Headers/AppKit/NSColor.h +System/Library/Headers/AppKit/NSColorList.h +System/Library/Headers/AppKit/NSColorPanel.h +System/Library/Headers/AppKit/NSColorPicker.h +System/Library/Headers/AppKit/NSColorPicking.h +System/Library/Headers/AppKit/NSColorWell.h +System/Library/Headers/AppKit/NSComboBox.h +System/Library/Headers/AppKit/NSComboBoxCell.h +System/Library/Headers/AppKit/NSControl.h +System/Library/Headers/AppKit/NSCursor.h +System/Library/Headers/AppKit/NSCustomImageRep.h +System/Library/Headers/AppKit/NSDataLink.h +System/Library/Headers/AppKit/NSDataLinkManager.h +System/Library/Headers/AppKit/NSDataLinkPanel.h +System/Library/Headers/AppKit/NSDocument.h +System/Library/Headers/AppKit/NSDocumentController.h +System/Library/Headers/AppKit/NSDocumentFrameworkPrivate.h +System/Library/Headers/AppKit/NSDragging.h +System/Library/Headers/AppKit/NSDrawer.h +System/Library/Headers/AppKit/NSEPSImageRep.h +System/Library/Headers/AppKit/NSEvent.h +System/Library/Headers/AppKit/NSFileWrapper.h +System/Library/Headers/AppKit/NSFont.h +System/Library/Headers/AppKit/NSFontManager.h +System/Library/Headers/AppKit/NSFontPanel.h +System/Library/Headers/AppKit/NSForm.h +System/Library/Headers/AppKit/NSFormCell.h +System/Library/Headers/AppKit/NSGraphics.h +System/Library/Headers/AppKit/NSGraphicsContext.h +System/Library/Headers/AppKit/NSHelpManager.h +System/Library/Headers/AppKit/NSHelpPanel.h +System/Library/Headers/AppKit/NSImage.h +System/Library/Headers/AppKit/NSImageCell.h +System/Library/Headers/AppKit/NSImageRep.h +System/Library/Headers/AppKit/NSImageView.h +System/Library/Headers/AppKit/NSInputManager.h +System/Library/Headers/AppKit/NSInputServer.h +System/Library/Headers/AppKit/NSInterfaceStyle.h +System/Library/Headers/AppKit/NSLayoutManager.h +System/Library/Headers/AppKit/NSMatrix.h +System/Library/Headers/AppKit/NSMenu.h +System/Library/Headers/AppKit/NSMenuItem.h +System/Library/Headers/AppKit/NSMenuItemCell.h +System/Library/Headers/AppKit/NSMenuView.h +System/Library/Headers/AppKit/NSNibConnector.h +System/Library/Headers/AppKit/NSNibDeclarations.h +System/Library/Headers/AppKit/NSNibLoading.h +System/Library/Headers/AppKit/NSOpenGL.h +System/Library/Headers/AppKit/NSOpenGLView.h +System/Library/Headers/AppKit/NSOpenPanel.h +System/Library/Headers/AppKit/NSOutlineView.h +System/Library/Headers/AppKit/NSPageLayout.h +System/Library/Headers/AppKit/NSPanel.h +System/Library/Headers/AppKit/NSParagraphStyle.h +System/Library/Headers/AppKit/NSPasteboard.h +System/Library/Headers/AppKit/NSPopUpButton.h +System/Library/Headers/AppKit/NSPopUpButtonCell.h +System/Library/Headers/AppKit/NSPrintInfo.h +System/Library/Headers/AppKit/NSPrintOperation.h +System/Library/Headers/AppKit/NSPrintPanel.h +System/Library/Headers/AppKit/NSPrinter.h +System/Library/Headers/AppKit/NSProgressIndicator.h +System/Library/Headers/AppKit/NSResponder.h +System/Library/Headers/AppKit/NSRulerMarker.h +System/Library/Headers/AppKit/NSRulerView.h +System/Library/Headers/AppKit/NSSavePanel.h +System/Library/Headers/AppKit/NSScreen.h +System/Library/Headers/AppKit/NSScrollView.h +System/Library/Headers/AppKit/NSScroller.h +System/Library/Headers/AppKit/NSSecureTextField.h +System/Library/Headers/AppKit/NSSelection.h +System/Library/Headers/AppKit/NSSlider.h +System/Library/Headers/AppKit/NSSliderCell.h +System/Library/Headers/AppKit/NSSound.h +System/Library/Headers/AppKit/NSSpellChecker.h +System/Library/Headers/AppKit/NSSpellProtocol.h +System/Library/Headers/AppKit/NSSpellServer.h +System/Library/Headers/AppKit/NSSplitView.h +System/Library/Headers/AppKit/NSStepper.h +System/Library/Headers/AppKit/NSStepperCell.h +System/Library/Headers/AppKit/NSStringDrawing.h +System/Library/Headers/AppKit/NSTabView.h +System/Library/Headers/AppKit/NSTabViewItem.h +System/Library/Headers/AppKit/NSTableColumn.h +System/Library/Headers/AppKit/NSTableHeaderCell.h +System/Library/Headers/AppKit/NSTableHeaderView.h +System/Library/Headers/AppKit/NSTableView.h +System/Library/Headers/AppKit/NSText.h +System/Library/Headers/AppKit/NSTextAttachment.h +System/Library/Headers/AppKit/NSTextContainer.h +System/Library/Headers/AppKit/NSTextField.h +System/Library/Headers/AppKit/NSTextFieldCell.h +System/Library/Headers/AppKit/NSTextStorage.h +System/Library/Headers/AppKit/NSTextView.h +System/Library/Headers/AppKit/NSToolbar.h +System/Library/Headers/AppKit/NSToolbarItem.h +System/Library/Headers/AppKit/NSUserInterfaceValidation.h +System/Library/Headers/AppKit/NSView.h +System/Library/Headers/AppKit/NSWindow.h +System/Library/Headers/AppKit/NSWindowController.h +System/Library/Headers/AppKit/NSWorkspace.h +System/Library/Headers/AppKit/PSOperators.h +System/Library/Headers/GNUstepGUI/GSVersion.h +System/Library/Headers/GNUstepGUI/GMAppKit.h +System/Library/Headers/GNUstepGUI/GMArchiver.h +System/Library/Headers/GNUstepGUI/GSFontInfo.h +System/Library/Headers/GNUstepGUI/GSMemoryPanel.h +System/Library/Headers/GNUstepGUI/GSInfoPanel.h +System/Library/Headers/GNUstepGUI/GSMethodTable.h +System/Library/Headers/GNUstepGUI/GSPasteboardServer.h +System/Library/Headers/GNUstepGUI/GSServicesManager.h +System/Library/Headers/GNUstepGUI/GSTextConverter.h +System/Library/Headers/GNUstepGUI/GSTrackingRect.h +System/Library/Headers/GNUstepGUI/GSHelpManagerPanel.h +System/Library/Headers/GNUstepGUI/GSNibTemplates.h +System/Library/Headers/GNUstepGUI/GSDisplayServer.h +System/Library/Headers/GNUstepGUI/GSFusedSilica.h +System/Library/Headers/GNUstepGUI/GSTable.h +System/Library/Headers/GNUstepGUI/GSHbox.h +System/Library/Headers/GNUstepGUI/GSVbox.h +System/Library/Headers/GNUstepGUI/IMConnectors.h +System/Library/Headers/GNUstepGUI/IMCustomObject.h +System/Library/Headers/GNUstepGUI/IMLoading.h +System/Library/Headers/GNUstepGUI/GSLayoutManager.h +System/Library/Headers/GNUstepGUI/GSLayoutManager_internal.h +System/Library/Headers/GNUstepGUI/GSTypesetter.h +System/Library/Headers/GNUstepGUI/GSHorizontalTypesetter.h +System/Library/Headers/GNUstepGUI/GSToolbarView.h +System/Library/Headers/gnustep/gui/GMAppKit.h +System/Library/Headers/gnustep/gui/GMArchiver.h +System/Library/Headers/gnustep/gui/GSVersion.h +System/Library/Headers/gnustep/gui/GSFontInfo.h +System/Library/Headers/gnustep/gui/GSMemoryPanel.h +System/Library/Headers/gnustep/gui/GSInfoPanel.h +System/Library/Headers/gnustep/gui/GSMethodTable.h +System/Library/Headers/gnustep/gui/GSPasteboardServer.h +System/Library/Headers/gnustep/gui/GSServicesManager.h +System/Library/Headers/gnustep/gui/GSTextConverter.h +System/Library/Headers/gnustep/gui/GSTrackingRect.h +System/Library/Headers/gnustep/gui/GSHelpManagerPanel.h +System/Library/Headers/gnustep/gui/GSNibTemplates.h +System/Library/Headers/gnustep/gui/GSDisplayServer.h +System/Library/Headers/gnustep/gui/GSFusedSilica.h +System/Library/Headers/gnustep/gui/GSTable.h +System/Library/Headers/gnustep/gui/GSHbox.h +System/Library/Headers/gnustep/gui/GSVbox.h +System/Library/Headers/gnustep/gui/GSLayoutManager.h +System/Library/Headers/gnustep/gui/GSLayoutManager_internal.h +System/Library/Headers/gnustep/gui/GSTypesetter.h +System/Library/Headers/gnustep/gui/GSHorizontalTypesetter.h +System/Library/Headers/gnustep/gui/GSToolbarView.h +System/Library/Headers/gnustep/gui/IMConnectors.h +System/Library/Headers/gnustep/gui/IMCustomObject.h +System/Library/Headers/gnustep/gui/IMLoading.h +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Additions/.cvsignore +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Additions/GNUmakefile +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Additions/GuiAdditions.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Additions/TypesAndConstants.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Additions/Functions.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Additions/GSDisplayServer.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Additions/GSTable.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Additions/GSHbox.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Additions/GSVbox.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Additions/GuiAdditions.igsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Additions/GSDisplayServer.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Additions/Functions.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Additions/TypesAndConstants.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Additions/GSTable.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Additions/GSHbox.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Additions/GSVbox.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/ReleaseNotes/%%VERSION%%/INSTALL +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/ReleaseNotes/%%VERSION%%/NEWS +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/ReleaseNotes/%%VERSION%%/README +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/ReleaseNotes/%%VERSION%%/ANNOUNCE +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/ReleaseNotes/%%VERSION%%/BUGS +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/.cvsignore +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/GNUmakefile +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/Gui.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/Introduction.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSBundleAdditions.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSCoderAdditions.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSMutableAttributedStringAdditions.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSStringAdditions.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSDocumentController.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/TypesAndConstants.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/Functions.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSActionCell.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSAffineTransform.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSApplication.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSBezierPath.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSBox.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSBitmapImageRep.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSBrowser.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSBrowserCell.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSButton.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSButtonCell.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSCachedImageRep.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSCell.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSClipView.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSColor.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSColorList.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSColorPanel.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSColorPicker.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSColorWell.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSComboBox.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSComboBoxCell.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSControl.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSCursor.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSCustomImageRep.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSDataLink.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSDataLinkManager.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSDataLinkPanel.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSDocument.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSEPSImageRep.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSDrawer.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSFileWrapper.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSEvent.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSFontManager.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSFont.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSFontPanel.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTableView.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSForm.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSFormCell.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSGraphicsContext.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSHelpPanel.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSHelpManager.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSImage.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSImageCell.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSImageRep.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSImageView.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSInputManager.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSInputServer.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSLayoutManager.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSMatrix.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSMenu.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSMenuItem.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSMenuItemCell.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSMenuView.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSOpenPanel.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSOutlineView.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSPageLayout.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSPanel.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSParagraphStyle.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSPasteboard.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSPopUpButton.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSPopUpButtonCell.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSPrintInfo.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSPrintOperation.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSPrintPanel.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSPrinter.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSProgressIndicator.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSResponder.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSRulerMarker.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSRulerView.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSSavePanel.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSScreen.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSScrollView.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSScroller.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSSecureTextField.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSSelection.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSSlider.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSSliderCell.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSSound.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSSpellChecker.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSSpellServer.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSSplitView.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSStepper.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSStepperCell.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSStringDrawing.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTabView.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTabViewItem.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTableColumn.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTableHeaderCell.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTableHeaderView.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTextAttachment.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSText.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTextContainer.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTextField.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTextFieldCell.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTextStorage.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTextView.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSToolbar.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSToolbarItem.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSView.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSWindow.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSWindowController.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSWorkspace.gsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/Gui.igsdoc +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/Gui.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/Functions.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSActionCell.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/TypesAndConstants.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSAffineTransform.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSApplication.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSBezierPath.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSBox.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSBitmapImageRep.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSBrowser.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSBrowserCell.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSButton.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSButtonCell.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSCachedImageRep.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSCell.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSClipView.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSColor.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSColorList.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSColorPanel.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSColorPicker.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSPageLayout.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSColorWell.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSComboBox.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSComboBoxCell.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSControl.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSCursor.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSCustomImageRep.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSDataLink.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSDataLinkManager.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSDataLinkPanel.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSDocument.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSDocumentController.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSDrawer.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSEPSImageRep.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSEvent.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSFileWrapper.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSFont.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSFontManager.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSFontPanel.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSForm.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSFormCell.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSGraphicsContext.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSHelpPanel.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSHelpManager.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSImage.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSImageCell.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSImageRep.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSImageView.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSInputManager.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSInputServer.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSLayoutManager.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSMatrix.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSMenu.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSMenuItem.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSMenuItemCell.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSMenuView.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSOpenPanel.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSOutlineView.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSParagraphStyle.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSPanel.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSPasteboard.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSPopUpButton.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSPopUpButtonCell.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSPrintInfo.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSPrintOperation.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSPrintPanel.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSPrinter.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSProgressIndicator.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSResponder.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSRulerMarker.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSRulerView.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSSavePanel.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSScreen.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSScrollView.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSScroller.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSSelection.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTableHeaderCell.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSSecureTextField.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSSlider.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSSliderCell.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSSound.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSSpellChecker.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSSpellServer.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSSplitView.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSStepper.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSStepperCell.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSStringDrawing.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTabView.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTabViewItem.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTableColumn.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTableHeaderView.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTableView.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSText.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTextAttachment.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTextContainer.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTextField.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTextFieldCell.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTextStorage.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSTextView.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSToolbar.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSToolbarItem.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSView.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSWindow.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSWindowController.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSWorkspace.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/Introduction.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSBundleAdditions.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSCoderAdditions.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSMutableAttributedStringAdditions.html +%%PORTDOCS%%System/Library/Documentation/Developer/Gui/Reference/NSStringAdditions.html +%%PORTDOCS%%System/Library/Documentation/User/Gui/.cvsignore +%%PORTDOCS%%System/Library/Documentation/User/Gui/DefaultsSummary.gsdoc +%%PORTDOCS%%System/Library/Documentation/User/Gui/LanguageSetup.gsdoc +%%PORTDOCS%%System/Library/Documentation/User/Gui/DefaultsSummary.html +%%PORTDOCS%%System/Library/Documentation/User/Gui/GuiUser.igsdoc +%%PORTDOCS%%System/Library/Documentation/User/Gui/LanguageSetup.html +%%PORTDOCS%%System/Library/Documentation/man/man1/gopen.1.gz +System/Library/Images/GNUstep.tiff +System/Library/Images/GNUstepMenuImage.tiff +System/Library/Images/GNUstep_Images_Copyright +System/Library/Images/NSComboArrow.tiff +System/Library/Images/common_2DCheckMark.tiff +System/Library/Images/common_2DDash.tiff +System/Library/Images/common_3DArrowDown.tiff +System/Library/Images/common_3DArrowRight.tiff +System/Library/Images/common_3DArrowRightH.tiff +System/Library/Images/common_ArrowDown.tiff +System/Library/Images/common_ArrowLeft.tiff +System/Library/Images/common_ArrowRight.tiff +System/Library/Images/common_ArrowUp.tiff +System/Library/Images/common_CenterTabStop.tiff +System/Library/Images/common_Close.tiff +System/Library/Images/common_CloseBroken.tiff +System/Library/Images/common_CloseH.tiff +System/Library/Images/common_ColorSwatch.tiff +System/Library/Images/common_DecimalTabStop.tiff +System/Library/Images/common_Diamond.tiff +System/Library/Images/common_Dimple.tiff +System/Library/Images/common_DownArrowSmall.tiff +System/Library/Images/common_Folder.tiff +System/Library/Images/common_Home.tiff +System/Library/Images/common_HomeDirectory.tiff +System/Library/Images/common_LeftTabStop.tiff +System/Library/Images/common_Mount.tiff +System/Library/Images/common_Nibble.tiff +System/Library/Images/common_Printer.tiff +System/Library/Images/common_RadioOff.tiff +System/Library/Images/common_RadioOn.tiff +System/Library/Images/common_Right.tiff +System/Library/Images/common_RightH.tiff +System/Library/Images/common_RightTabStop.tiff +System/Library/Images/common_Root_Apple.tiff +System/Library/Images/common_Root_PC.tiff +System/Library/Images/common_Root_SGI.tiff +System/Library/Images/common_Root_Sparc.tiff +System/Library/Images/common_Root_Sparc2.tiff +System/Library/Images/common_SliderHoriz.tiff +System/Library/Images/common_SliderVert.tiff +System/Library/Images/common_SwitchOff.tiff +System/Library/Images/common_SwitchOn.tiff +System/Library/Images/common_TabDownSelectedLeft.tiff +System/Library/Images/common_TabDownSelectedRight.tiff +System/Library/Images/common_TabDownSelectedToUnSelectedJunction.tiff +System/Library/Images/common_TabDownUnSelectedJunction.tiff +System/Library/Images/common_TabDownUnSelectedLeft.tiff +System/Library/Images/common_TabDownUnSelectedRight.tiff +System/Library/Images/common_TabDownUnSelectedToSelectedJunction.tiff +System/Library/Images/common_TabSelectedLeft.tiff +System/Library/Images/common_TabSelectedRight.tiff +System/Library/Images/common_TabSelectedToUnSelectedJunction.tiff +System/Library/Images/common_TabUnSelectToSelectedJunction.tiff +System/Library/Images/common_TabUnSelectedJunction.tiff +System/Library/Images/common_TabUnSelectedLeft.tiff +System/Library/Images/common_TabUnSelectedRight.tiff +System/Library/Images/common_Tile.tiff +System/Library/Images/common_ToolbarSeperatorItem.tiff +System/Library/Images/common_ToolbarShowColorsItem.tiff +System/Library/Images/common_ToolbarShowFontsItem.tiff +System/Library/Images/common_ToolbarSpaceItem.tiff +System/Library/Images/common_Unknown.tiff +System/Library/Images/common_UnknownApplication.tiff +System/Library/Images/common_UnknownTool.tiff +System/Library/Images/common_Unmount.tiff +System/Library/Images/common_UpAndDownArrowSmall.tiff +System/Library/Images/common_WMClose.tiff +System/Library/Images/common_WMCloseBroken.tiff +System/Library/Images/common_copyCursor.tiff +System/Library/Images/common_linkCursor.tiff +System/Library/Images/common_noCursor.tiff +System/Library/Images/common_outlineCollapsed.tiff +System/Library/Images/common_outlineExpanded.tiff +System/Library/Images/common_outlineUnexpandable.tiff +System/Library/Images/common_ret.tiff +System/Library/Images/common_retH.tiff +System/Library/Images/nsmapping.strings +System/Library/KeyBindings/DefaultKeyBindings.dict +System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSDataLinkPanel.gorm/data.classes +System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSDataLinkPanel.gorm/objects.gorm +System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSPageLayout.gorm/data.classes +System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSPageLayout.gorm/objects.gorm +System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSPrintPanel.gorm/data.classes +System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSPrintPanel.gorm/objects.gorm +System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSSpellPanel.gorm/data.classes +System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSSpellPanel.gorm/objects.gorm +System/Library/Libraries/Resources/gnustep-gui/English.lproj/Localizable.strings +System/Library/Libraries/Resources/gnustep-gui/Italian.lproj/Localizable.strings +System/Library/Libraries/libgnustep-gui.so +System/Library/Libraries/libgnustep-gui.so.%%MAJORVERSION%% +System/Library/Libraries/libgnustep-gui.so.%%VERSION%% +System/Library/PostScript/GSProlog.ps +System/Library/PostScript/PPD/English.lproj/AGFA_AccuSet.ppd +System/Library/PostScript/PPD/English.lproj/AGFA_AccuSetSF.ppd +System/Library/PostScript/PPD/English.lproj/AGFA_ProSet9400.ppd +System/Library/PostScript/PPD/English.lproj/AGFA_ProSet9400SF.ppd +System/Library/PostScript/PPD/English.lproj/AGFA_ProSet9550.ppd +System/Library/PostScript/PPD/English.lproj/AGFA_ProSet9550SF.ppd +System/Library/PostScript/PPD/English.lproj/AGFA_ProSet9600.ppd +System/Library/PostScript/PPD/English.lproj/AGFA_ProSet9600SF.ppd +System/Library/PostScript/PPD/English.lproj/AGFA_ProSet9700.ppd +System/Library/PostScript/PPD/English.lproj/AGFA_ProSet9700SF.ppd +System/Library/PostScript/PPD/English.lproj/AGFA_ProSet9800.ppd +System/Library/PostScript/PPD/English.lproj/AGFA_ProSet9800SF.ppd +System/Library/PostScript/PPD/English.lproj/AGFA_SelectSet5000.ppd +System/Library/PostScript/PPD/English.lproj/AGFA_SelectSet5000SF.ppd +System/Library/PostScript/PPD/English.lproj/AGFA_SelectSet7000.ppd +System/Library/PostScript/PPD/English.lproj/AGFA_SelectSet7000SF.ppd +System/Library/PostScript/PPD/English.lproj/AGFA_StudioSet2000.ppd +System/Library/PostScript/PPD/English.lproj/APS-PS_PIP_with_APS-6-108.ppd +System/Library/PostScript/PPD/English.lproj/APS-PS_PIP_with_APS-6-80.ppd +System/Library/PostScript/PPD/English.lproj/APS-PS_PIP_with_LZR_1200.ppd +System/Library/PostScript/PPD/English.lproj/APS-PS_PIP_with_LZR_2600.ppd +System/Library/PostScript/PPD/English.lproj/AST_TurboLaser-PS.ppd +System/Library/PostScript/PPD/English.lproj/Adobe_LaserJet_II_Cartridge.ppd +System/Library/PostScript/PPD/English.lproj/Agfa-Compugraphic_9400P.ppd +System/Library/PostScript/PPD/English.lproj/Agfa_Matrix_ChromaScript.ppd +System/Library/PostScript/PPD/English.lproj/Agfa_TabScript_C500_PostScript_Printer.ppd +System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter-Select_310.ppd +System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter.ppd +System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_II_NT.ppd +System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_II_NTX-J_v50.5.ppd +System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_II_NTX.ppd +System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_II_NTX_v50.5.ppd +System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_II_NTX_v51.8.ppd +System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_IIf.ppd +System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_IIg.ppd +System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_Personal_NT.ppd +System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_Plus.ppd +System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_Plus_v42.2.ppd +System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_Pro_600.ppd +System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_Pro_630.ppd +System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_Pro_810.ppd +System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_Pro_810_with_Fax_Card.ppd +System/Library/PostScript/PPD/English.lproj/Apple_LaserWriter_Select_610.ppd +System/Library/PostScript/PPD/English.lproj/Apple_Personal_LaserWriter_NTR.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_APS-1000_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_APS-1560_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_APS-4000_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_APS-5000_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_APS-6%108c_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_APS-6%108h_or_APS-6%108ch_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_APS-6%108hs_or_APS-6%108chs_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_APS-6%70_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_APS-6%70c_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_APS-6%70ch_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_APS-6%70chs_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_APS-6%70vr_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_APS-6%80_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_APS-6%84c_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_APS-6000_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_APS-6600_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_APS-7000_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_APS-9800_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_APS-AccuSet_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_APS-BroadSheet_Imager_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_APS-ColorMaster_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_APS-PlateMaster_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_APS-ProSet_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_LZR-1200_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Autologic_LZR-2600_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/COMPAQ_PAGEMARQ_15.ppd +System/Library/PostScript/PPD/English.lproj/COMPAQ_PAGEMARQ_15_v2013.109.ppd +System/Library/PostScript/PPD/English.lproj/COMPAQ_PAGEMARQ_20.ppd +System/Library/PostScript/PPD/English.lproj/COMPAQ_PAGEMARQ_20_v2013.109.ppd +System/Library/PostScript/PPD/English.lproj/Canon_LASER_SHOT_A404PS_with_2_fonts.ppd +System/Library/PostScript/PPD/English.lproj/Canon_LASER_SHOT_A404PS_with_5_fonts.ppd +System/Library/PostScript/PPD/English.lproj/Canon_LBP-4_PS-2.ppd +System/Library/PostScript/PPD/English.lproj/Canon_LBP-8IIIR_PS-1.ppd +System/Library/PostScript/PPD/English.lproj/Canon_LBP-8IIIT_PS-1.ppd +System/Library/PostScript/PPD/English.lproj/Canon_LBP-8III_PS-1.ppd +System/Library/PostScript/PPD/English.lproj/Canon_PS-IPU-J_Color_BJ_Copier.ppd +System/Library/PostScript/PPD/English.lproj/Canon_PS-IPU_Color_BJ_Copier.ppd +System/Library/PostScript/PPD/English.lproj/Canon_PS-IPU_Color_Laser_Copier.ppd +System/Library/PostScript/PPD/English.lproj/Canon_PS-IPU_Kanji_Color_Laser_Copier.ppd +System/Library/PostScript/PPD/English.lproj/Colormate_PS.ppd +System/Library/PostScript/PPD/English.lproj/CompuPrint_PageMaster_825%1025.ppd +System/Library/PostScript/PPD/English.lproj/DataProducts_LZR_2080%F5.ppd +System/Library/PostScript/PPD/English.lproj/DataProducts_LZR_2080%F5_Kanji.ppd +System/Library/PostScript/PPD/English.lproj/Dataproducts_LZR-2665.ppd +System/Library/PostScript/PPD/English.lproj/Dataproducts_LZR_1260.ppd +System/Library/PostScript/PPD/English.lproj/Dataproducts_LZR_1560.ppd +System/Library/PostScript/PPD/English.lproj/Dataproducts_LZR_960.ppd +System/Library/PostScript/PPD/English.lproj/Digital_Colormate_PS.ppd +System/Library/PostScript/PPD/English.lproj/Digital_DECcolorwriter_1000__17_fonts.ppd +System/Library/PostScript/PPD/English.lproj/Digital_DECcolorwriter_1000__39_fonts.ppd +System/Library/PostScript/PPD/English.lproj/Digital_DEClaser_1150.ppd +System/Library/PostScript/PPD/English.lproj/Digital_DEClaser_1152.ppd +System/Library/PostScript/PPD/English.lproj/Digital_DEClaser_1152_(43_fonts).ppd +System/Library/PostScript/PPD/English.lproj/Digital_DEClaser_2150.ppd +System/Library/PostScript/PPD/English.lproj/Digital_DEClaser_2150_plus.ppd +System/Library/PostScript/PPD/English.lproj/Digital_DEClaser_2250.ppd +System/Library/PostScript/PPD/English.lproj/Digital_DEClaser_2250_plus.ppd +System/Library/PostScript/PPD/English.lproj/Digital_PrintServer_17.ppd +System/Library/PostScript/PPD/English.lproj/Digital_PrintServer_20.ppd +System/Library/PostScript/PPD/English.lproj/Digital_PrintServer_32.ppd +System/Library/PostScript/PPD/English.lproj/Digital_PrintServer_40_Plus.ppd +System/Library/PostScript/PPD/English.lproj/Digital_ScriptPrinter.ppd +System/Library/PostScript/PPD/English.lproj/Digital_turbo_PrintServer_20.ppd +System/Library/PostScript/PPD/English.lproj/EPSON_EPL-7500.ppd +System/Library/PostScript/PPD/English.lproj/EPSON_LP-3000PS_F2.ppd +System/Library/PostScript/PPD/English.lproj/EPSON_LP-3000PS_F5.ppd +System/Library/PostScript/PPD/English.lproj/EPSON_PostScript_CARD.ppd +System/Library/PostScript/PPD/English.lproj/Fiery_200i-CF80_J_Color_Server.ppd +System/Library/PostScript/PPD/English.lproj/Fujitsu_RX7100PS.ppd +System/Library/PostScript/PPD/English.lproj/GCC_BLP_Elite.ppd +System/Library/PostScript/PPD/English.lproj/GCC_BLP_II.ppd +System/Library/PostScript/PPD/English.lproj/GCC_BLP_IIS.ppd +System/Library/PostScript/PPD/English.lproj/GCC_Business_LaserPrinter.ppd +System/Library/PostScript/PPD/English.lproj/GCC_Business_LaserPrinter_v49.2.ppd +System/Library/PostScript/PPD/English.lproj/Gestetner_GLP800-Scout.ppd +System/Library/PostScript/PPD/English.lproj/HP_DesignJet_650C.ppd +System/Library/PostScript/PPD/English.lproj/HP_DeskJet_1200C%PS.ppd +System/Library/PostScript/PPD/English.lproj/HP_LaserJet_4ML.ppd +System/Library/PostScript/PPD/English.lproj/HP_LaserJet_4MP.ppd +System/Library/PostScript/PPD/English.lproj/HP_LaserJet_4Si%4SiMX_PS_300dpi.ppd +System/Library/PostScript/PPD/English.lproj/HP_LaserJet_4Si%4SiMX_PS_600dpi.ppd +System/Library/PostScript/PPD/English.lproj/HP_LaserJet_4_PostScript_600DPI.ppd +System/Library/PostScript/PPD/English.lproj/HP_LaserJet_IID_PostScript_Cartridge.ppd +System/Library/PostScript/PPD/English.lproj/HP_LaserJet_IIID_PostScript_Cartridge.ppd +System/Library/PostScript/PPD/English.lproj/HP_LaserJet_IIID_PostScript_Plus.ppd +System/Library/PostScript/PPD/English.lproj/HP_LaserJet_IIIP_PostScript_Cartridge.ppd +System/Library/PostScript/PPD/English.lproj/HP_LaserJet_IIIP_PostScript_Plus.ppd +System/Library/PostScript/PPD/English.lproj/HP_LaserJet_IIISi_PostScript.ppd +System/Library/PostScript/PPD/English.lproj/HP_LaserJet_IIISi_Postscript_2.ppd +System/Library/PostScript/PPD/English.lproj/HP_LaserJet_III_PostScript_Cartridge.ppd +System/Library/PostScript/PPD/English.lproj/HP_LaserJet_III_PostScript_Plus.ppd +System/Library/PostScript/PPD/English.lproj/HP_LaserJet_IIP_PostScript_Cartridge.ppd +System/Library/PostScript/PPD/English.lproj/HP_PaintJet_XL300.ppd +System/Library/PostScript/PPD/English.lproj/IBM_4019_17_fonts.ppd +System/Library/PostScript/PPD/English.lproj/IBM_4019_39_fonts.ppd +System/Library/PostScript/PPD/English.lproj/IBM_4029_with_17_Fonts.ppd +System/Library/PostScript/PPD/English.lproj/IBM_4029_with_39_Fonts.ppd +System/Library/PostScript/PPD/English.lproj/IBM_4216-020.ppd +System/Library/PostScript/PPD/English.lproj/IBM_4216-030.ppd +System/Library/PostScript/PPD/English.lproj/IDT_OracC_Velociraptor.ppd +System/Library/PostScript/PPD/English.lproj/KODAK_ColorEase_PS_Printer.ppd +System/Library/PostScript/PPD/English.lproj/Linotronic_100.ppd +System/Library/PostScript/PPD/English.lproj/Linotronic_200.ppd +System/Library/PostScript/PPD/English.lproj/Linotronic_200_230.ppd +System/Library/PostScript/PPD/English.lproj/Linotronic_200_v49.3.ppd +System/Library/PostScript/PPD/English.lproj/Linotronic_260.ppd +System/Library/PostScript/PPD/English.lproj/Linotronic_300.ppd +System/Library/PostScript/PPD/English.lproj/Linotronic_300_v49.3.ppd +System/Library/PostScript/PPD/English.lproj/Linotronic_300_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Linotronic_330.ppd +System/Library/PostScript/PPD/English.lproj/Linotronic_500.ppd +System/Library/PostScript/PPD/English.lproj/Linotronic_500_v52.3.ppd +System/Library/PostScript/PPD/English.lproj/Linotronic_530.ppd +System/Library/PostScript/PPD/English.lproj/Linotronic_630.ppd +System/Library/PostScript/PPD/English.lproj/Linotronic_830.ppd +System/Library/PostScript/PPD/English.lproj/Linotronic_930.ppd +System/Library/PostScript/PPD/English.lproj/Linotronic_Pr60.ppd +System/Library/PostScript/PPD/English.lproj/Monotype_ImageMaster_1200.ppd +System/Library/PostScript/PPD/English.lproj/Monotype_Imagesetter.ppd +System/Library/PostScript/PPD/English.lproj/NEC_Colormate_PS%40.ppd +System/Library/PostScript/PPD/English.lproj/NEC_Colormate_PS%80.ppd +System/Library/PostScript/PPD/English.lproj/NEC_PC-PR3000PS%4.ppd +System/Library/PostScript/PPD/English.lproj/NEC_PC-PR3000PS%4F.ppd +System/Library/PostScript/PPD/English.lproj/NEC_SilentWriter_95.ppd +System/Library/PostScript/PPD/English.lproj/NEC_SilentWriter_95_v2010.119.ppd +System/Library/PostScript/PPD/English.lproj/NEC_Silentwriter2_990.ppd +System/Library/PostScript/PPD/English.lproj/NEC_Silentwriter_1097.ppd +System/Library/PostScript/PPD/English.lproj/NEC_Silentwriter_80PS2.ppd +System/Library/PostScript/PPD/English.lproj/NEC_Silentwriter_80PS5.ppd +System/Library/PostScript/PPD/English.lproj/NEC_Silentwriter_97.ppd +System/Library/PostScript/PPD/English.lproj/NeXT_400_dpi_Laser_Printer.ppd +System/Library/PostScript/PPD/English.lproj/NeXT_400_dpi_Level_II_Printer.ppd +System/Library/PostScript/PPD/English.lproj/NeXT_Color_Printer.ppd +System/Library/PostScript/PPD/English.lproj/NeXT_Generic_Color.ppd +System/Library/PostScript/PPD/English.lproj/OKI_MICROLINE_800PSII_LT.ppd +System/Library/PostScript/PPD/English.lproj/OKI_MICROLINE_801PS+F.ppd +System/Library/PostScript/PPD/English.lproj/OKI_MICROLINE_801PSII+F.ppd +System/Library/PostScript/PPD/English.lproj/OKI_MICROLINE_801PSII.ppd +System/Library/PostScript/PPD/English.lproj/OKI_OL850.ppd +System/Library/PostScript/PPD/English.lproj/OceColor_G5242_PostScript_Printer.ppd +System/Library/PostScript/PPD/English.lproj/Oki_OL830-PS.ppd +System/Library/PostScript/PPD/English.lproj/Oki_OL840-PS.ppd +System/Library/PostScript/PPD/English.lproj/OkidataOL870.ppd +System/Library/PostScript/PPD/English.lproj/Panasonic_KX-P4455.ppd +System/Library/PostScript/PPD/English.lproj/Panasonic_KX-P5400.ppd +System/Library/PostScript/PPD/English.lproj/Panasonic_KX-P5400_Fax.ppd +System/Library/PostScript/PPD/English.lproj/Panasonic_KX-P5410.ppd +System/Library/PostScript/PPD/English.lproj/Panasonic_KX-P5410_with_39_Fonts.ppd +System/Library/PostScript/PPD/English.lproj/Personal_LaserWriter_320.ppd +System/Library/PostScript/PPD/English.lproj/QMS-PS_1700.ppd +System/Library/PostScript/PPD/English.lproj/QMS-PS_2000.ppd +System/Library/PostScript/PPD/English.lproj/QMS-PS_2200.ppd +System/Library/PostScript/PPD/English.lproj/QMS-PS_2210.ppd +System/Library/PostScript/PPD/English.lproj/QMS-PS_2220.ppd +System/Library/PostScript/PPD/English.lproj/QMS-PS_410.ppd +System/Library/PostScript/PPD/English.lproj/QMS-PS_800.ppd +System/Library/PostScript/PPD/English.lproj/QMS-PS_800_Plus.ppd +System/Library/PostScript/PPD/English.lproj/QMS-PS_810.ppd +System/Library/PostScript/PPD/English.lproj/QMS-PS_810_Turbo.ppd +System/Library/PostScript/PPD/English.lproj/QMS-PS_815.ppd +System/Library/PostScript/PPD/English.lproj/QMS-PS_815_MR.ppd +System/Library/PostScript/PPD/English.lproj/QMS-PS_820.ppd +System/Library/PostScript/PPD/English.lproj/QMS-PS_820_Turbo.ppd +System/Library/PostScript/PPD/English.lproj/QMS-PS_825.ppd +System/Library/PostScript/PPD/English.lproj/QMS-PS_825_MR.ppd +System/Library/PostScript/PPD/English.lproj/QMS_1725_Print_System.ppd +System/Library/PostScript/PPD/English.lproj/QMS_860_Print_System.ppd +System/Library/PostScript/PPD/English.lproj/QMS_ColorScript_100.ppd +System/Library/PostScript/PPD/English.lproj/QMS_ColorScript_100_Model_10.ppd +System/Library/PostScript/PPD/English.lproj/QMS_ColorScript_100_Model_20.ppd +System/Library/PostScript/PPD/English.lproj/QMS_ColorScript_100_Model_30.ppd +System/Library/PostScript/PPD/English.lproj/QMS_PS_Jet.ppd +System/Library/PostScript/PPD/English.lproj/QMS_PS_Jet_Plus.ppd +System/Library/PostScript/PPD/English.lproj/Qume_ScripTEN.ppd +System/Library/PostScript/PPD/English.lproj/RICOH_LP-M32.ppd +System/Library/PostScript/PPD/English.lproj/Ricoh_PC_Laser_6000-PS.ppd +System/Library/PostScript/PPD/English.lproj/Scantext_2030-51.ppd +System/Library/PostScript/PPD/English.lproj/Schlumberger_5232_Color_PostScript_Printer.ppd +System/Library/PostScript/PPD/English.lproj/Scitex_Dolev_PSM_L2.ppd +System/Library/PostScript/PPD/English.lproj/Shinko_Color_CHC-746PSJ_PostScript_Printer.ppd +System/Library/PostScript/PPD/English.lproj/Silentwriter2_290.ppd +System/Library/PostScript/PPD/English.lproj/Silentwriter2_Model_90.ppd +System/Library/PostScript/PPD/English.lproj/Silentwriter_LC_890.ppd +System/Library/PostScript/PPD/English.lproj/Silentwriter_LC_890XL.ppd +System/Library/PostScript/PPD/English.lproj/TI_2115_13_fonts.ppd +System/Library/PostScript/PPD/English.lproj/TI_2115_35_fonts.ppd +System/Library/PostScript/PPD/English.lproj/TI_OmniLaser_2108.ppd +System/Library/PostScript/PPD/English.lproj/TI_microLaser16_Turbo.ppd +System/Library/PostScript/PPD/English.lproj/TI_microLaser6_Turbo.ppd +System/Library/PostScript/PPD/English.lproj/TI_microLaser9_Turbo.ppd +System/Library/PostScript/PPD/English.lproj/TI_microLaser_PS17.ppd +System/Library/PostScript/PPD/English.lproj/TI_microLaser_PS35.ppd +System/Library/PostScript/PPD/English.lproj/TI_microLaser_Pro_600_2013_PS23.ppd +System/Library/PostScript/PPD/English.lproj/TI_microLaser_Pro_600_2013_PS65.ppd +System/Library/PostScript/PPD/English.lproj/TI_microLaser_XL_PS17.ppd +System/Library/PostScript/PPD/English.lproj/TI_microLaser_XL_PS35.ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_200J_v2011.108(4).ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_200e.ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_200e_with_17_fonts_v2011.108(2).ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_200e_with_17_fonts_v2011.108(3).ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_200e_with_39_fonts_v2011.108(2).ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_200i.ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_200i_v2011.108(2).ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_220J.ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_220e_with_17_fonts.ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_220e_with_39_fonts.ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_220i.ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_300J_v2013.113.ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_300i_v2013.113.ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_480.ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_480J.ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_III_PXi.ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_III_PXiJ.ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_III_PXi_v2010.116.ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_IISD.ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_IISDJ.ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_IISDX.ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_II_PXe_with_17_fonts.ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_II_PXe_with_39_fonts.ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_II_PXi.ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_II_PXiJ.ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_II_PXi_v2010.116.ppd +System/Library/PostScript/PPD/English.lproj/Tektronix_Phaser_PXi.ppd +System/Library/PostScript/PPD/English.lproj/UNISYS_AP9210_17_Fonts.ppd +System/Library/PostScript/PPD/English.lproj/UNISYS_AP9210_39_Fonts.ppd +System/Library/PostScript/PPD/English.lproj/Unisys_AP9415.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4000%5100A.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4000%5300A.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4000%5300B.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4000%5300C.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4000%5300EA.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4000%5300EB.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4000%5300EC.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4000%5330A.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4000%5330B.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4000%5330C.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4000%5500A.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4000%5500B.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4000%5500C.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4000%5510_or_5100E.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4000%5630A.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4000%5630B.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4000%5660_or_5660E.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4000%5860_or_5860E.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4000%L300.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4000%L330.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4000%L500_or_4000%L530.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4200B-P.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4300P.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4990.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_4990T.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_5100E.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_5960E.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_6000.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_6990.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_Series_4000-5300.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_Series_4000-5330.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_Series_4000-5500.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_VT-600P.ppd +System/Library/PostScript/PPD/English.lproj/Varityper_VT-600W.ppd +System/Library/PostScript/PPD/English.lproj/Xerox_4220_LPS.ppd +System/Library/PostScript/PPD/English.lproj/Xerox_8812.ppd +System/Library/PostScript/PPD/English.lproj/Xerox_DocuTech_135.ppd +System/Library/PostScript/PPD/English.lproj/Xerox_DocuTech_90.ppd +System/Library/PostScript/PPD/English.lproj/Xerox_MajestiK_5765.ppd +System/Library/PostScript/PPD/French.lproj/Linotronic_300.ppd +System/Library/PostScript/PPD/German.lproj/Linotronic_300.ppd +System/Library/PostScript/PPD/Italian.lproj/Linotronic_300.ppd +System/Library/PostScript/PPD/Spanish.lproj/Linotronic_300.ppd +System/Library/PostScript/PPD/Swedish.lproj/Linotronic_300.ppd +System/Library/PostScript/Printers System/Library/Services/GSspell.service/Resources/Info-gnustep.plist -System/Library/Services/GSspell.service/%%NOFLAT%%GSspell +System/Library/Services/GSspell.service/GSspell System/Library/Services/example.service/Resources/Info-gnustep.plist -System/Library/Services/example.service/%%NOFLAT%%example +System/Library/Services/example.service/example System/Makefiles/Additional/gui.make -System/Tools/%%NOFLAT%%gnustep_sndd -System/Tools/%%NOFLAT%%gopen -System/Tools/%%NOFLAT%%make_services -System/Tools/%%NOFLAT%%set_show_service -%%GNUSTEP_STABLE%%@dirrm System/Library/Services/example.service/%%GNU_ARCH%%/%%OPSYS%%/gnu-gnu-gnu -%%GNUSTEP_STABLE%%@dirrm System/Library/Services/example.service/%%GNU_ARCH%%/%%OPSYS%% -%%GNUSTEP_STABLE%%@dirrm System/Library/Services/example.service/%%GNU_ARCH%% +System/Tools/gnustep_sndd +System/Tools/gopen +System/Tools/make_services +System/Tools/set_show_service @dirrm System/Library/Services/example.service/Resources @dirrm System/Library/Services/example.service -%%GNUSTEP_STABLE%%@dirrm System/Library/Services/GSspell.service/%%GNU_ARCH%%/%%OPSYS%%/gnu-gnu-gnu -%%GNUSTEP_STABLE%%@dirrm System/Library/Services/GSspell.service/%%GNU_ARCH%%/%%OPSYS%% -%%GNUSTEP_STABLE%%@dirrm System/Library/Services/GSspell.service/%%GNU_ARCH%% @dirrm System/Library/Services/GSspell.service/Resources @dirrm System/Library/Services/GSspell.service -%%GNUSTEP_DEVEL%%@dirrm System/Library/PostScript/PPD/Swedish.lproj -%%GNUSTEP_DEVEL%%@dirrm System/Library/PostScript/PPD/Spanish.lproj -%%GNUSTEP_DEVEL%%@dirrm System/Library/PostScript/PPD/Italian.lproj -%%GNUSTEP_DEVEL%%@dirrm System/Library/PostScript/PPD/German.lproj -%%GNUSTEP_DEVEL%%@dirrm System/Library/PostScript/PPD/French.lproj -%%GNUSTEP_DEVEL%%@dirrm System/Library/PostScript/PPD/English.lproj -%%GNUSTEP_DEVEL%%@dirrm System/Library/PostScript/PPD -%%GNUSTEP_DEVEL%%@dirrm System/Library/Libraries/Resources/gnustep-gui/Italian.lproj -%%GNUSTEP_DEVEL%%@dirrm System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSSpellPanel.gorm -%%GNUSTEP_DEVEL%%@dirrm System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSPrintPanel.gorm -%%GNUSTEP_DEVEL%%@dirrm System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSPageLayout.gorm -%%GNUSTEP_DEVEL%%@dirrm System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSDataLinkPanel.gorm -%%GNUSTEP_DEVEL%%@dirrm System/Library/Libraries/Resources/gnustep-gui/English.lproj -%%GNUSTEP_DEVEL%%@dirrm System/Library/Libraries/Resources/gnustep-gui -%%GNUSTEP_DEVEL%%@dirrm System/Library/Documentation/User/Gui -%%GNUSTEP_DEVEL%%@dirrm System/Library/Documentation/Developer/Gui/ReleaseNotes/%%VERSION%% -%%GNUSTEP_DEVEL%%@dirrm System/Library/Documentation/Developer/Gui/ReleaseNotes -%%GNUSTEP_DEVEL%%@dirrm System/Library/Documentation/Developer/Gui/Reference -%%GNUSTEP_DEVEL%%@dirrm System/Library/Documentation/Developer/Gui/Additions -%%GNUSTEP_DEVEL%%@dirrm System/Library/Documentation/Developer/Gui -%%GNUSTEP_STABLE%%@dirrm System/Library/Model -%%GNUSTEP_STABLE%%@dirrm %%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/Swedish.lproj -%%GNUSTEP_STABLE%%@dirrm %%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/Spanish.lproj -%%GNUSTEP_STABLE%%@dirrm %%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/Italian.lproj -%%GNUSTEP_STABLE%%@dirrm %%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/German.lproj -%%GNUSTEP_STABLE%%@dirrm %%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/French.lproj -%%GNUSTEP_STABLE%%@dirrm %%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes/English.lproj -%%GNUSTEP_STABLE%%@dirrm %%SYSTEMLIBRARY%%/Libraries/Resources/PrinterTypes -%%GNUSTEP_STABLE%%@dirrm %%SYSTEMLIBRARY%%/Libraries/Resources/KeyBindings -%%GNUSTEP_STABLE%%@dirrm %%SYSTEMLIBRARY%%/Libraries/Resources/Images -@dirrm %%SYSTEMLIBRARY%%/Headers/gnustep/gui -%%GNUSTEP_DEVEL%%@dirrm System/Library/Headers/GNUstepGUI -@dirrm %%SYSTEMLIBRARY%%/Headers/AppKit -%%GNUSTEP_STABLE%%@dirrm System/Library/ColorPickers/WheelPicker.bundle/%%GNU_ARCH%%/%%OPSYS%%/gnu-gnu-gnu -%%GNUSTEP_STABLE%%@dirrm System/Library/ColorPickers/WheelPicker.bundle/%%GNU_ARCH%%/%%OPSYS%% -%%GNUSTEP_STABLE%%@dirrm System/Library/ColorPickers/WheelPicker.bundle/%%GNU_ARCH%% +@dirrm System/Library/PostScript/PPD/Swedish.lproj +@dirrm System/Library/PostScript/PPD/Spanish.lproj +@dirrm System/Library/PostScript/PPD/Italian.lproj +@dirrm System/Library/PostScript/PPD/German.lproj +@dirrm System/Library/PostScript/PPD/French.lproj +@dirrm System/Library/PostScript/PPD/English.lproj +@dirrm System/Library/PostScript/PPD +@dirrm System/Library/Libraries/Resources/gnustep-gui/Italian.lproj +@dirrm System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSSpellPanel.gorm +@dirrm System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSPrintPanel.gorm +@dirrm System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSPageLayout.gorm +@dirrm System/Library/Libraries/Resources/gnustep-gui/English.lproj/GSDataLinkPanel.gorm +@dirrm System/Library/Libraries/Resources/gnustep-gui/English.lproj +@dirrm System/Library/Libraries/Resources/gnustep-gui +%%PORTDOCS%%@dirrm System/Library/Documentation/User/Gui +%%PORTDOCS%%@dirrm System/Library/Documentation/Developer/Gui/ReleaseNotes/%%VERSION%% +%%PORTDOCS%%@dirrm System/Library/Documentation/Developer/Gui/ReleaseNotes +%%PORTDOCS%%@dirrm System/Library/Documentation/Developer/Gui/Reference +%%PORTDOCS%%@dirrm System/Library/Documentation/Developer/Gui/Additions +%%PORTDOCS%%@dirrm System/Library/Documentation/Developer/Gui +@dirrm System/Library/Headers/gnustep/gui +@dirrm System/Library/Headers/GNUstepGUI +@dirrm System/Library/Headers/AppKit @dirrm System/Library/ColorPickers/WheelPicker.bundle/Resources @dirrm System/Library/ColorPickers/WheelPicker.bundle -%%GNUSTEP_STABLE%%@dirrm System/Library/ColorPickers/StandardPicker.bundle/%%GNU_ARCH%%/%%OPSYS%%/gnu-gnu-gnu -%%GNUSTEP_STABLE%%@dirrm System/Library/ColorPickers/StandardPicker.bundle/%%GNU_ARCH%%/%%OPSYS%% -%%GNUSTEP_STABLE%%@dirrm System/Library/ColorPickers/StandardPicker.bundle/%%GNU_ARCH%% @dirrm System/Library/ColorPickers/StandardPicker.bundle/Resources/Swedish.lproj @dirrm System/Library/ColorPickers/StandardPicker.bundle/Resources/French.lproj @dirrm System/Library/ColorPickers/StandardPicker.bundle/Resources/English.lproj @dirrm System/Library/ColorPickers/StandardPicker.bundle/Resources @dirrm System/Library/ColorPickers/StandardPicker.bundle -%%GNUSTEP_DEVEL%%@dirrm System/Library/ColorPickers/NamedPicker.bundle/Resources -%%GNUSTEP_DEVEL%%@dirrm System/Library/ColorPickers/NamedPicker.bundle -%%GNUSTEP_STABLE%%@dirrm System/Library/ColorPickers -%%GNUSTEP_STABLE%%@dirrm System/Library/Bundles/libgmodel.bundle/%%GNU_ARCH%%/%%OPSYS%%/gnu-gnu-gnu -%%GNUSTEP_STABLE%%@dirrm System/Library/Bundles/libgmodel.bundle/%%GNU_ARCH%%/%%OPSYS%% -%%GNUSTEP_STABLE%%@dirrm System/Library/Bundles/libgmodel.bundle/%%GNU_ARCH%% +@dirrm System/Library/ColorPickers/NamedPicker.bundle/Resources +@dirrm System/Library/ColorPickers/NamedPicker.bundle @dirrm System/Library/Bundles/libgmodel.bundle/Resources @dirrm System/Library/Bundles/libgmodel.bundle -%%GNUSTEP_STABLE%%@dirrm System/Library/Bundles/TextConverters/RTFConverter.bundle/%%GNU_ARCH%%/%%OPSYS%%/gnu-gnu-gnu -%%GNUSTEP_STABLE%%@dirrm System/Library/Bundles/TextConverters/RTFConverter.bundle/%%GNU_ARCH%%/%%OPSYS%% -%%GNUSTEP_STABLE%%@dirrm System/Library/Bundles/TextConverters/RTFConverter.bundle/%%GNU_ARCH%% @dirrm System/Library/Bundles/TextConverters/RTFConverter.bundle/Resources @dirrm System/Library/Bundles/TextConverters/RTFConverter.bundle @dirrm System/Library/Bundles/TextConverters -%%GNUSTEP_STABLE%%@dirrm System/Libraries/Resources/gnustep-gui/Resources/Italian.lproj -%%GNUSTEP_STABLE%%@dirrm System/Libraries/Resources/gnustep-gui/Resources/English.lproj -%%GNUSTEP_STABLE%%@dirrm System/Libraries/Resources/gnustep-gui/Resources -%%GNUSTEP_STABLE%%@dirrm System/Libraries/Resources/gnustep-gui -%%GNUSTEP_DEVEL%%@dirrm System/Applications/md5Digest.app/Resources -%%GNUSTEP_DEVEL%%@dirrm System/Applications/md5Digest.app +@dirrm System/Applications/md5Digest.app/Resources +@dirrm System/Applications/md5Digest.app