Index: head/Mk/Uses/gnustep.mk =================================================================== --- head/Mk/Uses/gnustep.mk (revision 391061) +++ head/Mk/Uses/gnustep.mk (revision 391062) @@ -1,79 +1,83 @@ # $FreeBSD$ # # Handle GNUstep related ports # # Feature: gnustep # Usage: USES=gnustep # # Defined specific dependencies under USE_GNUSTEP # Expected arguments for USE_GNUSTEP: # # base: depends on the gnustep-base port # gui: depends on the gnustep-gui port # back: depends on the gnustep-back port # build: prepare the build dependencies for a regular GNUstep port # .if !defined(_INCLUDE_USES_GNUSTEP_MK) _INCLUDE_USES_GNUSTEP_MK= yes .include "${USESDIR}/gmake.mk" GNUSTEP_PREFIX?= ${LOCALBASE}/GNUstep DEFAULT_LIBVERSION?= 0.0.1 GNUSTEP_SYSTEM_ROOT= ${GNUSTEP_PREFIX}/System GNUSTEP_MAKEFILES= ${GNUSTEP_SYSTEM_ROOT}/Library/Makefiles GNUSTEP_SYSTEM_LIBRARIES= ${GNUSTEP_SYSTEM_ROOT}/Library/Libraries GNUSTEP_SYSTEM_TOOLS= ${GNUSTEP_SYSTEM_ROOT}/Tools GNUSTEP_LOCAL_ROOT= ${GNUSTEP_PREFIX}/Local GNUSTEP_LOCAL_LIBRARIES= ${GNUSTEP_LOCAL_ROOT}/Library/Libraries GNUSTEP_LOCAL_TOOLS= ${GNUSTEP_LOCAL_ROOT}/Tools LIB_DIRS+= ${GNUSTEP_SYSTEM_LIBRARIES} \ ${GNUSTEP_LOCAL_LIBRARIES} -.for a in FLAGS CFLAGS CPPFLAGS OBJCFLAGS INCLUDE_DIRS LDFLAGS LIB_DIRS +.for a in CFLAGS CPPFLAGS CXXFLAGS OBJCCFLAGS OBJCFLAGS LDFLAGS +MAKE_ENV+= ADDITIONAL_${a}="${ADDITIONAL_${a}} ${${a}}" +.endfor +.for a in FLAGS INCLUDE_DIRS LIB_DIRS MAKE_ENV+= ADDITIONAL_${a}="${ADDITIONAL_${a}}" .endfor +MAKE_ARGS+=messages=yes MAKEFILE= GNUmakefile #MAKE_ENV+= GNUSTEP_CONFIG_FILE=${PORTSDIR}/devel/gnustep-make/files/GNUstep.conf GNU_CONFIGURE_PREFIX= ${GNUSTEP_PREFIX} .if ${MACHINE_ARCH} == "i386" GNU_ARCH= ix86 .else GNU_ARCH= ${MACHINE_ARCH} .endif PLIST_SUB+= GNU_ARCH=${GNU_ARCH} VERSION=${PORTVERSION} PLIST_SUB+= MAJORVERSION=${PORTVERSION:C/([0-9]).*/\1/1} PLIST_SUB+= LIBVERSION=${DEFAULT_LIBVERSION} PLIST_SUB+= MAJORLIBVERSION=${DEFAULT_LIBVERSION:C/([0-9]).*/\1/1} .if defined(USE_GNUSTEP) . if ${USE_GNUSTEP:Mbase} LIB_DEPENDS+= libgnustep-base.so:${PORTSDIR}/lang/gnustep-base . endif . if ${USE_GNUSTEP:Mbuild} PATH:= ${GNUSTEP_SYSTEM_TOOLS}:${GNUSTEP_LOCAL_TOOLS}:${PATH} MAKE_ENV+= PATH="${PATH}" GNUSTEP_MAKEFILES="${GNUSTEP_MAKEFILES}" GNUSTEP_SYSTEM_ROOT="${GNUSTEP_SYSTEM_ROOT}" CONFIGURE_ENV+= PATH="${PATH}" GNUSTEP_MAKEFILES="${GNUSTEP_MAKEFILES}" GNUSTEP_SYSTEM_ROOT="${GNUSTEP_SYSTEM_ROOT}" BUILD_DEPENDS+= gnustep-make>0:${PORTSDIR}/devel/gnustep-make .include "${USESDIR}/objc.mk" . endif . if ${USE_GNUSTEP:Mgui} LIB_DEPENDS+= libgnustep-gui.so:${PORTSDIR}/x11-toolkits/gnustep-gui . endif . if ${USE_GNUSTEP:Mback} BUILD_DEPENDS+= gnustep-back>0:${PORTSDIR}/x11-toolkits/gnustep-back RUN_DEPENDS+= gnustep-back>0:${PORTSDIR}/x11-toolkits/gnustep-back . endif .endif .endif Index: head/Mk/Uses/iconv.mk =================================================================== --- head/Mk/Uses/iconv.mk (revision 391061) +++ head/Mk/Uses/iconv.mk (revision 391062) @@ -1,51 +1,52 @@ # $FreeBSD$ # # handle dependency on the iconv port # # Feature: iconv # Usage: USES=iconv or USES=iconv:ARGS # Valid ARGS: lib (default, implicit), build, patch, # wchar_t (port uses "WCHAR_T" extension), # translit (port uses "//TRANSLIT" extension) # # MAINTAINER: portmgr@FreeBSD.org .if !defined(_INCLUDE_USES_ICONV_MK) _INCLUDE_USES_ICONV_MK= yes .if !exists(/usr/include/iconv.h) || ${iconv_ARGS:Mwchar_t} || ${iconv_ARGS:Mtranslit} ICONV_CMD= ${LOCALBASE}/bin/iconv ICONV_LIB= -liconv ICONV_PREFIX= ${LOCALBASE} ICONV_CONFIGURE_ARG= --with-libiconv-prefix=${LOCALBASE} ICONV_CONFIGURE_BASE= --with-libiconv=${LOCALBASE} .if ${iconv_ARGS:Mbuild} BUILD_DEPENDS+= ${ICONV_CMD}:${PORTSDIR}/converters/libiconv .elif ${iconv_ARGS:Mpatch} PATCH_DEPENDS+= ${ICONV_CMD}:${PORTSDIR}/converters/libiconv .else LIB_DEPENDS+= libiconv.so:${PORTSDIR}/converters/libiconv .endif .else ICONV_CMD= /usr/bin/iconv ICONV_LIB= ICONV_PREFIX= /usr ICONV_CONFIGURE_ARG= ICONV_CONFIGURE_BASE= .if ${OPSYS} == DragonFly || (${OPSYS} == FreeBSD && (${OSVERSION} < 1001514 \ || (${OSVERSION} >= 1100000 && ${OSVERSION} < 1100069))) \ || exists(${LOCALBASE}/include/iconv.h) BUILD_DEPENDS+= libiconv>=1.14_8:${PORTSDIR}/converters/libiconv CPPFLAGS+= -DLIBICONV_PLUG CFLAGS+= -DLIBICONV_PLUG CXXFLAGS+= -DLIBICONV_PLUG +OBJCFLAGS+= -DLIBICONV_PLUG .endif .endif .endif Index: head/Mk/Uses/objc.mk =================================================================== --- head/Mk/Uses/objc.mk (revision 391061) +++ head/Mk/Uses/objc.mk (revision 391062) @@ -1,65 +1,68 @@ # $FreeBSD$ # # Objective C support # # Feature: objc # Usage: USES=objc # # MAINTAINER: objc@FreeBSD.org .if !defined(_INCLUDE_USES_OBJC_MK) _INCLUDE_USES_OBJC_MK= yes -.if !empty(objc_ARGS) -IGNORE= USES=objc takes no arguments +objc_ARGS?= +.if !empty(objc_ARGS) && ! ${objc_ARGS:Mcompiler} +IGNORE= USES=objc only accepts no arguments or 'compiler' .endif _CCVERSION!= ${CC} --version COMPILER_VERSION= ${_CCVERSION:M[0-9].[0-9]*:C/([0-9]).([0-9]).*/\1\2/g} .if ${_CCVERSION:Mclang} COMPILER_TYPE= clang .else COMPILER_TYPE= gcc .endif ALT_COMPILER_VERSION= 0 ALT_COMPILER_TYPE= none _ALTCCVERSION= .if ${COMPILER_TYPE} == gcc && exists(/usr/bin/clang) _ALTCCVERSION!= /usr/bin/clang --version .elif ${COMPILER_TYPE} == clang && exists(/usr/bin/gcc) _ALTCCVERSION!= /usr/bin/gcc --version .endif ALT_COMPILER_VERSION= ${_ALTCCVERSION:M[0-9].[0-9]*:C/([0-9]).([0-9]).*/\1\2/g} .if ${_ALTCCVERSION:Mclang} ALT_COMPILER_TYPE= clang .elif !empty(_ALTCCVERSION) ALT_COMPILER_TYPE= gcc .endif # We do always need clang .if (${COMPILER_TYPE} == clang && ${COMPILER_VERSION} < 34) || ${COMPILER_TYPE} != clang .if ${ALT_COMPILER_TYPE} == clang && ${ALT_COMPILER_VERSION} >= 34 CC= /usr/bin/clang CPP= /usr/bin/clang-cpp CXX= /usr/bin/clang++ .else BUILD_DEPENDS+= ${LOCALBASE}/bin/clang34:${PORTSDIR}/lang/clang34 CPP= ${LOCALBASE}/bin/clang-cpp34 CC= ${LOCALBASE}/bin/clang34 CXX= ${LOCALBASE}/bin/clang++34 .if ${OSVERSION} < 900033 USE_BINUTILS= yes LDFLAGS+= -B${LOCALBASE}/bin .endif .endif .endif +.if ! ${objc_ARGS:Mcompiler} LIB_DEPENDS+= libobjc.so.4.6:${PORTSDIR}/lang/libobjc2 OBJCFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +.endif CONFIGURE_ENV+= OBJC="${CC}" OBJCFLAGS="${OBJCFLAGS}" MAKE_ENV+= OBJC="${CC}" OBJCFLAGS="${OBJCFLAGS}" .endif Index: head/databases/sqlclient/Makefile =================================================================== --- head/databases/sqlclient/Makefile (revision 391061) +++ head/databases/sqlclient/Makefile (revision 391062) @@ -1,31 +1,30 @@ # $FreeBSD$ PORTNAME= sqlclient -PORTVERSION= 1.7.0 -PORTREVISION= 2 +PORTVERSION= 1.8.1 CATEGORIES= databases gnustep MASTER_SITES= GNUSTEP/libs DISTNAME= SQLClient-${PORTVERSION} MAINTAINER= theraven@FreeBSD.org COMMENT= Lightweight database abstraction layer LICENSE= LGPL21 LIB_DEPENDS= libPerformance.so:${PORTSDIR}/devel/performance \ libsqlite3.so:${PORTSDIR}/databases/sqlite3 USES= gnustep pgsql USE_GNUSTEP= base build GNU_CONFIGURE= yes USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} USE_MYSQL=yes LDFLAGS+= -pthread MAKE_ENV+= GNUSTEP_INSTALLATION_DIR=${GNUSTEP_LOCAL_ROOT} DEFAULT_LIBVERSION= 1.5 DEFAULT_LIBVERSION2= 1.5.0 PLIST_SUB+= LIBVERSION2=${DEFAULT_LIBVERSION2} PLIST_SUB+= MAJORLIBVERSION2=${DEFAULT_LIBVERSION2:C/([0-9]).*/\1/1} .include Index: head/databases/sqlclient/distinfo =================================================================== --- head/databases/sqlclient/distinfo (revision 391061) +++ head/databases/sqlclient/distinfo (revision 391062) @@ -1,2 +1,2 @@ -SHA256 (SQLClient-1.7.0.tar.gz) = 8f9c9491f774fce3bf369e407c8f22091c597baddc1a4b0bfe8ccb251bb79462 -SIZE (SQLClient-1.7.0.tar.gz) = 164218 +SHA256 (SQLClient-1.8.1.tar.gz) = c6cb9d0033b496b52b698f1f80007b6acd215441683cf1a1c22f67a96198074f +SIZE (SQLClient-1.8.1.tar.gz) = 148622 Index: head/databases/sqlclient/pkg-plist =================================================================== --- head/databases/sqlclient/pkg-plist (revision 391061) +++ head/databases/sqlclient/pkg-plist (revision 391062) @@ -1,33 +1,33 @@ -GNUstep/Local/Library/Bundles/SQLClient/ECPG.bundle/ECPG -GNUstep/Local/Library/Bundles/SQLClient/ECPG.bundle/Resources/Info-gnustep.plist -GNUstep/Local/Library/Bundles/SQLClient/ECPG.bundle/stamp.make -GNUstep/Local/Library/Bundles/SQLClient/ECPG_libs.bundle/ECPG_libs -GNUstep/Local/Library/Bundles/SQLClient/ECPG_libs.bundle/Resources/Info-gnustep.plist -GNUstep/Local/Library/Bundles/SQLClient/ECPG_libs.bundle/stamp.make -GNUstep/Local/Library/Bundles/SQLClient/MySQL.bundle/MySQL -GNUstep/Local/Library/Bundles/SQLClient/MySQL.bundle/Resources/Info-gnustep.plist -GNUstep/Local/Library/Bundles/SQLClient/MySQL.bundle/stamp.make -GNUstep/Local/Library/Bundles/SQLClient/MySQL_libs.bundle/MySQL_libs -GNUstep/Local/Library/Bundles/SQLClient/MySQL_libs.bundle/Resources/Info-gnustep.plist -GNUstep/Local/Library/Bundles/SQLClient/MySQL_libs.bundle/stamp.make -GNUstep/Local/Library/Bundles/SQLClient/Postgres.bundle/Postgres -GNUstep/Local/Library/Bundles/SQLClient/Postgres.bundle/Resources/Info-gnustep.plist -GNUstep/Local/Library/Bundles/SQLClient/Postgres.bundle/stamp.make -GNUstep/Local/Library/Bundles/SQLClient/Postgres_libs.bundle/Postgres_libs -GNUstep/Local/Library/Bundles/SQLClient/Postgres_libs.bundle/Resources/Info-gnustep.plist -GNUstep/Local/Library/Bundles/SQLClient/Postgres_libs.bundle/stamp.make -GNUstep/Local/Library/Bundles/SQLClient/SQLite.bundle/Resources/Info-gnustep.plist -GNUstep/Local/Library/Bundles/SQLClient/SQLite.bundle/SQLite -GNUstep/Local/Library/Bundles/SQLClient/SQLite.bundle/stamp.make -GNUstep/Local/Library/Bundles/SQLClient/SQLite_libs.bundle/Resources/Info-gnustep.plist -GNUstep/Local/Library/Bundles/SQLClient/SQLite_libs.bundle/SQLite_libs -GNUstep/Local/Library/Bundles/SQLClient/SQLite_libs.bundle/stamp.make +GNUstep/Local/Library/Bundles/SQLClient1.8/ECPG.bundle/ECPG +GNUstep/Local/Library/Bundles/SQLClient1.8/ECPG.bundle/Resources/Info-gnustep.plist +GNUstep/Local/Library/Bundles/SQLClient1.8/ECPG.bundle/stamp.make +GNUstep/Local/Library/Bundles/SQLClient1.8/ECPG_libs.bundle/ECPG_libs +GNUstep/Local/Library/Bundles/SQLClient1.8/ECPG_libs.bundle/Resources/Info-gnustep.plist +GNUstep/Local/Library/Bundles/SQLClient1.8/ECPG_libs.bundle/stamp.make +GNUstep/Local/Library/Bundles/SQLClient1.8/MySQL.bundle/MySQL +GNUstep/Local/Library/Bundles/SQLClient1.8/MySQL.bundle/Resources/Info-gnustep.plist +GNUstep/Local/Library/Bundles/SQLClient1.8/MySQL.bundle/stamp.make +GNUstep/Local/Library/Bundles/SQLClient1.8/MySQL_libs.bundle/MySQL_libs +GNUstep/Local/Library/Bundles/SQLClient1.8/MySQL_libs.bundle/Resources/Info-gnustep.plist +GNUstep/Local/Library/Bundles/SQLClient1.8/MySQL_libs.bundle/stamp.make +GNUstep/Local/Library/Bundles/SQLClient1.8/Postgres.bundle/Postgres +GNUstep/Local/Library/Bundles/SQLClient1.8/Postgres.bundle/Resources/Info-gnustep.plist +GNUstep/Local/Library/Bundles/SQLClient1.8/Postgres.bundle/stamp.make +GNUstep/Local/Library/Bundles/SQLClient1.8/Postgres_libs.bundle/Postgres_libs +GNUstep/Local/Library/Bundles/SQLClient1.8/Postgres_libs.bundle/Resources/Info-gnustep.plist +GNUstep/Local/Library/Bundles/SQLClient1.8/Postgres_libs.bundle/stamp.make +GNUstep/Local/Library/Bundles/SQLClient1.8/SQLite.bundle/Resources/Info-gnustep.plist +GNUstep/Local/Library/Bundles/SQLClient1.8/SQLite.bundle/SQLite +GNUstep/Local/Library/Bundles/SQLClient1.8/SQLite.bundle/stamp.make +GNUstep/Local/Library/Bundles/SQLClient1.8/SQLite_libs.bundle/Resources/Info-gnustep.plist +GNUstep/Local/Library/Bundles/SQLClient1.8/SQLite_libs.bundle/SQLite_libs +GNUstep/Local/Library/Bundles/SQLClient1.8/SQLite_libs.bundle/stamp.make +GNUstep/Local/Library/Libraries/libSQLClient.so.1.8 +GNUstep/Local/Library/Libraries/libSQLClient.so.1.8.0 GNUstep/Local/Library/Documentation/SQLClient/OrderedSymbolDeclarations.plist GNUstep/Local/Library/Documentation/SQLClient/SQLClient.gsdoc GNUstep/Local/Library/Documentation/SQLClient/SQLClient.html GNUstep/Local/Library/Documentation/SQLClient/SQLClient.igsdoc GNUstep/Local/Library/Documentation/SQLClient/dependencies GNUstep/Local/Library/Headers/SQLClient/SQLClient.h GNUstep/Local/Library/Libraries/libSQLClient.so -GNUstep/Local/Library/Libraries/libSQLClient.so.1.7 -GNUstep/Local/Library/Libraries/libSQLClient.so.1.7.0 Index: head/deskutils/charmap/Makefile =================================================================== --- head/deskutils/charmap/Makefile (revision 391061) +++ head/deskutils/charmap/Makefile (revision 391062) @@ -1,20 +1,19 @@ # Created by: gurkan@phys.ethz.ch # $FreeBSD$ PORTNAME= charmap PORTVERSION= 0.2 PORTREVISION= 4 CATEGORIES= deskutils gnustep MASTER_SITES= SAVANNAH MAINTAINER= ports@FreeBSD.org COMMENT= Character map for GNUstep LICENSE= GPLv2 -BROKEN= Newer version does not work with recent objective C WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USES= gnustep USE_GNUSTEP= back build .include Index: head/deskutils/gworkspace/Makefile =================================================================== --- head/deskutils/gworkspace/Makefile (revision 391061) +++ head/deskutils/gworkspace/Makefile (revision 391062) @@ -1,33 +1,32 @@ # $FreeBSD$ PORTNAME= gworkspace -PORTVERSION= 0.9.2 -PORTREVISION= 2 +PORTVERSION= 0.9.3 CATEGORIES= deskutils gnustep #MASTER_SITES= http://www.gnustep.it/enrico/gworkspace/ MASTER_SITES= GNUSTEP/usr-apps MAINTAINER= theraven@FreeBSD.org COMMENT= GNUstep workspace manager LICENSE= GPLv2 USES= gnustep USE_GNUSTEP= back build USE_LDCONFIG= ${GNUSTEP_SYSTEM_LIBRARIES} GNU_CONFIGURE= yes ADDITIONAL_LDFLAGS+= -L${WRKSRC}/FSNode/FSNode.framework/Versions/A MAKE_ENV+= GNUSTEP_INSTALLATION_DOMAIN=SYSTEM .if defined(WITHOUT_GHOSTSCRIPT) PLIST_SUB+= PDFVIEW="@comment " .else PLIST_SUB+= PDFVIEW="" USE_GHOSTSCRIPT= yes .endif pre-configure: ${RM} -rf ${WRKSRC}/GWMetadata .include Index: head/deskutils/gworkspace/distinfo =================================================================== --- head/deskutils/gworkspace/distinfo (revision 391061) +++ head/deskutils/gworkspace/distinfo (revision 391062) @@ -1,2 +1,2 @@ -SHA256 (gworkspace-0.9.2.tar.gz) = 5239ef983fd4358e152fcfb5cd1f6c30366d04357c26c74719eb05da849af4fb -SIZE (gworkspace-0.9.2.tar.gz) = 4289262 +SHA256 (gworkspace-0.9.3.tar.gz) = 238343a8c4e447debec75ff49f4657f74a4256a49862899214a2c80616c79049 +SIZE (gworkspace-0.9.3.tar.gz) = 3833838 Index: head/deskutils/gworkspace/pkg-plist =================================================================== --- head/deskutils/gworkspace/pkg-plist (revision 391061) +++ head/deskutils/gworkspace/pkg-plist (revision 391062) @@ -1,540 +1,536 @@ GNUstep/System/Applications/GWorkspace.app/GWorkspace GNUstep/System/Applications/GWorkspace.app/Resources/BrasilPortuguese.lproj/Localizable.strings GNUstep/System/Applications/GWorkspace.app/Resources/CellHighlight.tiff GNUstep/System/Applications/GWorkspace.app/Resources/CellHighlight_osx.tiff GNUstep/System/Applications/GWorkspace.app/Resources/ComputeSize.tiff GNUstep/System/Applications/GWorkspace.app/Resources/ComputeSize_dimm.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Date-0.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Date-1.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Date-2.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Date-3.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Date-4.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Date-5.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Date-6.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Date-7.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Date-8.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Date-9.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Date-Colon.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Date.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Dimple.tiff GNUstep/System/Applications/GWorkspace.app/Resources/DragableDocument.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Dutch.lproj/Localizable.strings GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/BrowserViewerPref.gorm/data.classes GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/BrowserViewerPref.gorm/data.info GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/BrowserViewerPref.gorm/objects.gorm GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/DefEditorPref.gorm/data.classes GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/DefEditorPref.gorm/data.info GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/DefEditorPref.gorm/objects.gorm GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/DefSortOrderPref.gorm/data.classes GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/DefSortOrderPref.gorm/objects.gorm GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/DesktopPref.gorm/data.classes GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/DesktopPref.gorm/data.info GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/DesktopPref.gorm/objects.gorm GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/FindModuleView.gorm/data.classes GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/FindModuleView.gorm/data.info GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/FindModuleView.gorm/objects.gorm GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Finder.gorm/data.classes GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Finder.gorm/data.info GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Finder.gorm/objects.gorm GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/BViewer.rtfd/TXT.rtf GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/BViewer.rtfd/browsing.tiff GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/BViewer.rtfd/dummy.tiff GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/BViewer.rtfd/views.tiff GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/Desktop.rtfd/FileManager.tiff GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/Desktop.rtfd/TXT.rtf GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/Dock.rtfd/TXT.rtf GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/Dock.rtfd/dock.tiff GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/Dock.rtfd/dummy.tiff GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/Fiend.rtfd/Fiend-Develop.tiff GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/Fiend.rtfd/Fiend-menu.tiff GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/Fiend.rtfd/TXT.rtf GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/Fiend.rtfd/dummy.tiff GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/GWorkspace.rtfd/FileManager.tiff GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/GWorkspace.rtfd/TXT.rtf GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/History.rtfd/FileManager.tiff GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/History.rtfd/TXT.rtf GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/Inspector.rtfd/TXT.rtf GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/Inspector.rtfd/dummy.tiff GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/Preferences.rtfd/TXT.rtf GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/Preferences.rtfd/dummy.tiff GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/Recycler.rtfd/Recycler-content.tiff GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/Recycler.rtfd/Recycler-drag.tiff GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/Recycler.rtfd/Recycler.tiff GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/Recycler.rtfd/RecyclerFull.tiff GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/Recycler.rtfd/TXT.rtf GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/Recycler.rtfd/dummy.tiff GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/RunExternal.rtfd/Run-panel.tiff GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/RunExternal.rtfd/TXT.rtf GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/RunExternal.rtfd/dummy.tiff -GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/SViewer.rtfd/TXT.rtf -GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/SViewer.rtfd/dummy.tiff -GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/SViewer.rtfd/spatial.tiff GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/TabbedShelf.rtfd/TXT.rtf GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/TabbedShelf.rtfd/TabbedShelf-develop.tiff GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/TabbedShelf.rtfd/dummy.tiff GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/HiddenFilesPref.gorm/data.classes GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/HiddenFilesPref.gorm/objects.gorm GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/HistoryPref.gorm/data.classes GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/HistoryPref.gorm/data.info GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/HistoryPref.gorm/objects.gorm GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/IconsPref.gorm/data.classes GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/IconsPref.gorm/data.info GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/IconsPref.gorm/objects.gorm GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/LSFEditor.gorm/data.classes GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/LSFEditor.gorm/data.info GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/LSFEditor.gorm/objects.gorm GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/LSFolder.gorm/data.classes GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/LSFolder.gorm/data.info GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/LSFolder.gorm/objects.gorm GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Localizable.strings GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/OpenWith.gorm/data.classes GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/OpenWith.gorm/data.info GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/OpenWith.gorm/objects.gorm GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/OperationPrefs.gorm/data.classes GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/OperationPrefs.gorm/objects.gorm GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/PrefWindow.gorm/data.classes GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/PrefWindow.gorm/data.info GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/PrefWindow.gorm/objects.gorm GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/RunExternal.gorm/data.classes GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/RunExternal.gorm/data.info GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/RunExternal.gorm/objects.gorm GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/SearchResults.gorm/data.classes GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/SearchResults.gorm/data.info GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/SearchResults.gorm/objects.gorm GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/ShelfPref.gorm/data.classes GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/ShelfPref.gorm/objects.gorm GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/StartAppWin.gorm/data.classes GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/StartAppWin.gorm/objects.gorm GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/XTermPref.gorm/data.classes GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/XTermPref.gorm/data.info GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/XTermPref.gorm/objects.gorm GNUstep/System/Applications/GWorkspace.app/Resources/Esperanto.lproj/Localizable.strings GNUstep/System/Applications/GWorkspace.app/Resources/FFArrow.tiff GNUstep/System/Applications/GWorkspace.app/Resources/FFArrow_disabled.tiff GNUstep/System/Applications/GWorkspace.app/Resources/FileIcon_Directory.tiff GNUstep/System/Applications/GWorkspace.app/Resources/FileIcon_Directory_Open.tiff GNUstep/System/Applications/GWorkspace.app/Resources/FileIcon_Directory_Open_Small.tiff GNUstep/System/Applications/GWorkspace.app/Resources/FileIcon_Directory_Open_Small_alt.tiff GNUstep/System/Applications/GWorkspace.app/Resources/FileIcon_Directory_Open_Small_osx.tiff GNUstep/System/Applications/GWorkspace.app/Resources/FileIcon_Directory_Open_alt.tiff GNUstep/System/Applications/GWorkspace.app/Resources/FileIcon_Directory_Open_osx.tiff GNUstep/System/Applications/GWorkspace.app/Resources/FileIcon_WebLink.tiff GNUstep/System/Applications/GWorkspace.app/Resources/FileManager.tiff GNUstep/System/Applications/GWorkspace.app/Resources/French.lproj/Localizable.strings GNUstep/System/Applications/GWorkspace.app/Resources/GWorkspace.desktop GNUstep/System/Applications/GWorkspace.app/Resources/GWorkspaceInfo.plist GNUstep/System/Applications/GWorkspace.app/Resources/German.lproj/Localizable.strings GNUstep/System/Applications/GWorkspace.app/Resources/Hungarian.lproj/Localizable.strings GNUstep/System/Applications/GWorkspace.app/Resources/Info-gnustep.plist GNUstep/System/Applications/GWorkspace.app/Resources/Italian.lproj/Localizable.strings GNUstep/System/Applications/GWorkspace.app/Resources/Kill.tiff GNUstep/System/Applications/GWorkspace.app/Resources/LED-0.tiff GNUstep/System/Applications/GWorkspace.app/Resources/LED-1.tiff GNUstep/System/Applications/GWorkspace.app/Resources/LED-2.tiff GNUstep/System/Applications/GWorkspace.app/Resources/LED-3.tiff GNUstep/System/Applications/GWorkspace.app/Resources/LED-4.tiff GNUstep/System/Applications/GWorkspace.app/Resources/LED-5.tiff GNUstep/System/Applications/GWorkspace.app/Resources/LED-6.tiff GNUstep/System/Applications/GWorkspace.app/Resources/LED-7.tiff GNUstep/System/Applications/GWorkspace.app/Resources/LED-8.tiff GNUstep/System/Applications/GWorkspace.app/Resources/LED-9.tiff GNUstep/System/Applications/GWorkspace.app/Resources/LED-AM.tiff GNUstep/System/Applications/GWorkspace.app/Resources/LED-Colon.tiff GNUstep/System/Applications/GWorkspace.app/Resources/LED-PM.tiff GNUstep/System/Applications/GWorkspace.app/Resources/LED.tiff GNUstep/System/Applications/GWorkspace.app/Resources/LeftArr.tiff GNUstep/System/Applications/GWorkspace.app/Resources/LiveSearchFolder.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Magnify.tiff GNUstep/System/Applications/GWorkspace.app/Resources/MagnifyGlas.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Magnify_16.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Magnify_24.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Magnify_32.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Magnify_48.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Mask.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Month-1.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Month-10.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Month-11.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Month-12.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Month-2.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Month-3.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Month-4.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Month-5.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Month-6.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Month-7.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Month-8.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Month-9.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Month.tiff GNUstep/System/Applications/GWorkspace.app/Resources/MultipleSelection.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Norvegian.lproj/Localizable.strings GNUstep/System/Applications/GWorkspace.app/Resources/Pboard.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Portuguese.lproj/Localizable.strings GNUstep/System/Applications/GWorkspace.app/Resources/REWArrow.tiff GNUstep/System/Applications/GWorkspace.app/Resources/REWArrow_disabled.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Recycler.tiff GNUstep/System/Applications/GWorkspace.app/Resources/RecyclerFull.tiff GNUstep/System/Applications/GWorkspace.app/Resources/RightArr.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Romanian.lproj/Localizable.strings GNUstep/System/Applications/GWorkspace.app/Resources/SlideMask.tiff GNUstep/System/Applications/GWorkspace.app/Resources/SmallCellHighlight.tiff GNUstep/System/Applications/GWorkspace.app/Resources/SmallCellHighlightSmall.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Spanish.lproj/Localizable.strings -GNUstep/System/Applications/GWorkspace.app/Resources/Spanish.lproj/Localizable.strings~ GNUstep/System/Applications/GWorkspace.app/Resources/TileHighlight.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Weekday-0.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Weekday-1.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Weekday-2.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Weekday-3.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Weekday-4.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Weekday-5.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Weekday-6.tiff GNUstep/System/Applications/GWorkspace.app/Resources/Weekday.tiff GNUstep/System/Applications/GWorkspace.app/Resources/add.tiff GNUstep/System/Applications/GWorkspace.app/Resources/anim-logo-0.tiff GNUstep/System/Applications/GWorkspace.app/Resources/anim-logo-1.tiff GNUstep/System/Applications/GWorkspace.app/Resources/anim-logo-2.tiff GNUstep/System/Applications/GWorkspace.app/Resources/anim-logo-3.tiff GNUstep/System/Applications/GWorkspace.app/Resources/anim-logo-4.tiff GNUstep/System/Applications/GWorkspace.app/Resources/anim-logo-5.tiff GNUstep/System/Applications/GWorkspace.app/Resources/anim-logo-6.tiff GNUstep/System/Applications/GWorkspace.app/Resources/anim-logo-7.tiff GNUstep/System/Applications/GWorkspace.app/Resources/colorPboard.tiff GNUstep/System/Applications/GWorkspace.app/Resources/common_ArrowLeftH.tiff GNUstep/System/Applications/GWorkspace.app/Resources/common_ArrowRightH.tiff GNUstep/System/Applications/GWorkspace.app/Resources/filecontsPboard.tiff GNUstep/System/Applications/GWorkspace.app/Resources/gormPboard.tiff GNUstep/System/Applications/GWorkspace.app/Resources/littleArrowDown.tiff GNUstep/System/Applications/GWorkspace.app/Resources/littleArrowRight.tiff GNUstep/System/Applications/GWorkspace.app/Resources/magnify_small.tiff GNUstep/System/Applications/GWorkspace.app/Resources/page.tiff GNUstep/System/Applications/GWorkspace.app/Resources/pause.tiff GNUstep/System/Applications/GWorkspace.app/Resources/play.tiff GNUstep/System/Applications/GWorkspace.app/Resources/remove.tiff GNUstep/System/Applications/GWorkspace.app/Resources/rtfPboard.tiff GNUstep/System/Applications/GWorkspace.app/Resources/rtfdPboard.tiff GNUstep/System/Applications/GWorkspace.app/Resources/stop.tiff GNUstep/System/Applications/GWorkspace.app/Resources/stop_16.tiff GNUstep/System/Applications/GWorkspace.app/Resources/stop_24.tiff GNUstep/System/Applications/GWorkspace.app/Resources/stop_32.tiff GNUstep/System/Applications/GWorkspace.app/Resources/stop_48.tiff GNUstep/System/Applications/GWorkspace.app/Resources/stop_small.tiff GNUstep/System/Applications/GWorkspace.app/Resources/stringPboard.tiff GNUstep/System/Applications/GWorkspace.app/Resources/switchMultiple.tiff GNUstep/System/Applications/GWorkspace.app/Resources/switchOff.tiff GNUstep/System/Applications/GWorkspace.app/Resources/switchOn.tiff GNUstep/System/Applications/GWorkspace.app/Resources/tabSelectedLeft.tiff GNUstep/System/Applications/GWorkspace.app/Resources/tabSelectedRight.tiff GNUstep/System/Applications/GWorkspace.app/Resources/tabSelectedToUnSelectedJunction.tiff GNUstep/System/Applications/GWorkspace.app/Resources/tabUnSelectToSelectedJunction.tiff GNUstep/System/Applications/GWorkspace.app/Resources/tabUnSelectedJunction.tiff GNUstep/System/Applications/GWorkspace.app/Resources/tabUnSelectedLeft.tiff GNUstep/System/Applications/GWorkspace.app/Resources/tabUnSelectedRight.tiff GNUstep/System/Applications/GWorkspace.app/Resources/tiffPboard.tiff GNUstep/System/Applications/GWorkspace.app/Resources/watch.tiff GNUstep/System/Applications/GWorkspace.app/stamp.make GNUstep/System/Applications/Recycler.app/Recycler GNUstep/System/Applications/Recycler.app/Resources/English.lproj/Localizable.strings GNUstep/System/Applications/Recycler.app/Resources/English.lproj/PreferencesWin.gorm/data.classes GNUstep/System/Applications/Recycler.app/Resources/English.lproj/PreferencesWin.gorm/objects.gorm GNUstep/System/Applications/Recycler.app/Resources/English.lproj/StartAppWin.gorm/data.classes GNUstep/System/Applications/Recycler.app/Resources/English.lproj/StartAppWin.gorm/objects.gorm GNUstep/System/Applications/Recycler.app/Resources/Info-gnustep.plist GNUstep/System/Applications/Recycler.app/Resources/Recycler.desktop GNUstep/System/Applications/Recycler.app/Resources/Recycler.tiff GNUstep/System/Applications/Recycler.app/stamp.make GNUstep/System/Library/Bundles/AppViewer.inspector/AppViewer GNUstep/System/Library/Bundles/AppViewer.inspector/Resources/English.lproj/Help.rtfd/TXT.rtf GNUstep/System/Library/Bundles/AppViewer.inspector/Resources/English.lproj/Help.rtfd/dummy.tiff GNUstep/System/Library/Bundles/AppViewer.inspector/Resources/Info-gnustep.plist GNUstep/System/Library/Bundles/AppViewer.inspector/Resources/InspectorInfo.plist GNUstep/System/Library/Bundles/AppViewer.inspector/stamp.make GNUstep/System/Library/Bundles/FModuleAnnotations.finder/FModuleAnnotations GNUstep/System/Library/Bundles/FModuleAnnotations.finder/Resources/FModuleAnnotations.gorm/data.classes GNUstep/System/Library/Bundles/FModuleAnnotations.finder/Resources/FModuleAnnotations.gorm/data.info GNUstep/System/Library/Bundles/FModuleAnnotations.finder/Resources/FModuleAnnotations.gorm/objects.gorm GNUstep/System/Library/Bundles/FModuleAnnotations.finder/Resources/Info-gnustep.plist GNUstep/System/Library/Bundles/FModuleAnnotations.finder/stamp.make GNUstep/System/Library/Bundles/FModuleContents.finder/FModuleContents GNUstep/System/Library/Bundles/FModuleContents.finder/Resources/FModuleContents.gorm/data.classes GNUstep/System/Library/Bundles/FModuleContents.finder/Resources/FModuleContents.gorm/data.info GNUstep/System/Library/Bundles/FModuleContents.finder/Resources/FModuleContents.gorm/objects.gorm GNUstep/System/Library/Bundles/FModuleContents.finder/Resources/Info-gnustep.plist GNUstep/System/Library/Bundles/FModuleContents.finder/stamp.make GNUstep/System/Library/Bundles/FModuleCrDate.finder/FModuleCrDate GNUstep/System/Library/Bundles/FModuleCrDate.finder/Resources/FModuleCrDate.gorm/data.classes GNUstep/System/Library/Bundles/FModuleCrDate.finder/Resources/FModuleCrDate.gorm/data.info GNUstep/System/Library/Bundles/FModuleCrDate.finder/Resources/FModuleCrDate.gorm/objects.gorm GNUstep/System/Library/Bundles/FModuleCrDate.finder/Resources/Info-gnustep.plist GNUstep/System/Library/Bundles/FModuleCrDate.finder/stamp.make GNUstep/System/Library/Bundles/FModuleKind.finder/FModuleKind GNUstep/System/Library/Bundles/FModuleKind.finder/Resources/FModuleKind.gorm/data.classes GNUstep/System/Library/Bundles/FModuleKind.finder/Resources/FModuleKind.gorm/data.info GNUstep/System/Library/Bundles/FModuleKind.finder/Resources/FModuleKind.gorm/objects.gorm GNUstep/System/Library/Bundles/FModuleKind.finder/Resources/Info-gnustep.plist GNUstep/System/Library/Bundles/FModuleKind.finder/stamp.make GNUstep/System/Library/Bundles/FModuleModDate.finder/FModuleModDate GNUstep/System/Library/Bundles/FModuleModDate.finder/Resources/FModuleModDate.gorm/data.classes GNUstep/System/Library/Bundles/FModuleModDate.finder/Resources/FModuleModDate.gorm/data.info GNUstep/System/Library/Bundles/FModuleModDate.finder/Resources/FModuleModDate.gorm/objects.gorm GNUstep/System/Library/Bundles/FModuleModDate.finder/Resources/Info-gnustep.plist GNUstep/System/Library/Bundles/FModuleModDate.finder/stamp.make GNUstep/System/Library/Bundles/FModuleName.finder/FModuleName GNUstep/System/Library/Bundles/FModuleName.finder/Resources/FModuleName.gorm/data.classes GNUstep/System/Library/Bundles/FModuleName.finder/Resources/FModuleName.gorm/data.info GNUstep/System/Library/Bundles/FModuleName.finder/Resources/FModuleName.gorm/objects.gorm GNUstep/System/Library/Bundles/FModuleName.finder/Resources/Info-gnustep.plist GNUstep/System/Library/Bundles/FModuleName.finder/stamp.make GNUstep/System/Library/Bundles/FModuleOwner.finder/FModuleOwner GNUstep/System/Library/Bundles/FModuleOwner.finder/Resources/FModuleOwner.gorm/data.classes GNUstep/System/Library/Bundles/FModuleOwner.finder/Resources/FModuleOwner.gorm/data.info GNUstep/System/Library/Bundles/FModuleOwner.finder/Resources/FModuleOwner.gorm/objects.gorm GNUstep/System/Library/Bundles/FModuleOwner.finder/Resources/Info-gnustep.plist GNUstep/System/Library/Bundles/FModuleOwner.finder/stamp.make GNUstep/System/Library/Bundles/FModuleSize.finder/FModuleSize GNUstep/System/Library/Bundles/FModuleSize.finder/Resources/FModuleSize.gorm/data.classes GNUstep/System/Library/Bundles/FModuleSize.finder/Resources/FModuleSize.gorm/data.info GNUstep/System/Library/Bundles/FModuleSize.finder/Resources/FModuleSize.gorm/objects.gorm GNUstep/System/Library/Bundles/FModuleSize.finder/Resources/Info-gnustep.plist GNUstep/System/Library/Bundles/FModuleSize.finder/stamp.make GNUstep/System/Library/Bundles/FolderViewer.inspector/FolderViewer GNUstep/System/Library/Bundles/FolderViewer.inspector/Resources/English.lproj/Help.rtfd/TXT.rtf GNUstep/System/Library/Bundles/FolderViewer.inspector/Resources/English.lproj/Help.rtfd/dummy.tiff GNUstep/System/Library/Bundles/FolderViewer.inspector/Resources/Info-gnustep.plist GNUstep/System/Library/Bundles/FolderViewer.inspector/Resources/InspectorInfo.plist GNUstep/System/Library/Bundles/FolderViewer.inspector/stamp.make GNUstep/System/Library/Bundles/IBViewViewer.inspector/IBViewViewer GNUstep/System/Library/Bundles/IBViewViewer.inspector/Resources/English.lproj/Help.rtfd/.gwdir GNUstep/System/Library/Bundles/IBViewViewer.inspector/Resources/English.lproj/Help.rtfd/TXT.rtf GNUstep/System/Library/Bundles/IBViewViewer.inspector/Resources/English.lproj/Help.rtfd/dummy.tiff GNUstep/System/Library/Bundles/IBViewViewer.inspector/Resources/Info-gnustep.plist GNUstep/System/Library/Bundles/IBViewViewer.inspector/Resources/InspectorInfo.plist GNUstep/System/Library/Bundles/IBViewViewer.inspector/stamp.make GNUstep/System/Library/Bundles/ImageThumbnailer.thumb/ImageThumbnailer GNUstep/System/Library/Bundles/ImageThumbnailer.thumb/Resources/Info-gnustep.plist GNUstep/System/Library/Bundles/ImageThumbnailer.thumb/stamp.make GNUstep/System/Library/Bundles/ImageViewer.inspector/ImageViewer GNUstep/System/Library/Bundles/ImageViewer.inspector/Resources/English.lproj/Help.rtfd/.gwdir GNUstep/System/Library/Bundles/ImageViewer.inspector/Resources/English.lproj/Help.rtfd/TXT.rtf GNUstep/System/Library/Bundles/ImageViewer.inspector/Resources/English.lproj/Help.rtfd/dummy.tiff GNUstep/System/Library/Bundles/ImageViewer.inspector/Resources/Info-gnustep.plist GNUstep/System/Library/Bundles/ImageViewer.inspector/Resources/InspectorInfo.plist GNUstep/System/Library/Bundles/ImageViewer.inspector/stamp.make GNUstep/System/Library/Bundles/MDModuleAnnotations.mdm/MDModuleAnnotations GNUstep/System/Library/Bundles/MDModuleAnnotations.mdm/Resources/Info-gnustep.plist GNUstep/System/Library/Bundles/MDModuleAnnotations.mdm/stamp.make GNUstep/System/Library/Bundles/NSColorViewer.inspector/NSColorViewer GNUstep/System/Library/Bundles/NSColorViewer.inspector/Resources/English.lproj/Help.rtfd/.gwdir GNUstep/System/Library/Bundles/NSColorViewer.inspector/Resources/English.lproj/Help.rtfd/TXT.rtf GNUstep/System/Library/Bundles/NSColorViewer.inspector/Resources/English.lproj/Help.rtfd/dummy.tiff GNUstep/System/Library/Bundles/NSColorViewer.inspector/Resources/Info-gnustep.plist GNUstep/System/Library/Bundles/NSColorViewer.inspector/Resources/InspectorInfo.plist GNUstep/System/Library/Bundles/NSColorViewer.inspector/stamp.make GNUstep/System/Library/Bundles/NSRTFViewer.inspector/NSRTFViewer GNUstep/System/Library/Bundles/NSRTFViewer.inspector/Resources/English.lproj/Help.rtfd/TXT.rtf GNUstep/System/Library/Bundles/NSRTFViewer.inspector/Resources/English.lproj/Help.rtfd/dummy.tiff GNUstep/System/Library/Bundles/NSRTFViewer.inspector/Resources/Info-gnustep.plist GNUstep/System/Library/Bundles/NSRTFViewer.inspector/Resources/InspectorInfo.plist GNUstep/System/Library/Bundles/NSRTFViewer.inspector/stamp.make GNUstep/System/Library/Bundles/NSTIFFViewer.inspector/NSTIFFViewer GNUstep/System/Library/Bundles/NSTIFFViewer.inspector/Resources/English.lproj/Help.rtfd/TXT.rtf GNUstep/System/Library/Bundles/NSTIFFViewer.inspector/Resources/English.lproj/Help.rtfd/dummy.tiff GNUstep/System/Library/Bundles/NSTIFFViewer.inspector/Resources/Info-gnustep.plist GNUstep/System/Library/Bundles/NSTIFFViewer.inspector/Resources/InspectorInfo.plist GNUstep/System/Library/Bundles/NSTIFFViewer.inspector/stamp.make GNUstep/System/Library/Bundles/Role.extinfo/Resources/Info-gnustep.plist GNUstep/System/Library/Bundles/Role.extinfo/Role GNUstep/System/Library/Bundles/Role.extinfo/stamp.make GNUstep/System/Library/Bundles/RtfViewer.inspector/Resources/English.lproj/Help.rtfd/TXT.rtf GNUstep/System/Library/Bundles/RtfViewer.inspector/Resources/English.lproj/Help.rtfd/dummy.tiff GNUstep/System/Library/Bundles/RtfViewer.inspector/Resources/Info-gnustep.plist GNUstep/System/Library/Bundles/RtfViewer.inspector/Resources/InspectorInfo.plist GNUstep/System/Library/Bundles/RtfViewer.inspector/RtfViewer GNUstep/System/Library/Bundles/RtfViewer.inspector/stamp.make GNUstep/System/Library/Bundles/SoundViewer.inspector/Resources/English.lproj/Help.rtfd/TXT.rtf GNUstep/System/Library/Bundles/SoundViewer.inspector/Resources/English.lproj/Help.rtfd/dummy.tiff GNUstep/System/Library/Bundles/SoundViewer.inspector/Resources/Info-gnustep.plist GNUstep/System/Library/Bundles/SoundViewer.inspector/Resources/InspectorInfo.plist GNUstep/System/Library/Bundles/SoundViewer.inspector/Resources/pause.tiff GNUstep/System/Library/Bundles/SoundViewer.inspector/Resources/play.tiff GNUstep/System/Library/Bundles/SoundViewer.inspector/Resources/progind.tiff GNUstep/System/Library/Bundles/SoundViewer.inspector/Resources/progind10.tiff GNUstep/System/Library/Bundles/SoundViewer.inspector/Resources/stop.tiff GNUstep/System/Library/Bundles/SoundViewer.inspector/SoundViewer GNUstep/System/Library/Bundles/SoundViewer.inspector/stamp.make GNUstep/System/Library/Frameworks/FSNode.framework/FSNode GNUstep/System/Library/Frameworks/FSNode.framework/Headers GNUstep/System/Library/Frameworks/FSNode.framework/Resources GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/FSNode GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Headers/FSNBrowser.h GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Headers/FSNBrowserCell.h GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Headers/FSNBrowserColumn.h GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Headers/FSNBrowserMatrix.h GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Headers/FSNBrowserScroll.h GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Headers/FSNFunctions.h GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Headers/FSNIcon.h GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Headers/FSNIconsView.h GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Headers/FSNListView.h GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Headers/FSNPathComponentsViewer.h GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Headers/FSNTextCell.h GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Headers/FSNode.h GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Headers/FSNodeRep.h GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Resources/ArrowRight.tiff GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Resources/English.lproj/Localizable.strings GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Resources/FolderOpen.tiff GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Resources/HardDisk.tiff GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Resources/HardDiskOpen.tiff GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Resources/Info-gnustep.plist GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Resources/MultipleSelection.tiff GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Resources/Recycler.tiff GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Resources/RecyclerFull.tiff GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Resources/Workspace.tiff GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/libFSNode.so GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/libFSNode.so.0 GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/libFSNode.so.0.1.0 GNUstep/System/Library/Frameworks/FSNode.framework/Versions/Current GNUstep/System/Library/Frameworks/FSNode.framework/libFSNode.so GNUstep/System/Library/Frameworks/Inspector.framework/Headers GNUstep/System/Library/Frameworks/Inspector.framework/Inspector GNUstep/System/Library/Frameworks/Inspector.framework/Resources GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Headers/ContentViewersProtocol.h GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Headers/Inspector.h GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Inspector GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Date-0.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Date-1.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Date-2.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Date-3.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Date-4.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Date-5.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Date-6.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Date-7.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Date-8.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Date-9.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Date-Colon.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Date.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/English.lproj/Annotations.gorm/data.classes GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/English.lproj/Annotations.gorm/data.info GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/English.lproj/Annotations.gorm/objects.gorm GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/English.lproj/Attributes.gorm/data.classes GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/English.lproj/Attributes.gorm/data.info GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/English.lproj/Attributes.gorm/objects.gorm GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/English.lproj/Contents.gorm/data.classes GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/English.lproj/Contents.gorm/data.info GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/English.lproj/Contents.gorm/objects.gorm GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/English.lproj/InspectorWin.gorm/data.classes GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/English.lproj/InspectorWin.gorm/data.info GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/English.lproj/InspectorWin.gorm/objects.gorm GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/English.lproj/Localizable.strings GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/English.lproj/Tools.gorm/data.classes GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/English.lproj/Tools.gorm/data.info GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/English.lproj/Tools.gorm/objects.gorm GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Info-gnustep.plist GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Inspector.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/LED-0.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/LED-1.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/LED-2.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/LED-3.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/LED-4.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/LED-5.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/LED-6.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/LED-7.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/LED-8.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/LED-9.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/LED-AM.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/LED-Colon.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/LED-PM.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/LED.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Magnify.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Mask.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Month-1.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Month-10.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Month-11.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Month-12.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Month-2.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Month-3.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Month-4.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Month-5.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Month-6.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Month-7.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Month-8.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Month-9.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Month.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/MultipleSelection.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Pboard.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Weekday-0.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Weekday-1.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Weekday-2.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Weekday-3.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Weekday-4.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Weekday-5.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Weekday-6.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/Weekday.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/anim-logo-0.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/anim-logo-1.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/anim-logo-2.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/anim-logo-3.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/anim-logo-4.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/anim-logo-5.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/anim-logo-6.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/anim-logo-7.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/colorPboard.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/filecontsPboard.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/gormPboard.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/progind.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/progind10.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/rtfPboard.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/rtfdPboard.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/stringPboard.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/switchMultiple.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/switchOff.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/switchOn.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/Resources/tiffPboard.tiff GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/libInspector.so GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/libInspector.so.0 GNUstep/System/Library/Frameworks/Inspector.framework/Versions/0/libInspector.so.0.1.0 GNUstep/System/Library/Frameworks/Inspector.framework/Versions/Current GNUstep/System/Library/Frameworks/Inspector.framework/libInspector.so GNUstep/System/Library/Frameworks/Operation.framework/Headers GNUstep/System/Library/Frameworks/Operation.framework/Operation GNUstep/System/Library/Frameworks/Operation.framework/Resources GNUstep/System/Library/Frameworks/Operation.framework/Versions/1/Headers/Operation.h GNUstep/System/Library/Frameworks/Operation.framework/Versions/1/Operation GNUstep/System/Library/Frameworks/Operation.framework/Versions/1/Resources/English.lproj/FileOperationWin.gorm/data.classes GNUstep/System/Library/Frameworks/Operation.framework/Versions/1/Resources/English.lproj/FileOperationWin.gorm/data.info GNUstep/System/Library/Frameworks/Operation.framework/Versions/1/Resources/English.lproj/FileOperationWin.gorm/objects.gorm GNUstep/System/Library/Frameworks/Operation.framework/Versions/1/Resources/English.lproj/Localizable.strings GNUstep/System/Library/Frameworks/Operation.framework/Versions/1/Resources/Info-gnustep.plist GNUstep/System/Library/Frameworks/Operation.framework/Versions/1/Resources/Operation.tiff GNUstep/System/Library/Frameworks/Operation.framework/Versions/1/libOperation.so GNUstep/System/Library/Frameworks/Operation.framework/Versions/1/libOperation.so.1 GNUstep/System/Library/Frameworks/Operation.framework/Versions/1/libOperation.so.1.0.0 GNUstep/System/Library/Frameworks/Operation.framework/Versions/Current GNUstep/System/Library/Frameworks/Operation.framework/libOperation.so GNUstep/System/Library/Headers/DBKit/DBKBTree.h GNUstep/System/Library/Headers/DBKit/DBKBTreeNode.h GNUstep/System/Library/Headers/DBKit/DBKFixLenRecordsFile.h GNUstep/System/Library/Headers/DBKit/DBKPathsTree.h GNUstep/System/Library/Headers/DBKit/DBKVarLenRecordsFile.h GNUstep/System/Library/Headers/FSNode GNUstep/System/Library/Headers/Inspector GNUstep/System/Library/Headers/Operation GNUstep/System/Library/Libraries/libDBKit.so GNUstep/System/Library/Libraries/libDBKit.so.0 GNUstep/System/Library/Libraries/libDBKit.so.0.0.1 GNUstep/System/Library/Libraries/libFSNode.so GNUstep/System/Library/Libraries/libFSNode.so.0 GNUstep/System/Library/Libraries/libFSNode.so.0.1.0 GNUstep/System/Library/Libraries/libInspector.so GNUstep/System/Library/Libraries/libInspector.so.0 GNUstep/System/Library/Libraries/libInspector.so.0.1.0 GNUstep/System/Library/Libraries/libOperation.so GNUstep/System/Library/Libraries/libOperation.so.1 GNUstep/System/Library/Libraries/libOperation.so.1.0.0 GNUstep/System/Library/Services/thumbnailer.service/Resources/Info-gnustep.plist GNUstep/System/Library/Services/thumbnailer.service/thumbnailer GNUstep/System/Tools/GWorkspace GNUstep/System/Tools/Recycler GNUstep/System/Tools/ddbd GNUstep/System/Tools/fswatcher GNUstep/System/Tools/lsfupdater GNUstep/System/Tools/resizer GNUstep/System/Tools/searchtool GNUstep/System/Tools/wopen Index: head/deskutils/gworkspace-gwmetadata/Makefile =================================================================== --- head/deskutils/gworkspace-gwmetadata/Makefile (revision 391061) +++ head/deskutils/gworkspace-gwmetadata/Makefile (revision 391062) @@ -1,41 +1,40 @@ # $FreeBSD$ PORTNAME= gworkspace -PORTVERSION= 0.9.2 -PORTREVISION= 4 +PORTVERSION= 0.9.3 CATEGORIES= deskutils gnustep #MASTER_SITES= http://www.gnustep.it/enrico/gworkspace/ MASTER_SITES= GNUSTEP/usr-apps PKGNAMESUFFIX= -gwmetadata${PKGNAMESUFFIX2} MAINTAINER= theraven@FreeBSD.org COMMENT= GWMetadata for GNUstep workspace manager LICENSE= GPLv2 USES= gnustep USE_GNUSTEP= back build GNU_CONFIGURE= yes LIB_DEPENDS= libDBKit.so:${PORTSDIR}/deskutils/gworkspace \ libPreferencePanes.so:${PORTSDIR}/deskutils/systempreferences USE_LDCONFIG= ${GNUSTEP_SYSTEM_LIBRARIES} USE_SQLITE= yes LDFLAGS+= -lpthread UNIQUENAME= ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX} WRKSRC= ${WRKDIR}/gworkspace-${PORTVERSION}/GWMetadata CONFIGURE_ARGS+= --with-sqlite-include=${LOCALBASE}/include CONFIGURE_ARGS+= --with-sqlite-library=${LOCALBASE}/lib DEFAULT_LIBVERSION= 0.1.0 MAKE_ENV+= GNUSTEP_INSTALLATION_DOMAIN=SYSTEM post-patch: ${CP} ${WRKSRC}/gmds/mdextractor/Extractors/JpegExtractor/GNUmakefile.in \ ${WRKSRC}/gmds/mdextractor/Extractors/JpegExtractor/GNUmakefile ${CP} ${FILESDIR}/Preferences-GNUmakefile \ ${WRKSRC}/Preferences/GNUmakefile ${CP} ${FILESDIR}/MDFinder-GNUmakefile \ ${WRKSRC}/MDFinder/GNUmakefile .include Index: head/deskutils/gworkspace-gwmetadata/distinfo =================================================================== --- head/deskutils/gworkspace-gwmetadata/distinfo (revision 391061) +++ head/deskutils/gworkspace-gwmetadata/distinfo (revision 391062) @@ -1,2 +1,2 @@ -SHA256 (gworkspace-0.9.2.tar.gz) = 5239ef983fd4358e152fcfb5cd1f6c30366d04357c26c74719eb05da849af4fb -SIZE (gworkspace-0.9.2.tar.gz) = 4289262 +SHA256 (gworkspace-0.9.3.tar.gz) = 238343a8c4e447debec75ff49f4657f74a4256a49862899214a2c80616c79049 +SIZE (gworkspace-0.9.3.tar.gz) = 3833838 Index: head/devel/gnustep-make/Makefile =================================================================== --- head/devel/gnustep-make/Makefile (revision 391061) +++ head/devel/gnustep-make/Makefile (revision 391062) @@ -1,61 +1,60 @@ # Created by: Thomas Gellekum # $FreeBSD$ PORTNAME= gnustep-make -PORTVERSION= 2.6.6 -PORTREVISION= 4 +PORTVERSION= 2.6.7 CATEGORIES= devel gnustep MASTER_SITES= GNUSTEP/core MAINTAINER= theraven@FreeBSD.org COMMENT= GNUstep makefile package LICENSE= GPLv3 USES= gnustep objc GNU_CONFIGURE= yes MAKE_FLAGS= OPTFLAG="${CFLAGS}" CONFIGURE_ENV+= INSTALL_PROGRAM="${INSTALL} -c" INSTALL_DATA="${INSTALL} -c" CONFIGURE_ARGS+= --with-thread-lib=-pthread CONFIGURE_ARGS+= --with-config-file=${GNUSTEP_PREFIX}/GNUstep.conf CONFIGURE_ARGS+= --with-layout=gnustep CONFIGURE_ARGS+= --enable-objc-nonfragile-abi --enable-native-objc-exceptions GNU_CONFIGURE_PREFIX= ${GNUSTEP_PREFIX} post-install: ${LN} -s Library/Makefiles ${STAGEDIR}${GNUSTEP_PREFIX}/System/ -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Applications -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Library/ApplicationSupport -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Library/Bundles -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Library/ColorPickers -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Library/Colors -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Library/DocTemplates -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Library/Documentation/info -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Library/Documentation/man -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Library/Documentation/Developer -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Library/Documentation/User -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Library/Fonts -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Library/Frameworks -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Library/Headers -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Library/Images -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Library/KeyBindings -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Library/Libraries/Java -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Library/Libraries/Resources -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Library/PostScript -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Library/Services -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Library/Sounds -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Tools/Java -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Tools/Resources -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/Local/Applications -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/Local/Library/ApplicationSupport -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/Local/Library/Bundles -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/Local/Library/Documentation -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/Local/Library/Frameworks -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/Local/Library/Headers -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/Local/Library/Libraries -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/Local/Library/Preferences -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/Local/Library/Services -${MKDIR} ${STAGEDIR}${GNUSTEP_PREFIX}/Local/Tools/Resources .include Index: head/devel/gnustep-make/distinfo =================================================================== --- head/devel/gnustep-make/distinfo (revision 391061) +++ head/devel/gnustep-make/distinfo (revision 391062) @@ -1,2 +1,2 @@ -SHA256 (gnustep-make-2.6.6.tar.gz) = bcef14d875ff70b26dfc9e892f33bd3665e3d5d9b12eca0c4f2aae133aca981d -SIZE (gnustep-make-2.6.6.tar.gz) = 576589 +SHA256 (gnustep-make-2.6.7.tar.gz) = 112b57737c3dcc66c78a5c88925ae1d672673d256d9935598e98bcd687d051e4 +SIZE (gnustep-make-2.6.7.tar.gz) = 583730 Index: head/devel/gnustep-make/pkg-plist =================================================================== --- head/devel/gnustep-make/pkg-plist (revision 391061) +++ head/devel/gnustep-make/pkg-plist (revision 391062) @@ -1,183 +1,184 @@ GNUstep/GNUstep.conf GNUstep/System/Library/Documentation/man/man1/debugapp.1.gz GNUstep/System/Library/Documentation/man/man1/openapp.1.gz GNUstep/System/Library/Documentation/man/man1/gnustep-config.1.gz +GNUstep/System/Library/Documentation/man/man1/gnustep-tests.1.gz GNUstep/System/Library/Documentation/man/man1/opentool.1.gz GNUstep/System/Library/Documentation/man/man7/GNUstep.7.gz GNUstep/System/Library/Documentation/man/man7/library-combo.7.gz GNUstep/System/Library/Makefiles/GNUstep-reset.sh GNUstep/System/Library/Makefiles/GNUstep.csh GNUstep/System/Library/Makefiles/GNUstep.sh GNUstep/System/Library/Makefiles/Instance/Documentation/autogsdoc.make GNUstep/System/Library/Makefiles/Instance/Documentation/gsdoc.make GNUstep/System/Library/Makefiles/Instance/Documentation/install_files.make GNUstep/System/Library/Makefiles/Instance/Documentation/javadoc.make GNUstep/System/Library/Makefiles/Instance/Documentation/latex.make GNUstep/System/Library/Makefiles/Instance/Documentation/texi.make GNUstep/System/Library/Makefiles/Instance/Shared/bundle.make GNUstep/System/Library/Makefiles/Instance/Shared/headers.make GNUstep/System/Library/Makefiles/Instance/Shared/java.make GNUstep/System/Library/Makefiles/Instance/Shared/stamp-string.make GNUstep/System/Library/Makefiles/Instance/Shared/strings.make GNUstep/System/Library/Makefiles/Instance/application.make GNUstep/System/Library/Makefiles/Instance/bundle.make GNUstep/System/Library/Makefiles/Instance/clibrary.make GNUstep/System/Library/Makefiles/Instance/ctool.make GNUstep/System/Library/Makefiles/Instance/documentation.make GNUstep/System/Library/Makefiles/Instance/framework.make GNUstep/System/Library/Makefiles/Instance/gswapp.make GNUstep/System/Library/Makefiles/Instance/gswbundle.make GNUstep/System/Library/Makefiles/Instance/java-tool.make GNUstep/System/Library/Makefiles/Instance/java.make GNUstep/System/Library/Makefiles/Instance/library.make GNUstep/System/Library/Makefiles/Instance/objc.make GNUstep/System/Library/Makefiles/Instance/palette.make GNUstep/System/Library/Makefiles/Instance/resource-set.make GNUstep/System/Library/Makefiles/Instance/rules.make GNUstep/System/Library/Makefiles/Instance/service.make GNUstep/System/Library/Makefiles/Instance/subproject.make GNUstep/System/Library/Makefiles/Instance/test-application.make GNUstep/System/Library/Makefiles/Instance/test-library.make GNUstep/System/Library/Makefiles/Instance/test-tool.make GNUstep/System/Library/Makefiles/Instance/tool.make GNUstep/System/Library/Makefiles/Master/application.make GNUstep/System/Library/Makefiles/Master/bundle.make GNUstep/System/Library/Makefiles/Master/clibrary.make GNUstep/System/Library/Makefiles/Master/ctool.make GNUstep/System/Library/Makefiles/Master/deb.make GNUstep/System/Library/Makefiles/Master/documentation.make GNUstep/System/Library/Makefiles/Master/framework.make GNUstep/System/Library/Makefiles/Master/gswapp.make GNUstep/System/Library/Makefiles/Master/gswbundle.make GNUstep/System/Library/Makefiles/Master/java-tool.make GNUstep/System/Library/Makefiles/Master/java.make GNUstep/System/Library/Makefiles/Master/library.make GNUstep/System/Library/Makefiles/Master/nsis.make GNUstep/System/Library/Makefiles/Master/objc.make GNUstep/System/Library/Makefiles/Master/palette.make GNUstep/System/Library/Makefiles/Master/parallel-subdirectories.make GNUstep/System/Library/Makefiles/Master/resource-set.make GNUstep/System/Library/Makefiles/Master/rpm.make GNUstep/System/Library/Makefiles/Master/rules.make GNUstep/System/Library/Makefiles/Master/serial-subdirectories.make GNUstep/System/Library/Makefiles/Master/service.make GNUstep/System/Library/Makefiles/Master/source-distribution.make GNUstep/System/Library/Makefiles/Master/subproject.make GNUstep/System/Library/Makefiles/Master/test-application.make GNUstep/System/Library/Makefiles/Master/test-library.make GNUstep/System/Library/Makefiles/Master/test-tool.make GNUstep/System/Library/Makefiles/Master/tool.make GNUstep/System/Library/Makefiles/TestFramework/GNUmakefile.in GNUstep/System/Library/Makefiles/TestFramework/ObjectTesting.h GNUstep/System/Library/Makefiles/TestFramework/README GNUstep/System/Library/Makefiles/TestFramework/Summary.sh GNUstep/System/Library/Makefiles/TestFramework/Testing.h GNUstep/System/Library/Makefiles/TestFramework/example1.m GNUstep/System/Library/Makefiles/TestFramework/example%%MAJORVERSION%%.m GNUstep/System/Library/Makefiles/TestFramework/example3.m GNUstep/System/Library/Makefiles/TestFramework/example4.m GNUstep/System/Library/Makefiles/TestFramework/example5.m GNUstep/System/Library/Makefiles/TestFramework/example6.m GNUstep/System/Library/Makefiles/TestFramework/example7.m GNUstep/System/Library/Makefiles/TestFramework/example8.m GNUstep/System/Library/Makefiles/TestFramework/example9.m GNUstep/System/Library/Makefiles/aggregate.make GNUstep/System/Library/Makefiles/app-wrapper.template GNUstep/System/Library/Makefiles/application.make GNUstep/System/Library/Makefiles/bundle.make +GNUstep/System/Library/Makefiles/bake_debian_files.sh GNUstep/System/Library/Makefiles/clean_cpu.sh GNUstep/System/Library/Makefiles/clean_os.sh GNUstep/System/Library/Makefiles/clean_vendor.sh GNUstep/System/Library/Makefiles/clibrary.make GNUstep/System/Library/Makefiles/common.make GNUstep/System/Library/Makefiles/config-noarch.make GNUstep/System/Library/Makefiles/config.guess GNUstep/System/Library/Makefiles/config.make GNUstep/System/Library/Makefiles/config.sub GNUstep/System/Library/Makefiles/cpu.sh GNUstep/System/Library/Makefiles/ctool.make -GNUstep/System/Library/Makefiles/deb-equivs-control.template GNUstep/System/Library/Makefiles/documentation.make GNUstep/System/Library/Makefiles/empty.make GNUstep/System/Library/Makefiles/executable.template GNUstep/System/Library/Makefiles/filesystem.sh GNUstep/System/Library/Makefiles/filesystem.csh GNUstep/System/Library/Makefiles/filesystem.make GNUstep/System/Library/Makefiles/fixpath.sh GNUstep/System/Library/Makefiles/framework.make GNUstep/System/Library/Makefiles/gnustep-make-help GNUstep/System/Library/Makefiles/gswapp.make GNUstep/System/Library/Makefiles/gswbundle.make GNUstep/System/Library/Makefiles/install-sh GNUstep/System/Library/Makefiles/java-executable.template GNUstep/System/Library/Makefiles/java-tool.make GNUstep/System/Library/Makefiles/java.make GNUstep/System/Library/Makefiles/jni.make GNUstep/System/Library/Makefiles/library-combo.make GNUstep/System/Library/Makefiles/library.make GNUstep/System/Library/Makefiles/messages.make GNUstep/System/Library/Makefiles/mkinstalldirs GNUstep/System/Library/Makefiles/names.make GNUstep/System/Library/Makefiles/native-library.make GNUstep/System/Library/Makefiles/nsi-app.template GNUstep/System/Library/Makefiles/objc.make GNUstep/System/Library/Makefiles/os.sh GNUstep/System/Library/Makefiles/palette.make GNUstep/System/Library/Makefiles/parallel-subdirectories.make GNUstep/System/Library/Makefiles/print_unique_pathlist.sh GNUstep/System/Library/Makefiles/relative_path.sh GNUstep/System/Library/Makefiles/resource-set.make GNUstep/System/Library/Makefiles/rules.make GNUstep/System/Library/Makefiles/serial-subdirectories.make GNUstep/System/Library/Makefiles/service.make GNUstep/System/Library/Makefiles/spec-rules.template GNUstep/System/Library/Makefiles/strip_makefiles.sh GNUstep/System/Library/Makefiles/tar-exclude-list GNUstep/System/Library/Makefiles/subproject.make GNUstep/System/Library/Makefiles/target.make GNUstep/System/Library/Makefiles/test-application.make GNUstep/System/Library/Makefiles/test-library.make GNUstep/System/Library/Makefiles/test-tool.make GNUstep/System/Library/Makefiles/tool.make GNUstep/System/Library/Makefiles/vendor.sh GNUstep/System/Tools/debugapp GNUstep/System/Tools/gnustep-config GNUstep/System/Tools/gnustep-tests GNUstep/System/Tools/openapp GNUstep/System/Tools/opentool GNUstep/System/Makefiles @dir GNUstep/Local/Applications @dir GNUstep/Local/Library/ApplicationSupport @dir GNUstep/Local/Library/Bundles @dir GNUstep/Local/Library/Documentation @dir GNUstep/Local/Library/Frameworks @dir GNUstep/Local/Library/Headers @dir GNUstep/Local/Library/Libraries @dir GNUstep/Local/Library/Preferences @dir GNUstep/Local/Library/Services @dir GNUstep/Local/Tools/Resources @dir GNUstep/System/Applications @dir GNUstep/System/Library/ApplicationSupport @dir GNUstep/System/Library/Bundles @dir GNUstep/System/Library/ColorPickers @dir GNUstep/System/Library/Colors @dir GNUstep/System/Library/DocTemplates @dir GNUstep/System/Library/Documentation/man @dir GNUstep/System/Library/Documentation/info @dir GNUstep/System/Library/Documentation/Developer @dir GNUstep/System/Library/Documentation/User @dir GNUstep/System/Library/Fonts @dir GNUstep/System/Library/Frameworks @dir GNUstep/System/Library/Headers @dir GNUstep/System/Library/Images @dir GNUstep/System/Library/KeyBindings @dir GNUstep/System/Library/Libraries/Java @dir GNUstep/System/Library/Libraries/Resources @dir GNUstep/System/Library/Makefiles/Additional @dir GNUstep/System/Library/Makefiles/Auxiliary @dir GNUstep/System/Library/Makefiles/%%GNU_ARCH%% @dir GNUstep/System/Library/PostScript @dir GNUstep/System/Library/Sounds @dir GNUstep/System/Library/Services @dir GNUstep/System/Tools/Java @dir GNUstep/System/Tools/Resources Index: head/devel/gorm/Makefile =================================================================== --- head/devel/gorm/Makefile (revision 391061) +++ head/devel/gorm/Makefile (revision 391062) @@ -1,21 +1,20 @@ # $FreeBSD$ PORTNAME= gorm -PORTVERSION= 1.2.20 -PORTREVISION= 2 +PORTVERSION= 1.2.22 CATEGORIES= devel gnustep MASTER_SITES= GNUSTEP/dev-apps MAINTAINER= theraven@FreeBSD.org COMMENT= Graphical Object Relationship Modeller LICENSE= GPLv3 USES= gnustep USE_GNUSTEP= back build USE_LDCONFIG= ${GNUSTEP_SYSTEM_LIBRARIES} DEFAULT_LIBVERSION= 1.1.0 MAKE_ENV+= GNUSTEP_INSTALLATION_DOMAIN=SYSTEM .include Index: head/devel/gorm/distinfo =================================================================== --- head/devel/gorm/distinfo (revision 391061) +++ head/devel/gorm/distinfo (revision 391062) @@ -1,2 +1,2 @@ -SHA256 (gorm-1.2.20.tar.gz) = 1428bee51999e1915017a1d283a6ad73a94cabdddb7a0d5ad0e9f79bec92d6c0 -SIZE (gorm-1.2.20.tar.gz) = 691424 +SHA256 (gorm-1.2.22.tar.gz) = b15aca762a41a233535cdcadf3e0ce8cfcfbb48c31857eef246ca5d68bb105d7 +SIZE (gorm-1.2.22.tar.gz) = 695453 Index: head/devel/gorm/pkg-plist =================================================================== --- head/devel/gorm/pkg-plist (revision 391061) +++ head/devel/gorm/pkg-plist (revision 391062) @@ -1,397 +1,396 @@ GNUstep/System/Applications/Gorm.app/Gorm GNUstep/System/Applications/Gorm.app/Resources/0Menus.palette/0Menus GNUstep/System/Applications/Gorm.app/Resources/0Menus.palette/Resources/GormMenuAttributesInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/0Menus.palette/Resources/GormMenuAttributesInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/0Menus.palette/Resources/GormMenuAttributesInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/0Menus.palette/Resources/GormMenuDrag.tiff GNUstep/System/Applications/Gorm.app/Resources/0Menus.palette/Resources/GormMenuItemAttributesInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/0Menus.palette/Resources/GormMenuItemAttributesInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/0Menus.palette/Resources/GormMenuItemAttributesInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/0Menus.palette/Resources/Info-gnustep.plist GNUstep/System/Applications/Gorm.app/Resources/0Menus.palette/Resources/MenusPalette.tiff GNUstep/System/Applications/Gorm.app/Resources/0Menus.palette/Resources/palette.table GNUstep/System/Applications/Gorm.app/Resources/1Windows.palette/1Windows GNUstep/System/Applications/Gorm.app/Resources/1Windows.palette/Resources/Drawer.tiff GNUstep/System/Applications/Gorm.app/Resources/1Windows.palette/Resources/DrawerSmall.tiff GNUstep/System/Applications/Gorm.app/Resources/1Windows.palette/Resources/GormDrawerAttributesInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/1Windows.palette/Resources/GormDrawerAttributesInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/1Windows.palette/Resources/GormDrawerAttributesInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/1Windows.palette/Resources/GormNSWindowInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/1Windows.palette/Resources/GormNSWindowInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/1Windows.palette/Resources/GormNSWindowInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/1Windows.palette/Resources/GormNSWindowSizeInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/1Windows.palette/Resources/GormNSWindowSizeInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/1Windows.palette/Resources/GormNSWindowSizeInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/1Windows.palette/Resources/Info-gnustep.plist GNUstep/System/Applications/Gorm.app/Resources/1Windows.palette/Resources/WindowDrag.tiff GNUstep/System/Applications/Gorm.app/Resources/1Windows.palette/Resources/WindowsPalette.tiff GNUstep/System/Applications/Gorm.app/Resources/1Windows.palette/Resources/palette.table GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/2Controls GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/ControlsPalette.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/ControlsPalette.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/ControlsPalette.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/ControlsPalette.tiff GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSBoxInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSBoxInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSBoxInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSButtonInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSButtonInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSButtonInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSCellInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSCellInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSCellInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSColorWellInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSColorWellInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSColorWellInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSFormInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSFormInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSFormInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSMatrixInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSMatrixInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSMatrixInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSPopUpButtonInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSPopUpButtonInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSPopUpButtonInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSProgressIndicatorInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSProgressIndicatorInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSProgressIndicatorInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSSliderInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSSliderInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSSliderInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSStepperInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSStepperInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSStepperInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSTextFieldInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSTextFieldInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/GormNSTextFieldInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/Info-gnustep.plist GNUstep/System/Applications/Gorm.app/Resources/2Controls.palette/Resources/palette.table GNUstep/System/Applications/Gorm.app/Resources/3Containers.palette/3Containers GNUstep/System/Applications/Gorm.app/Resources/3Containers.palette/Resources/ContainersPalette.tiff GNUstep/System/Applications/Gorm.app/Resources/3Containers.palette/Resources/GormNSBrowserInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/3Containers.palette/Resources/GormNSBrowserInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/3Containers.palette/Resources/GormNSBrowserInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/3Containers.palette/Resources/GormNSTableColumnInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/3Containers.palette/Resources/GormNSTableColumnInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/3Containers.palette/Resources/GormNSTableColumnInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/3Containers.palette/Resources/GormNSTableColumnSizeInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/3Containers.palette/Resources/GormNSTableColumnSizeInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/3Containers.palette/Resources/GormNSTableColumnSizeInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/3Containers.palette/Resources/GormNSTableViewInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/3Containers.palette/Resources/GormNSTableViewInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/3Containers.palette/Resources/GormNSTableViewInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/3Containers.palette/Resources/GormTabViewInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/3Containers.palette/Resources/GormTabViewInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/3Containers.palette/Resources/GormTabViewInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/3Containers.palette/Resources/Info-gnustep.plist GNUstep/System/Applications/Gorm.app/Resources/3Containers.palette/Resources/palette.table GNUstep/System/Applications/Gorm.app/Resources/4Data.palette/4Data GNUstep/System/Applications/Gorm.app/Resources/4Data.palette/Resources/DataPalette.tiff GNUstep/System/Applications/Gorm.app/Resources/4Data.palette/Resources/GormNSComboBoxInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/4Data.palette/Resources/GormNSComboBoxInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/4Data.palette/Resources/GormNSComboBoxInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/4Data.palette/Resources/GormNSDateFormatterInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/4Data.palette/Resources/GormNSDateFormatterInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/4Data.palette/Resources/GormNSDateFormatterInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/4Data.palette/Resources/GormNSImageViewInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/4Data.palette/Resources/GormNSImageViewInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/4Data.palette/Resources/GormNSImageViewInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/4Data.palette/Resources/GormNSNumberFormatterInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/4Data.palette/Resources/GormNSNumberFormatterInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/4Data.palette/Resources/GormNSNumberFormatterInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/4Data.palette/Resources/GormNSTextViewInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/4Data.palette/Resources/GormNSTextViewInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/4Data.palette/Resources/GormNSTextViewInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/4Data.palette/Resources/Info-gnustep.plist GNUstep/System/Applications/Gorm.app/Resources/4Data.palette/Resources/palette.table GNUstep/System/Applications/Gorm.app/Resources/ClassInformation.plist GNUstep/System/Applications/Gorm.app/Resources/Defaults.plist GNUstep/System/Applications/Gorm.app/Resources/English.lproj/Gorm.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/Gorm.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/Gorm.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormClassEditor.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormClassEditor.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormClassEditor.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormClassInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormClassInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormClassInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormClassPanel.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormClassPanel.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormClassPanel.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormConnectionInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormConnectionInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormConnectionInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormCustomClassInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormCustomClassInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormCustomClassInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormDocument.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormDocument.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormDocument.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormDummyInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormDummyInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormDummyInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormFontView.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormFontView.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormFontView.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormHelpInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormHelpInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormHelpInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormImageInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormImageInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormImageInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormInconsistenciesPanel.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormInconsistenciesPanel.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormInconsistenciesPanel.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormInspectorPanel.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormInspectorPanel.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormInspectorPanel.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormNSSplitViewInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormNSSplitViewInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormNSSplitViewInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormObjectInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormObjectInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormObjectInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPalettePanel.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPalettePanel.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPalettePanel.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPrefColors.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPrefColors.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPrefColors.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPrefGeneral.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPrefGeneral.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPrefGeneral.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPrefGuideline.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPrefGuideline.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPrefGuideline.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPrefHeaders.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPrefHeaders.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPrefHeaders.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPrefPalettes.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPrefPalettes.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPrefPalettes.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPrefPlugins.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPrefPlugins.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPrefPlugins.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPreferences.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPreferences.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormPreferences.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormScrollViewAttributesInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormScrollViewAttributesInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormScrollViewAttributesInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormSetName.gorm/Gorm.tiff GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormSetName.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormSetName.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormSetName.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormShelfPref.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormShelfPref.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormShelfPref.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormSoundInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormSoundInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormSoundInspector.gorm/ff.tiff GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormSoundInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormSoundInspector.gorm/pause.tiff GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormSoundInspector.gorm/play.tiff GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormSoundInspector.gorm/rec.tiff GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormSoundInspector.gorm/rw.tiff GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormSoundInspector.gorm/stop.tiff GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormViewSizeInspector.gorm/data.classes GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormViewSizeInspector.gorm/data.info GNUstep/System/Applications/Gorm.app/Resources/English.lproj/GormViewSizeInspector.gorm/objects.gorm GNUstep/System/Applications/Gorm.app/Resources/FileIcon_gmodel.tiff GNUstep/System/Applications/Gorm.app/Resources/GModel.plugin/GModel GNUstep/System/Applications/Gorm.app/Resources/GModel.plugin/Resources/Info-gnustep.plist GNUstep/System/Applications/Gorm.app/Resources/GModel.plugin/stamp.make GNUstep/System/Applications/Gorm.app/Resources/Gorm.desktop GNUstep/System/Applications/Gorm.app/Resources/Gorm.plugin/Gorm GNUstep/System/Applications/Gorm.app/Resources/Gorm.plugin/Resources/Info-gnustep.plist GNUstep/System/Applications/Gorm.app/Resources/Gorm.plugin/stamp.make GNUstep/System/Applications/Gorm.app/Resources/Gorm.tiff GNUstep/System/Applications/Gorm.app/Resources/GormAction.tiff GNUstep/System/Applications/Gorm.app/Resources/GormActionSelected.tiff GNUstep/System/Applications/Gorm.app/Resources/GormClass.tiff GNUstep/System/Applications/Gorm.app/Resources/GormEHCoil.tiff GNUstep/System/Applications/Gorm.app/Resources/GormEHLine.tiff GNUstep/System/Applications/Gorm.app/Resources/GormEVCoil.tiff GNUstep/System/Applications/Gorm.app/Resources/GormEVLine.tiff GNUstep/System/Applications/Gorm.app/Resources/GormFile.tiff GNUstep/System/Applications/Gorm.app/Resources/GormFilesOwner.tiff GNUstep/System/Applications/Gorm.app/Resources/GormFirstResponder.tiff GNUstep/System/Applications/Gorm.app/Resources/GormFontManager.tiff GNUstep/System/Applications/Gorm.app/Resources/GormImage.tiff GNUstep/System/Applications/Gorm.app/Resources/GormInfo.plist GNUstep/System/Applications/Gorm.app/Resources/GormLinkImage.tiff GNUstep/System/Applications/Gorm.app/Resources/GormMHCoil.tiff GNUstep/System/Applications/Gorm.app/Resources/GormMHLine.tiff GNUstep/System/Applications/Gorm.app/Resources/GormMVCoil.tiff GNUstep/System/Applications/Gorm.app/Resources/GormMVLine.tiff GNUstep/System/Applications/Gorm.app/Resources/GormMenu.tiff GNUstep/System/Applications/Gorm.app/Resources/GormNib.tiff GNUstep/System/Applications/Gorm.app/Resources/GormObject.tiff GNUstep/System/Applications/Gorm.app/Resources/GormOutlet.tiff GNUstep/System/Applications/Gorm.app/Resources/GormOutletSelected.tiff GNUstep/System/Applications/Gorm.app/Resources/GormPalette.tiff GNUstep/System/Applications/Gorm.app/Resources/GormSound.tiff GNUstep/System/Applications/Gorm.app/Resources/GormSourceTag.tiff GNUstep/System/Applications/Gorm.app/Resources/GormTargetTag.tiff GNUstep/System/Applications/Gorm.app/Resources/GormTesting.tiff GNUstep/System/Applications/Gorm.app/Resources/GormUnknown.tiff GNUstep/System/Applications/Gorm.app/Resources/GormView.tiff GNUstep/System/Applications/Gorm.app/Resources/GormWindow.tiff GNUstep/System/Applications/Gorm.app/Resources/Info-gnustep.plist GNUstep/System/Applications/Gorm.app/Resources/LeftArr.tiff GNUstep/System/Applications/Gorm.app/Resources/Nib.plugin/Nib GNUstep/System/Applications/Gorm.app/Resources/Nib.plugin/Resources/Info-gnustep.plist GNUstep/System/Applications/Gorm.app/Resources/Nib.plugin/stamp.make GNUstep/System/Applications/Gorm.app/Resources/RightArr.tiff GNUstep/System/Applications/Gorm.app/Resources/Sunday_seurat.tiff GNUstep/System/Applications/Gorm.app/Resources/VersionProfiles.plist GNUstep/System/Applications/Gorm.app/Resources/Xib.plugin/Resources/Info-gnustep.plist GNUstep/System/Applications/Gorm.app/Resources/Xib.plugin/Xib GNUstep/System/Applications/Gorm.app/Resources/Xib.plugin/stamp.make GNUstep/System/Applications/Gorm.app/Resources/bezel_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/browserView.tiff GNUstep/System/Applications/Gorm.app/Resources/button_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/centeralign_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/date_formatter.tiff GNUstep/System/Applications/Gorm.app/Resources/iconAbove_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/iconBelow_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/iconBottomLeft_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/iconBottomRight_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/iconBottom_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/iconCenterLeft_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/iconCenterRight_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/iconCenter_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/iconLeft_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/iconOnly_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/iconRight_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/iconTopLeft_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/iconTopRight_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/iconTop_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/justifyalign_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/leftalign_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/line_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/naturalalign_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/noBorder_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/number_formatter.tiff GNUstep/System/Applications/Gorm.app/Resources/outlineView.tiff GNUstep/System/Applications/Gorm.app/Resources/photoframe_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/ridge_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/rightalign_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/shortbutton_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/tabbot_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/tabtop_nib.tiff GNUstep/System/Applications/Gorm.app/Resources/titleOnly_nib.tiff GNUstep/System/Applications/Gorm.app/stamp.make GNUstep/System/Library/Headers/GormCore/GormBoxEditor.h GNUstep/System/Library/Headers/GormCore/GormClassEditor.h GNUstep/System/Library/Headers/GormCore/GormClassInspector.h GNUstep/System/Library/Headers/GormCore/GormClassManager.h GNUstep/System/Library/Headers/GormCore/GormClassPanelController.h GNUstep/System/Library/Headers/GormCore/GormConnectionInspector.h GNUstep/System/Library/Headers/GormCore/GormControlEditor.h GNUstep/System/Library/Headers/GormCore/GormCustomClassInspector.h GNUstep/System/Library/Headers/GormCore/GormCustomView.h GNUstep/System/Library/Headers/GormCore/GormDocument.h GNUstep/System/Library/Headers/GormCore/GormDocumentController.h GNUstep/System/Library/Headers/GormCore/GormDocumentWindow.h GNUstep/System/Library/Headers/GormCore/GormFilePrefsManager.h GNUstep/System/Library/Headers/GormCore/GormFilesOwner.h GNUstep/System/Library/Headers/GormCore/GormFontViewController.h GNUstep/System/Library/Headers/GormCore/GormFunctions.h GNUstep/System/Library/Headers/GormCore/GormGenericEditor.h GNUstep/System/Library/Headers/GormCore/GormHelpInspector.h GNUstep/System/Library/Headers/GormCore/GormImage.h GNUstep/System/Library/Headers/GormCore/GormImageEditor.h GNUstep/System/Library/Headers/GormCore/GormImageInspector.h GNUstep/System/Library/Headers/GormCore/GormInspectorsManager.h GNUstep/System/Library/Headers/GormCore/GormInternalViewEditor.h GNUstep/System/Library/Headers/GormCore/GormMatrixEditor.h GNUstep/System/Library/Headers/GormCore/GormNSPanel.h GNUstep/System/Library/Headers/GormCore/GormNSSplitViewInspector.h GNUstep/System/Library/Headers/GormCore/GormNSWindow.h GNUstep/System/Library/Headers/GormCore/GormObjectEditor.h GNUstep/System/Library/Headers/GormCore/GormObjectInspector.h GNUstep/System/Library/Headers/GormCore/GormOpenGLView.h GNUstep/System/Library/Headers/GormCore/GormOutlineView.h GNUstep/System/Library/Headers/GormCore/GormPalettesManager.h GNUstep/System/Library/Headers/GormCore/GormPlacementInfo.h GNUstep/System/Library/Headers/GormCore/GormPlugin.h GNUstep/System/Library/Headers/GormCore/GormPluginManager.h GNUstep/System/Library/Headers/GormCore/GormPrivate.h GNUstep/System/Library/Headers/GormCore/GormProtocol.h GNUstep/System/Library/Headers/GormCore/GormResource.h GNUstep/System/Library/Headers/GormCore/GormResourceEditor.h GNUstep/System/Library/Headers/GormCore/GormResourceManager.h GNUstep/System/Library/Headers/GormCore/GormScrollViewAttributesInspector.h GNUstep/System/Library/Headers/GormCore/GormServer.h GNUstep/System/Library/Headers/GormCore/GormSetNameController.h GNUstep/System/Library/Headers/GormCore/GormSound.h GNUstep/System/Library/Headers/GormCore/GormSoundEditor.h GNUstep/System/Library/Headers/GormCore/GormSoundInspector.h GNUstep/System/Library/Headers/GormCore/GormSoundView.h GNUstep/System/Library/Headers/GormCore/GormSplitViewEditor.h GNUstep/System/Library/Headers/GormCore/GormStandaloneViewEditor.h GNUstep/System/Library/Headers/GormCore/GormViewEditor.h GNUstep/System/Library/Headers/GormCore/GormViewKnobs.h GNUstep/System/Library/Headers/GormCore/GormViewSizeInspector.h GNUstep/System/Library/Headers/GormCore/GormViewWindow.h GNUstep/System/Library/Headers/GormCore/GormViewWithContentViewEditor.h GNUstep/System/Library/Headers/GormCore/GormViewWithSubviewsEditor.h GNUstep/System/Library/Headers/GormCore/GormWindowEditor.h GNUstep/System/Library/Headers/GormCore/GormWindowTemplate.h GNUstep/System/Library/Headers/GormCore/GormWrapperBuilder.h GNUstep/System/Library/Headers/GormCore/GormWrapperLoader.h GNUstep/System/Library/Headers/GormCore/NSCell+GormAdditions.h GNUstep/System/Library/Headers/GormCore/NSColorWell+GormExtensions.h GNUstep/System/Library/Headers/GormCore/NSFontManager+GormExtensions.h GNUstep/System/Library/Headers/GormCore/NSView+GormExtensions.h GNUstep/System/Library/Headers/GormObjCHeaderParser/NSScanner+OCHeaderParser.h GNUstep/System/Library/Headers/GormObjCHeaderParser/OCClass.h GNUstep/System/Library/Headers/GormObjCHeaderParser/OCHeaderParser.h GNUstep/System/Library/Headers/GormObjCHeaderParser/OCIVar.h GNUstep/System/Library/Headers/GormObjCHeaderParser/OCIVarDecl.h GNUstep/System/Library/Headers/GormObjCHeaderParser/OCMethod.h GNUstep/System/Library/Headers/GormObjCHeaderParser/ParserFunctions.h -GNUstep/System/Library/Headers/GormPrefs/GormColorsPref.h GNUstep/System/Library/Headers/GormPrefs/GormGeneralPref.h GNUstep/System/Library/Headers/GormPrefs/GormGuidelinePref.h GNUstep/System/Library/Headers/GormPrefs/GormHeadersPref.h GNUstep/System/Library/Headers/GormPrefs/GormPalettesPref.h GNUstep/System/Library/Headers/GormPrefs/GormPluginsPref.h GNUstep/System/Library/Headers/GormPrefs/GormPrefController.h GNUstep/System/Library/Headers/GormPrefs/GormShelfPref.h GNUstep/System/Library/Headers/InterfaceBuilder/IBApplicationAdditions.h GNUstep/System/Library/Headers/InterfaceBuilder/IBCellAdditions.h GNUstep/System/Library/Headers/InterfaceBuilder/IBCellProtocol.h GNUstep/System/Library/Headers/InterfaceBuilder/IBConnectors.h GNUstep/System/Library/Headers/InterfaceBuilder/IBDefines.h GNUstep/System/Library/Headers/InterfaceBuilder/IBDocuments.h GNUstep/System/Library/Headers/InterfaceBuilder/IBEditors.h GNUstep/System/Library/Headers/InterfaceBuilder/IBInspector.h GNUstep/System/Library/Headers/InterfaceBuilder/IBInspectorManager.h GNUstep/System/Library/Headers/InterfaceBuilder/IBInspectorMode.h GNUstep/System/Library/Headers/InterfaceBuilder/IBObjectAdditions.h GNUstep/System/Library/Headers/InterfaceBuilder/IBObjectProtocol.h GNUstep/System/Library/Headers/InterfaceBuilder/IBPalette.h GNUstep/System/Library/Headers/InterfaceBuilder/IBPlugin.h GNUstep/System/Library/Headers/InterfaceBuilder/IBProjectFiles.h GNUstep/System/Library/Headers/InterfaceBuilder/IBProjects.h GNUstep/System/Library/Headers/InterfaceBuilder/IBResourceManager.h GNUstep/System/Library/Headers/InterfaceBuilder/IBSystem.h GNUstep/System/Library/Headers/InterfaceBuilder/IBViewAdditions.h GNUstep/System/Library/Headers/InterfaceBuilder/IBViewProtocol.h GNUstep/System/Library/Headers/InterfaceBuilder/IBViewResourceDragging.h GNUstep/System/Library/Headers/InterfaceBuilder/InterfaceBuilder.h GNUstep/System/Library/Libraries/libGorm.so GNUstep/System/Library/Libraries/libGorm.so.1 GNUstep/System/Library/Libraries/libGorm.so.1.1.0 GNUstep/System/Library/Libraries/libGormCore.so +GNUstep/System/Library/Libraries/libGormCore.so.%%VERSION%% GNUstep/System/Library/Libraries/libGormCore.so.1 -GNUstep/System/Library/Libraries/libGormCore.so.1.2.20 GNUstep/System/Library/Libraries/libGormObjCHeaderParser.so GNUstep/System/Library/Libraries/libGormObjCHeaderParser.so.1 GNUstep/System/Library/Libraries/libGormObjCHeaderParser.so.1.1.0 GNUstep/System/Library/Libraries/libGormPrefs.so +GNUstep/System/Library/Libraries/libGormPrefs.so.%%VERSION%% GNUstep/System/Library/Libraries/libGormPrefs.so.1 -GNUstep/System/Library/Libraries/libGormPrefs.so.1.2.20 GNUstep/System/Tools/Gorm Index: head/devel/performance/Makefile =================================================================== --- head/devel/performance/Makefile (revision 391061) +++ head/devel/performance/Makefile (revision 391062) @@ -1,19 +1,18 @@ # $FreeBSD$ PORTNAME= performance -PORTVERSION= 0.4.0 -PORTREVISION= 1 +PORTVERSION= 0.5.0 CATEGORIES= devel gnustep MASTER_SITES= GNUSTEP/libs DISTNAME= Performance-${PORTVERSION} MAINTAINER= theraven@FreeBSD.org COMMENT= Help improve the performance of GNUstep applications LICENSE= LGPL3 USES= gnustep USE_GNUSTEP= base build USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} .include Index: head/devel/performance/distinfo =================================================================== --- head/devel/performance/distinfo (revision 391061) +++ head/devel/performance/distinfo (revision 391062) @@ -1,2 +1,2 @@ -SHA256 (Performance-0.4.0.tar.gz) = e55c1a8d9e6f1e3ba146490d1b0cf7b84e124410a50070ab3b27ecfc4aab6a1c -SIZE (Performance-0.4.0.tar.gz) = 48527 +SHA256 (Performance-0.5.0.tar.gz) = 305fe21705a9774becb58f076542919da38c36867d946b69f735fecfa5bc8459 +SIZE (Performance-0.5.0.tar.gz) = 50569 Index: head/devel/performance/pkg-plist =================================================================== --- head/devel/performance/pkg-plist (revision 391061) +++ head/devel/performance/pkg-plist (revision 391062) @@ -1,30 +1,33 @@ GNUstep/Local/Library/Documentation/Performance/GSCache.gsdoc GNUstep/Local/Library/Documentation/Performance/GSCache.html GNUstep/Local/Library/Documentation/Performance/GSFIFO.gsdoc GNUstep/Local/Library/Documentation/Performance/GSFIFO.html GNUstep/Local/Library/Documentation/Performance/GSIOThreadPool.gsdoc GNUstep/Local/Library/Documentation/Performance/GSIOThreadPool.html GNUstep/Local/Library/Documentation/Performance/GSLinkedList.gsdoc GNUstep/Local/Library/Documentation/Performance/GSLinkedList.html GNUstep/Local/Library/Documentation/Performance/GSSkipMutableArray.gsdoc GNUstep/Local/Library/Documentation/Performance/GSSkipMutableArray.html GNUstep/Local/Library/Documentation/Performance/GSThreadPool.gsdoc GNUstep/Local/Library/Documentation/Performance/GSThreadPool.html GNUstep/Local/Library/Documentation/Performance/GSThroughput.gsdoc GNUstep/Local/Library/Documentation/Performance/GSThroughput.html GNUstep/Local/Library/Documentation/Performance/GSTicker.gsdoc GNUstep/Local/Library/Documentation/Performance/GSTicker.html +GNUstep/Local/Library/Documentation/Performance/GSUniqued.gsdoc +GNUstep/Local/Library/Documentation/Performance/GSUniqued.html GNUstep/Local/Library/Documentation/Performance/OrderedSymbolDeclarations.plist GNUstep/Local/Library/Documentation/Performance/Performance.igsdoc GNUstep/Local/Library/Documentation/Performance/dependencies GNUstep/Local/Library/Headers/Performance/GSCache.h GNUstep/Local/Library/Headers/Performance/GSFIFO.h GNUstep/Local/Library/Headers/Performance/GSIOThreadPool.h GNUstep/Local/Library/Headers/Performance/GSLinkedList.h GNUstep/Local/Library/Headers/Performance/GSSkipMutableArray.h GNUstep/Local/Library/Headers/Performance/GSThreadPool.h GNUstep/Local/Library/Headers/Performance/GSThroughput.h GNUstep/Local/Library/Headers/Performance/GSTicker.h +GNUstep/Local/Library/Headers/Performance/GSUniqued.h GNUstep/Local/Library/Libraries/libPerformance.so -GNUstep/Local/Library/Libraries/libPerformance.so.0.4 -GNUstep/Local/Library/Libraries/libPerformance.so.0.4.0 +GNUstep/Local/Library/Libraries/libPerformance.so.%%VERSION%% +GNUstep/Local/Library/Libraries/libPerformance.so.0.5 Index: head/ftp/gnustep-ftp/Makefile =================================================================== --- head/ftp/gnustep-ftp/Makefile (revision 391061) +++ head/ftp/gnustep-ftp/Makefile (revision 391062) @@ -1,23 +1,22 @@ # $FreeBSD$ PORTNAME= ftp -PORTVERSION= 0.4 -PORTREVISION= 2 +PORTVERSION= 0.5 CATEGORIES= ftp gnustep MASTER_SITES= SAVANNAH/gap PKGNAMEPREFIX= gnustep- DISTNAME= FTP-${PORTVERSION} MAINTAINER= theraven@FreeBSD.org COMMENT= Compact and handy FTP client for GNUstep LICENSE= GPLv2 USES= gnustep USE_GNUSTEP= back build post-patch: ${REINPLACE_CMD} -e 's|^GNUSTEP_INSTALLATION_DIR|#GNUSTEP_INSTALLATION_DIR|' \ ${WRKSRC}/GNUmakefile .include Index: head/ftp/gnustep-ftp/distinfo =================================================================== --- head/ftp/gnustep-ftp/distinfo (revision 391061) +++ head/ftp/gnustep-ftp/distinfo (revision 391062) @@ -1,2 +1,2 @@ -SHA256 (FTP-0.4.tar.gz) = 62a742e7b526ca1581ca641f6f444974c69640c1703b269c5b6cce6bfe15520c -SIZE (FTP-0.4.tar.gz) = 123290 +SHA256 (FTP-0.5.tar.gz) = 159b297df1d797f6a4af2aa353380eeecc99078db27ecc5172e90c5bc3f06073 +SIZE (FTP-0.5.tar.gz) = 132587 Index: head/ftp/gnustep-ftp/pkg-plist =================================================================== --- head/ftp/gnustep-ftp/pkg-plist (revision 391061) +++ head/ftp/gnustep-ftp/pkg-plist (revision 391062) @@ -1,13 +1,18 @@ + GNUstep/Local/Applications/FTP.app/FTP GNUstep/Local/Applications/FTP.app/Resources/FTP.desktop GNUstep/Local/Applications/FTP.app/Resources/FTP.gorm/arrow_left.tiff GNUstep/Local/Applications/FTP.app/Resources/FTP.gorm/arrow_right.tiff GNUstep/Local/Applications/FTP.app/Resources/FTP.gorm/data.classes GNUstep/Local/Applications/FTP.app/Resources/FTP.gorm/data.info GNUstep/Local/Applications/FTP.app/Resources/FTP.gorm/objects.gorm GNUstep/Local/Applications/FTP.app/Resources/FTP_icon_gs.tif +GNUstep/Local/Applications/FTP.app/Resources/GetName.gorm/FTP_icon_gs.tif +GNUstep/Local/Applications/FTP.app/Resources/GetName.gorm/data.classes +GNUstep/Local/Applications/FTP.app/Resources/GetName.gorm/data.info +GNUstep/Local/Applications/FTP.app/Resources/GetName.gorm/objects.gorm GNUstep/Local/Applications/FTP.app/Resources/Info-gnustep.plist GNUstep/Local/Applications/FTP.app/Resources/arrow_left.tiff GNUstep/Local/Applications/FTP.app/Resources/arrow_right.tiff GNUstep/Local/Applications/FTP.app/stamp.make GNUstep/Local/Tools/FTP Index: head/lang/gnustep-base/Makefile =================================================================== --- head/lang/gnustep-base/Makefile (revision 391061) +++ head/lang/gnustep-base/Makefile (revision 391062) @@ -1,70 +1,69 @@ # Created by: Thomas Gellekum # $FreeBSD$ PORTNAME= gnustep-base -PORTVERSION= 1.24.6 -PORTREVISION= 7 +PORTVERSION= 1.24.8 CATEGORIES= lang devel gnustep MASTER_SITES= GNUSTEP/core MAINTAINER= theraven@FreeBSD.org COMMENT= GNUstep Foundation library LICENSE= GPLv3 LGPL3 LICENSE_COMB= multi OPTIONS_RADIO= ZEROCONF OPTIONS_RADIO_ZEROCONF= AVAHI MDNS OPTIONS_DEFAULT= AVAHI NOZEROCONF_DESC= Disable Zeroconf (Bonjour) support AVAHI_DESC?= Zeroconf via Avahi (preferred) MDNS_DESC?= Zeroconf via mDNSResponder LIB_DEPENDS+= libffi.so:${PORTSDIR}/devel/libffi LIB_DEPENDS+= libxml2.so:${PORTSDIR}/textproc/libxml2 LIB_DEPENDS+= libxslt.so:${PORTSDIR}/textproc/libxslt LIB_DEPENDS+= libgmp.so:${PORTSDIR}/math/gmp LIB_DEPENDS+= libgnutls-openssl.so:${PORTSDIR}/security/gnutls LIB_DEPENDS+= libicuuc.so:${PORTSDIR}/devel/icu LIB_DEPENDS+= libgcrypt.so:${PORTSDIR}/security/libgcrypt GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-procfs --disable-openssl --enable-tls \ --with-tls-prefix=${LOCALBASE} TLS_CONFIG="pkg-config -gnutls"\ --disable-mixedabi CONFIGURE_ENV+= OBJCFLAGS='-fobjc-runtime=gnustep-1.7 -fblocks' USES= pkgconfig iconv gnustep USE_GNUSTEP= build USE_LDCONFIG= ${GNUSTEP_SYSTEM_LIBRARIES} MAKE_FLAGS= OPTFLAG="${CFLAGS}" MAKE_ENV+= GNUSTEP_INSTALLATION_DOMAIN=SYSTEM ETCDIR= ${LOCALBASE}/etc STAGEHEADER= ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Headers PLIST_SUB+= BASEVERSION=${PORTVERSION:C/[.][0-9]*$//1} .include .if ${PORT_OPTIONS:MAVAHI} CONFIGURE_ARGS+= --with-zeroconf-api=avahi LIB_DEPENDS+= libavahi-client.so:${PORTSDIR}/net/avahi-app .elif ${PORT_OPTIONS:MMDNS} CONFIGURE_ARGS+= --with-zeroconf-api=mdns LIB_DEPENDS+= libdns_sd.so:${PORTSDIR}/net/mDNSResponder .else CONFIGURE_ARGS+= --disable-zeroconf .endif post-extract: @${REINPLACE_CMD} -e "s|/usr/local/|${LOCALBASE}/|" \ ${WRKSRC}/configure post-install: ${INSTALL_DATA} ${FILESDIR}/gdomap_if ${STAGEDIR}${ETCDIR} ${RMDIR} ${STAGEHEADER}/gnustep/base ${RMDIR} ${STAGEHEADER}/GNUstepBase/unicode .include Index: head/lang/gnustep-base/distinfo =================================================================== --- head/lang/gnustep-base/distinfo (revision 391061) +++ head/lang/gnustep-base/distinfo (revision 391062) @@ -1,2 +1,2 @@ -SHA256 (gnustep-base-1.24.6.tar.gz) = b6d7bed40c52330928a1e27f8c7b5f8fcf24ede2113542546dcf157a9366d72a -SIZE (gnustep-base-1.24.6.tar.gz) = 3502981 +SHA256 (gnustep-base-1.24.8.tar.gz) = 5b2a7042bc5001e97ac090143244a4344a6cba72cee53f3840e2492d3db443cb +SIZE (gnustep-base-1.24.8.tar.gz) = 3515290 Index: head/lang/gnustep-base/pkg-plist =================================================================== --- head/lang/gnustep-base/pkg-plist (revision 391061) +++ head/lang/gnustep-base/pkg-plist (revision 391062) @@ -1,847 +1,849 @@ GNUstep/System/Library/DTDs/gsdoc-0_6_5.dtd GNUstep/System/Library/DTDs/gsdoc-0_6_6.dtd GNUstep/System/Library/DTDs/gsdoc-0_6_7.dtd GNUstep/System/Library/DTDs/gsdoc-1_0_0.dtd GNUstep/System/Library/DTDs/gsdoc-1_0_1.dtd GNUstep/System/Library/DTDs/gsdoc-1_0_1.rnc GNUstep/System/Library/DTDs/gsdoc-1_0_2.dtd GNUstep/System/Library/DTDs/gsdoc-1_0_3.dtd +GNUstep/System/Library/DTDs/gsdoc-1_0_4.dtd GNUstep/System/Library/DTDs/plist-0_9.dtd +GNUstep/System/Library/Documentation/man/man1/HTMLLinker.1.gz GNUstep/System/Library/Documentation/man/man1/autogsdoc.1.gz GNUstep/System/Library/Documentation/man/man1/cvtenc.1.gz GNUstep/System/Library/Documentation/man/man1/defaults.1.gz GNUstep/System/Library/Documentation/man/man1/gdnc.1.gz GNUstep/System/Library/Documentation/man/man1/gspath.1.gz +GNUstep/System/Library/Documentation/man/man1/make_strings.1.gz GNUstep/System/Library/Documentation/man/man1/pldes.1.gz GNUstep/System/Library/Documentation/man/man1/sfparse.1.gz GNUstep/System/Library/Documentation/man/man1/xmlparse.1.gz GNUstep/System/Library/Documentation/man/man8/gdomap.8.gz GNUstep/System/Library/Headers/Foundation/Foundation.h GNUstep/System/Library/Headers/Foundation/FoundationErrors.h GNUstep/System/Library/Headers/Foundation/GSMime.h GNUstep/System/Library/Headers/Foundation/GSXML.h GNUstep/System/Library/Headers/Foundation/NSAffineTransform.h GNUstep/System/Library/Headers/Foundation/NSArchiver.h GNUstep/System/Library/Headers/Foundation/NSArray.h GNUstep/System/Library/Headers/Foundation/NSAttributedString.h GNUstep/System/Library/Headers/Foundation/NSAutoreleasePool.h GNUstep/System/Library/Headers/Foundation/NSBundle.h GNUstep/System/Library/Headers/Foundation/NSByteOrder.h GNUstep/System/Library/Headers/Foundation/NSCache.h GNUstep/System/Library/Headers/Foundation/NSCalendar.h GNUstep/System/Library/Headers/Foundation/NSCalendarDate.h GNUstep/System/Library/Headers/Foundation/NSCharacterSet.h GNUstep/System/Library/Headers/Foundation/NSClassDescription.h GNUstep/System/Library/Headers/Foundation/NSCoder.h GNUstep/System/Library/Headers/Foundation/NSComparisonPredicate.h GNUstep/System/Library/Headers/Foundation/NSCompoundPredicate.h GNUstep/System/Library/Headers/Foundation/NSConnection.h GNUstep/System/Library/Headers/Foundation/NSData.h GNUstep/System/Library/Headers/Foundation/NSDate.h GNUstep/System/Library/Headers/Foundation/NSDateFormatter.h GNUstep/System/Library/Headers/Foundation/NSDebug.h GNUstep/System/Library/Headers/Foundation/NSDecimal.h GNUstep/System/Library/Headers/Foundation/NSDecimalNumber.h GNUstep/System/Library/Headers/Foundation/NSDictionary.h GNUstep/System/Library/Headers/Foundation/NSDistantObject.h GNUstep/System/Library/Headers/Foundation/NSDistributedLock.h GNUstep/System/Library/Headers/Foundation/NSDistributedNotificationCenter.h GNUstep/System/Library/Headers/Foundation/NSEnumerator.h GNUstep/System/Library/Headers/Foundation/NSError.h GNUstep/System/Library/Headers/Foundation/NSErrorRecoveryAttempting.h GNUstep/System/Library/Headers/Foundation/NSException.h GNUstep/System/Library/Headers/Foundation/NSExpression.h GNUstep/System/Library/Headers/Foundation/NSFileHandle.h GNUstep/System/Library/Headers/Foundation/NSFileManager.h GNUstep/System/Library/Headers/Foundation/NSFormatter.h GNUstep/System/Library/Headers/Foundation/NSGarbageCollector.h GNUstep/System/Library/Headers/Foundation/NSGeometry.h GNUstep/System/Library/Headers/Foundation/NSHTTPCookie.h GNUstep/System/Library/Headers/Foundation/NSHTTPCookieStorage.h GNUstep/System/Library/Headers/Foundation/NSHashTable.h GNUstep/System/Library/Headers/Foundation/NSHost.h GNUstep/System/Library/Headers/Foundation/NSIndexPath.h GNUstep/System/Library/Headers/Foundation/NSIndexSet.h GNUstep/System/Library/Headers/Foundation/NSInvocation.h GNUstep/System/Library/Headers/Foundation/NSInvocationOperation.h GNUstep/System/Library/Headers/Foundation/NSJSONSerialization.h GNUstep/System/Library/Headers/Foundation/NSKeyValueCoding.h GNUstep/System/Library/Headers/Foundation/NSKeyValueObserving.h GNUstep/System/Library/Headers/Foundation/NSKeyedArchiver.h GNUstep/System/Library/Headers/Foundation/NSLocale.h GNUstep/System/Library/Headers/Foundation/NSLock.h GNUstep/System/Library/Headers/Foundation/NSMapTable.h GNUstep/System/Library/Headers/Foundation/NSMetadata.h GNUstep/System/Library/Headers/Foundation/NSMethodSignature.h GNUstep/System/Library/Headers/Foundation/NSNetServices.h GNUstep/System/Library/Headers/Foundation/NSNotification.h GNUstep/System/Library/Headers/Foundation/NSNotificationQueue.h GNUstep/System/Library/Headers/Foundation/NSNull.h GNUstep/System/Library/Headers/Foundation/NSNumberFormatter.h GNUstep/System/Library/Headers/Foundation/NSObjCRuntime.h GNUstep/System/Library/Headers/Foundation/NSObject.h GNUstep/System/Library/Headers/Foundation/NSOperation.h GNUstep/System/Library/Headers/Foundation/NSPathUtilities.h GNUstep/System/Library/Headers/Foundation/NSPointerArray.h GNUstep/System/Library/Headers/Foundation/NSPointerFunctions.h GNUstep/System/Library/Headers/Foundation/NSPort.h GNUstep/System/Library/Headers/Foundation/NSPortCoder.h GNUstep/System/Library/Headers/Foundation/NSPortMessage.h GNUstep/System/Library/Headers/Foundation/NSPortNameServer.h GNUstep/System/Library/Headers/Foundation/NSPredicate.h GNUstep/System/Library/Headers/Foundation/NSProcessInfo.h GNUstep/System/Library/Headers/Foundation/NSPropertyList.h GNUstep/System/Library/Headers/Foundation/NSProtocolChecker.h GNUstep/System/Library/Headers/Foundation/NSProxy.h GNUstep/System/Library/Headers/Foundation/NSRange.h GNUstep/System/Library/Headers/Foundation/NSRegularExpression.h GNUstep/System/Library/Headers/Foundation/NSRunLoop.h GNUstep/System/Library/Headers/Foundation/NSScanner.h GNUstep/System/Library/Headers/Foundation/NSScriptWhoseTests.h GNUstep/System/Library/Headers/Foundation/NSSerialization.h GNUstep/System/Library/Headers/Foundation/NSSet.h GNUstep/System/Library/Headers/Foundation/NSSortDescriptor.h GNUstep/System/Library/Headers/Foundation/NSSpellServer.h GNUstep/System/Library/Headers/Foundation/NSStream.h GNUstep/System/Library/Headers/Foundation/NSString.h GNUstep/System/Library/Headers/Foundation/NSTask.h GNUstep/System/Library/Headers/Foundation/NSTextCheckingResult.h GNUstep/System/Library/Headers/Foundation/NSThread.h GNUstep/System/Library/Headers/Foundation/NSTimeZone.h GNUstep/System/Library/Headers/Foundation/NSTimer.h GNUstep/System/Library/Headers/Foundation/NSURL.h GNUstep/System/Library/Headers/Foundation/NSURLAuthenticationChallenge.h GNUstep/System/Library/Headers/Foundation/NSURLCache.h GNUstep/System/Library/Headers/Foundation/NSURLConnection.h GNUstep/System/Library/Headers/Foundation/NSURLCredential.h GNUstep/System/Library/Headers/Foundation/NSURLCredentialStorage.h GNUstep/System/Library/Headers/Foundation/NSURLDownload.h GNUstep/System/Library/Headers/Foundation/NSURLError.h GNUstep/System/Library/Headers/Foundation/NSURLHandle.h GNUstep/System/Library/Headers/Foundation/NSURLProtectionSpace.h GNUstep/System/Library/Headers/Foundation/NSURLProtocol.h GNUstep/System/Library/Headers/Foundation/NSURLRequest.h GNUstep/System/Library/Headers/Foundation/NSURLResponse.h +GNUstep/System/Library/Headers/Foundation/NSUUID.h GNUstep/System/Library/Headers/Foundation/NSUndoManager.h GNUstep/System/Library/Headers/Foundation/NSUserDefaults.h +GNUstep/System/Library/Headers/Foundation/NSUserNotification.h GNUstep/System/Library/Headers/Foundation/NSUtilities.h -GNUstep/System/Library/Headers/Foundation/NSUUID.h GNUstep/System/Library/Headers/Foundation/NSValue.h GNUstep/System/Library/Headers/Foundation/NSValueTransformer.h GNUstep/System/Library/Headers/Foundation/NSXMLDTD.h GNUstep/System/Library/Headers/Foundation/NSXMLDTDNode.h GNUstep/System/Library/Headers/Foundation/NSXMLDocument.h GNUstep/System/Library/Headers/Foundation/NSXMLElement.h GNUstep/System/Library/Headers/Foundation/NSXMLNode.h GNUstep/System/Library/Headers/Foundation/NSXMLNodeOptions.h GNUstep/System/Library/Headers/Foundation/NSXMLParser.h GNUstep/System/Library/Headers/Foundation/NSZone.h GNUstep/System/Library/Headers/GNUstepBase/Additions.h GNUstep/System/Library/Headers/GNUstepBase/GCObject.h GNUstep/System/Library/Headers/GNUstepBase/GNUstep.h GNUstep/System/Library/Headers/GNUstepBase/GSBlocks.h GNUstep/System/Library/Headers/GNUstepBase/GSConfig.h GNUstep/System/Library/Headers/GNUstepBase/GSFunctions.h GNUstep/System/Library/Headers/GNUstepBase/GSIArray.h GNUstep/System/Library/Headers/GNUstepBase/GSIMap.h GNUstep/System/Library/Headers/GNUstepBase/GSLocale.h GNUstep/System/Library/Headers/GNUstepBase/GSLock.h GNUstep/System/Library/Headers/GNUstepBase/GSMime.h -GNUstep/System/Library/Headers/GNUstepBase/NSNetServices+GNUstepBase.h GNUstep/System/Library/Headers/GNUstepBase/GSObjCRuntime.h GNUstep/System/Library/Headers/GNUstepBase/GSUnion.h GNUstep/System/Library/Headers/GNUstepBase/GSVersionMacros.h GNUstep/System/Library/Headers/GNUstepBase/GSXML.h GNUstep/System/Library/Headers/GNUstepBase/NSArray+GNUstepBase.h GNUstep/System/Library/Headers/GNUstepBase/NSAttributedString+GNUstepBase.h GNUstep/System/Library/Headers/GNUstepBase/NSBundle+GNUstepBase.h GNUstep/System/Library/Headers/GNUstepBase/NSCalendarDate+GNUstepBase.h GNUstep/System/Library/Headers/GNUstepBase/NSData+GNUstepBase.h GNUstep/System/Library/Headers/GNUstepBase/NSDebug+GNUstepBase.h GNUstep/System/Library/Headers/GNUstepBase/NSFileHandle+GNUstepBase.h GNUstep/System/Library/Headers/GNUstepBase/NSLock+GNUstepBase.h GNUstep/System/Library/Headers/GNUstepBase/NSMutableString+GNUstepBase.h +GNUstep/System/Library/Headers/GNUstepBase/NSNetServices+GNUstepBase.h GNUstep/System/Library/Headers/GNUstepBase/NSNumber+GNUstepBase.h GNUstep/System/Library/Headers/GNUstepBase/NSObject+GNUstepBase.h GNUstep/System/Library/Headers/GNUstepBase/NSProcessInfo+GNUstepBase.h GNUstep/System/Library/Headers/GNUstepBase/NSStream+GNUstepBase.h GNUstep/System/Library/Headers/GNUstepBase/NSString+GNUstepBase.h GNUstep/System/Library/Headers/GNUstepBase/NSTask+GNUstepBase.h GNUstep/System/Library/Headers/GNUstepBase/NSThread+GNUstepBase.h GNUstep/System/Library/Headers/GNUstepBase/NSURL+GNUstepBase.h GNUstep/System/Library/Headers/GNUstepBase/Unicode.h GNUstep/System/Library/Headers/gnustep/unicode/caseconv.h GNUstep/System/Library/Headers/gnustep/unicode/cop.h GNUstep/System/Library/Headers/gnustep/unicode/cyrillic.h GNUstep/System/Library/Headers/gnustep/unicode/decomp.h GNUstep/System/Library/Headers/gnustep/unicode/latin2.h GNUstep/System/Library/Headers/gnustep/unicode/nextstep.h GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/English.lproj/Localizable.strings GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/Esperanto.lproj/Localizable.strings GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/French.lproj/Localizable.strings +GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/GSTLS/ca-certificates.crt GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/German.lproj/Localizable.strings GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/Info-gnustep.plist GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/Italian.lproj/Localizable.strings GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/Korean.lproj/Localizable.strings GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/Languages/Dutch GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/Languages/English GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/Languages/Esperanto GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/Languages/French GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/Languages/German GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/Languages/Hungarian GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/Languages/Italian GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/Languages/Korean GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/Languages/Locale.aliases GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/Languages/Locale.canonical GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/Languages/Locale.encodings GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/Languages/Russian GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/Languages/Slovak GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/Languages/Spanish GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/Languages/TraditionalChinese GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/Languages/Ukrainian GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/GNUmakefile GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/GNUstep_zones GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/README GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/abbreviations GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/abbreviations.plist GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/create-abbrevs.m GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/create-regions.m GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/nstimezone.m -GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/GSTLS/ca-certificates.crt -GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Creston -GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Khandyga -GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Ust-Nera -GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Busingen GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/regions GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Abidjan GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Accra GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Addis_Ababa GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Algiers GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Asmara GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Asmera GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Bamako GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Bangui GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Banjul GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Bissau GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Blantyre GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Brazzaville GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Bujumbura GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Cairo GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Casablanca GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Ceuta GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Conakry GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Dakar GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Dar_es_Salaam GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Djibouti GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Douala GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/El_Aaiun GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Freetown GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Gaborone GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Harare GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Johannesburg GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Juba GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Kampala GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Khartoum GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Kigali GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Kinshasa GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Lagos GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Libreville GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Lome GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Luanda GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Lubumbashi GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Lusaka GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Malabo GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Maputo GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Maseru GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Mbabane GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Mogadishu GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Monrovia GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Nairobi GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Ndjamena GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Niamey GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Nouakchott GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Ouagadougou GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Porto-Novo GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Sao_Tome GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Timbuktu GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Tripoli GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Tunis GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Windhoek GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Adak GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Anchorage GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Anguilla GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Antigua GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Araguaina GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Argentina/Buenos_Aires GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Argentina/Catamarca GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Argentina/ComodRivadavia GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Argentina/Cordoba GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Argentina/Jujuy GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Argentina/La_Rioja GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Argentina/Mendoza GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Argentina/Rio_Gallegos -GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Argentina/San_Juan GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Argentina/Salta +GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Argentina/San_Juan GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Argentina/San_Luis GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Argentina/Tucuman GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Argentina/Ushuaia GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Aruba GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Asuncion GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Atikokan GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Atka GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Bahia GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Bahia_Banderas GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Barbados GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Belem GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Belize GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Blanc-Sablon GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Boa_Vista GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Bogota GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Boise GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Buenos_Aires GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Cambridge_Bay GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Campo_Grande GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Cancun GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Caracas GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Catamarca GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Cayenne GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Cayman GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Chicago GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Chihuahua GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Coral_Harbour GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Cordoba GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Costa_Rica +GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Creston GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Cuiaba GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Curacao GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Danmarkshavn GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Dawson GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Dawson_Creek GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Denver GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Detroit GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Dominica GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Edmonton GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Eirunepe GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/El_Salvador GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Ensenada GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Fort_Wayne GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Fortaleza GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Glace_Bay GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Godthab GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Goose_Bay GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Grand_Turk GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Grenada GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Guadeloupe GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Guatemala GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Guayaquil GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Guyana GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Halifax GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Havana GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Hermosillo GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Indiana/Indianapolis GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Indiana/Knox GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Indiana/Marengo GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Indiana/Petersburg GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Indiana/Tell_City GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Indiana/Vevay GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Indiana/Vincennes GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Indiana/Winamac GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Indianapolis GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Inuvik GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Iqaluit GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Jamaica GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Jujuy GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Juneau GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Kentucky/Louisville GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Kentucky/Monticello GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Knox_IN GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Kralendijk GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/La_Paz GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Lima GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Los_Angeles GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Louisville GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Lower_Princes GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Maceio GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Managua GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Manaus GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Marigot GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Martinique GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Matamoros GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Mazatlan GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Mendoza GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Menominee GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Merida GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Metlakatla GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Mexico_City GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Miquelon GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Moncton GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Monterrey GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Montevideo GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Montreal GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Montserrat GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Nassau GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/New_York GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Nipigon GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Nome GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Noronha GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/North_Dakota/Beulah GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/North_Dakota/Center GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/North_Dakota/New_Salem -GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Panama GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Ojinaga +GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Panama GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Pangnirtung GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Paramaribo GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Phoenix GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Port-au-Prince GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Port_of_Spain GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Porto_Acre GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Porto_Velho GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Puerto_Rico GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Rainy_River GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Rankin_Inlet GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Recife GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Regina GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Resolute GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Rio_Branco GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Rosario GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Santa_Isabel GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Santarem GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Santiago GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Santo_Domingo GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Sao_Paulo GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Scoresbysund GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Shiprock GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Sitka GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/St_Barthelemy GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/St_Johns GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/St_Kitts GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/St_Lucia GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/St_Thomas GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/St_Vincent GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Swift_Current GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Tegucigalpa GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Thule GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Thunder_Bay GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Tijuana GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Toronto GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Tortola GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Vancouver GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Virgin GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Whitehorse GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Winnipeg GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Yakutat GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Yellowknife GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/Casey GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/Davis GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/DumontDUrville -GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/Mawson GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/Macquarie +GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/Mawson GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/McMurdo GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/Palmer GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/Rothera GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/South_Pole GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/Syowa +GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/Troll GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/Vostok GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Arctic/Longyearbyen GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Aden GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Almaty GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Amman GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Anadyr GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Aqtau GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Aqtobe GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Ashgabat GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Ashkhabad GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Baghdad GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Bahrain GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Baku GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Bangkok GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Beirut GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Bishkek GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Brunei GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Calcutta +GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Chita GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Choibalsan GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Chongqing GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Chungking GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Colombo GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Dacca GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Damascus GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Dhaka GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Dili GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Dubai GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Dushanbe GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Gaza GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Harbin GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Hebron GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Ho_Chi_Minh GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Hong_Kong GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Hovd GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Irkutsk GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Istanbul GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Jakarta GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Jayapura GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Jerusalem GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Kabul GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Kamchatka GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Karachi GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Kashgar GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Kathmandu GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Katmandu +GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Khandyga GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Kolkata GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Krasnoyarsk GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Kuala_Lumpur GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Kuching GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Kuwait GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Macao GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Macau GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Magadan GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Makassar GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Manila GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Muscat GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Nicosia GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Novokuznetsk GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Novosibirsk GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Omsk GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Oral GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Phnom_Penh GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Pontianak GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Pyongyang GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Qatar GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Qyzylorda GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Rangoon GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Riyadh -GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Riyadh87 -GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Riyadh88 -GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Riyadh89 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Saigon GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Sakhalin GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Samarkand GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Seoul GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Shanghai GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Singapore +GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Srednekolymsk GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Taipei GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Tashkent GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Tbilisi GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Tehran GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Tel_Aviv GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Thimbu GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Thimphu GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Tokyo GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Ujung_Pandang GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Ulaanbaatar GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Ulan_Bator GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Urumqi +GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Ust-Nera GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Vientiane GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Vladivostok GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Yakutsk GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Yekaterinburg GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Yerevan GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Atlantic/Azores GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Atlantic/Bermuda GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Atlantic/Canary GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Atlantic/Cape_Verde GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Atlantic/Faeroe GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Atlantic/Faroe GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Atlantic/Jan_Mayen GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Atlantic/Madeira GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Atlantic/Reykjavik GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Atlantic/South_Georgia GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Atlantic/St_Helena GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Atlantic/Stanley GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Australia/ACT GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Australia/Adelaide GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Australia/Brisbane GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Australia/Broken_Hill GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Australia/Canberra GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Australia/Currie GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Australia/Darwin GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Australia/Eucla GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Australia/Hobart GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Australia/LHI GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Australia/Lindeman GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Australia/Lord_Howe GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Australia/Melbourne GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Australia/NSW GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Australia/North GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Australia/Perth GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Australia/Queensland GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Australia/South GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Australia/Sydney GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Australia/Tasmania GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Australia/Victoria GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Australia/West GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Australia/Yancowinna GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Brazil/Acre GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Brazil/DeNoronha GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Brazil/East GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Brazil/West GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/CET GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/CST6CDT GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Canada/Atlantic GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Canada/Central GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Canada/East-Saskatchewan GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Canada/Eastern GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Canada/Mountain GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Canada/Newfoundland GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Canada/Pacific GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Canada/Saskatchewan GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Canada/Yukon GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Chile/Continental GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Chile/EasterIsland GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Cuba GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/EET GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/EST GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/EST5EDT GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Egypt GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Eire GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT+0 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT+1 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT+10 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT+11 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT+12 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT+2 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT+3 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT+4 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT+5 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT+6 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT+7 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT+8 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT+9 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT-0 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT-1 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT-10 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT-11 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT-12 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT-13 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT-14 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT-2 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT-3 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT-4 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT-5 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT-6 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT-7 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT-8 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT-9 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/GMT0 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/Greenwich GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/UCT GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/UTC GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/Universal GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Etc/Zulu GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Amsterdam GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Andorra GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Athens GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Belfast GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Belgrade GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Berlin GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Bratislava GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Brussels GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Bucharest GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Budapest +GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Busingen GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Chisinau GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Copenhagen GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Dublin GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Gibraltar GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Guernsey GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Helsinki GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Isle_of_Man GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Istanbul GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Jersey GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Kaliningrad GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Kiev GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Lisbon GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Ljubljana GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/London GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Luxembourg GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Madrid GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Malta GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Mariehamn GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Minsk GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Monaco GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Moscow GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Nicosia GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Oslo GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Paris GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Podgorica GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Prague GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Riga GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Rome GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Samara GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/San_Marino GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Sarajevo GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Simferopol GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Skopje GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Sofia GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Stockholm GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Tallinn GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Tirane GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Tiraspol GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Uzhgorod GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Vaduz GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Vatican GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Vienna GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Vilnius GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Volgograd GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Warsaw GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Zagreb GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Zaporozhye GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Zurich GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GB GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GB-Eire GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT+0 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT+1 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT+10 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT+11 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT+12 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT+13 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT+14 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT+2 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT+3 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT+4 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT+5 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT+6 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT+7 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT+8 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT+9 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT-0 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT-1 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT-10 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT-11 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT-12 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT-13 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT-14 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT-2 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT-3 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT-4 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT-5 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT-6 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT-7 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT-8 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT-9 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/GMT0 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Greenwich GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/HST GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Hongkong GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Iceland GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Indian/Antananarivo GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Indian/Chagos GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Indian/Christmas GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Indian/Cocos GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Indian/Comoro GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Indian/Kerguelen GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Indian/Mahe GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Indian/Maldives GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Indian/Mauritius GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Indian/Mayotte GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Indian/Reunion GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Iran GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Israel GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Jamaica GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Japan GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Kwajalein GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Libya GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/MET GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/MST GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/MST7MDT GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Mexico/BajaNorte GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Mexico/BajaSur GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Mexico/General -GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Mideast/Riyadh87 -GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Mideast/Riyadh88 -GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Mideast/Riyadh89 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/NZ GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/NZ-CHAT GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Navajo GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/PRC GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/PST8PDT GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Apia GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Auckland +GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Bougainville GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Chatham GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Chuuk GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Easter GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Efate GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Enderbury GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Fakaofo GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Fiji GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Funafuti GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Galapagos GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Gambier GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Guadalcanal GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Guam GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Honolulu GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Johnston GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Kiritimati GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Kosrae GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Kwajalein GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Majuro GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Marquesas GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Midway GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Nauru GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Niue GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Norfolk GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Noumea GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Pago_Pago GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Palau GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Pitcairn GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Pohnpei GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Ponape GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Port_Moresby GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Rarotonga GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Saipan GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Samoa GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Tahiti GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Tarawa GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Tongatapu GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Truk GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Wake GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Wallis GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Pacific/Yap GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Poland GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Portugal GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/ROC GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/ROK GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Singapore GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Turkey GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/UCT GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/US/Alaska GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/US/Aleutian GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/US/Arizona GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/US/Central GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/US/East-Indiana GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/US/Eastern GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/US/Hawaii GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/US/Indiana-Starke GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/US/Michigan GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/US/Mountain GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/US/Pacific GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/US/Pacific-New GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/US/Samoa GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/UTC GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Universal GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/W-SU GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/WET GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Zulu GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/Localizable.strings GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/TraditionalChinese.lproj/Localizable.strings GNUstep/System/Library/Libraries/libgnustep-base.so GNUstep/System/Library/Libraries/libgnustep-base.so.%%BASEVERSION%% GNUstep/System/Library/Libraries/libgnustep-base.so.%%VERSION%% GNUstep/System/Library/Makefiles/Additional/base.make GNUstep/System/Tools/HTMLLinker GNUstep/System/Tools/autogsdoc GNUstep/System/Tools/cvtenc GNUstep/System/Tools/defaults GNUstep/System/Tools/gdnc GNUstep/System/Tools/gdomap GNUstep/System/Tools/gspath GNUstep/System/Tools/make_strings GNUstep/System/Tools/pl GNUstep/System/Tools/pl2link GNUstep/System/Tools/pldes GNUstep/System/Tools/plget GNUstep/System/Tools/plmerge GNUstep/System/Tools/plparse GNUstep/System/Tools/plser GNUstep/System/Tools/sfparse GNUstep/System/Tools/xmlparse etc/gdomap_if Index: head/lang/libobjc2/files/patch-arc.m =================================================================== --- head/lang/libobjc2/files/patch-arc.m (revision 391061) +++ head/lang/libobjc2/files/patch-arc.m (nonexistent) @@ -1,30 +0,0 @@ ---- ./arc.m.orig 2013-03-12 08:51:59.000000000 +0000 -+++ ./arc.m 2014-01-13 15:04:54.000000000 +0000 -@@ -219,15 +219,18 @@ - } - else - { -- [AutoreleasePool class]; -- useARCAutoreleasePool = class_respondsToSelector(AutoreleasePool, -- SELECTOR(_ARCCompatibleAutoreleasePool)); -- NewAutoreleasePool = class_getMethodImplementation(object_getClass(AutoreleasePool), -- SELECTOR(new)); -- DeleteAutoreleasePool = class_getMethodImplementation(AutoreleasePool, -- SELECTOR(release)); -- AutoreleaseAdd = class_getMethodImplementation(object_getClass(AutoreleasePool), -- SELECTOR(addObject:)); -+ useARCAutoreleasePool = (0 != class_getInstanceMethod(AutoreleasePool, -+ SELECTOR(_ARCCompatibleAutoreleasePool))); -+ if (!useARCAutoreleasePool) -+ { -+ [AutoreleasePool class]; -+ NewAutoreleasePool = class_getMethodImplementation(object_getClass(AutoreleasePool), -+ SELECTOR(new)); -+ DeleteAutoreleasePool = class_getMethodImplementation(AutoreleasePool, -+ SELECTOR(release)); -+ AutoreleaseAdd = class_getMethodImplementation(object_getClass(AutoreleasePool), -+ SELECTOR(addObject:)); -+ } - } - } - } Property changes on: head/lang/libobjc2/files/patch-arc.m ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/lang/libobjc2/Makefile =================================================================== --- head/lang/libobjc2/Makefile (revision 391061) +++ head/lang/libobjc2/Makefile (revision 391062) @@ -1,60 +1,51 @@ # Created by: Pete French # $FreeBSD$ PORTNAME= libobjc2 PORTVERSION= 1.7 PORTREVISION= 1 CATEGORIES= lang devel gnustep -MASTER_SITES= http://download.gna.org/gnustep/ +USE_GITHUB= yes +GH_ACCOUNT= gnustep +GH_PROJECT= libobjc2 +GH_TAGNAME= 857edd9 MAINTAINER= theraven@FreeBSD.org COMMENT= Replacement Objective-C runtime supporting modern Objective-C features SSP_UNSAFE= yes -USES= cmake tar:bzip2 +USES= cmake objc:compiler BROKEN_powerpc= Does not compile on powerpc: Unsupported relocation type 10 .include - -_CLANG!= if [ -f /usr/bin/clang ] ; then /usr/bin/clang --version | head -1 | \ - ${SED} -e 's/.*clang version \([0-9]\)\.\([0-9]\).*/\1\2/' ; else ${ECHO} 0 ; fi - -.if ${_CLANG} < 34 -BUILD_DEPENDS+= ${LOCALBASE}/bin/clang34:${PORTSDIR}/lang/clang34 -CC= ${LOCALBASE}/bin/clang34 -CXX= ${LOCALBASE}/bin/clang++34 -.else -CC= /usr/bin/clang -CXX= /usr/bin/clang++ -.endif SHLIB_MAJOR= 4 SHLIB_MINOR= 6 PLIST_SUB+= SHLIB_MAJOR=${SHLIB_MAJOR} SHLIB_MINOR=${SHLIB_MINOR} .if ${OSVERSION} < 902000 CMAKE_ARGS+= -DFORCE_LIBOBJCXX=ON PLIST_SUB+= WITH_SEPARATECXX="" .else PLIST_SUB+= WITH_SEPARATECXX="@comment " .endif CMAKE_ARGS+= -DLIB_INSTALL_PATH=lib CMAKE_ARGS+= -DTESTS=OFF # This shouldn't be needed, but our llvm port installs llvm-config with a silly # name... CMAKE_ARGS+= -DLLVM_OPTS=OFF .if ${OSVERSION} < 902000 post-install: ${LN} -sf libobjc.so.${SHLIB_MAJOR}.${SHLIB_MINOR} ${STAGEDIR}${PREFIX}/lib/libobjc.so.${SHLIB_MAJOR} ${LN} -sf libobjcxx.so.${SHLIB_MAJOR}.${SHLIB_MINOR} ${STAGEDIR}${PREFIX}/lib/libobjcxx.so.${SHLIB_MAJOR} .else post-install: ${LN} -sf libobjc.so.${SHLIB_MAJOR}.${SHLIB_MINOR} ${STAGEDIR}${PREFIX}/lib/libobjc.so.${SHLIB_MAJOR} .endif .include Index: head/lang/libobjc2/distinfo =================================================================== --- head/lang/libobjc2/distinfo (revision 391061) +++ head/lang/libobjc2/distinfo (revision 391062) @@ -1,2 +1,2 @@ -SHA256 (libobjc2-1.7.tar.bz2) = 3a1b4af6ff6f3d8e57bfb27401d1b249670ac2e92ba54ad5683ff3d4439d3cc1 -SIZE (libobjc2-1.7.tar.bz2) = 132662 +SHA256 (gnustep-libobjc2-1.7-857edd9_GH0.tar.gz) = c69add3a57465d56e406b4307d6e734232a13a31336cdfefebe3c29abb9d25e8 +SIZE (gnustep-libobjc2-1.7-857edd9_GH0.tar.gz) = 173442 Index: head/mail/gnumail/Makefile =================================================================== --- head/mail/gnumail/Makefile (revision 391061) +++ head/mail/gnumail/Makefile (revision 391062) @@ -1,25 +1,24 @@ # Created by: Thomas Gellekum # $FreeBSD$ PORTNAME= gnumail -PORTVERSION= 1.2.0 -PORTREVISION= 6 +PORTVERSION= 1.2.2 CATEGORIES= mail gnustep MASTER_SITES= http://download.gna.org/gnustep-nonfsf/ DISTNAME= GNUMail-${PORTVERSION} MAINTAINER= theraven@FreeBSD.org COMMENT= GNUstep mail client LICENSE= GPLv2 USES= cpe gnustep CPE_VENDOR= gnu USE_GNUSTEP= back build LIB_DEPENDS= libPantomime.so:${PORTSDIR}/mail/pantomime \ libAddresses.so:${PORTSDIR}/mail/addresses USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} MAKE_ENV+= GNUSTEP_INSTALLATION_DIR=${GNUSTEP_LOCAL_ROOT} .include Index: head/mail/gnumail/distinfo =================================================================== --- head/mail/gnumail/distinfo (revision 391061) +++ head/mail/gnumail/distinfo (revision 391062) @@ -1,2 +1,2 @@ -SHA256 (GNUMail-1.2.0.tar.gz) = 792512276b253d79362736fb0cb7d614d5a980ea356d03d6adec4d0dd0f6ef2c -SIZE (GNUMail-1.2.0.tar.gz) = 1380032 +SHA256 (GNUMail-1.2.2.tar.gz) = 31a0c34c3afe20afb6b8ebc41002d2f9dbc2134ceda2032e67e64cb7d884d8af +SIZE (GNUMail-1.2.2.tar.gz) = 1397764 Index: head/mail/gnumail/pkg-plist =================================================================== --- head/mail/gnumail/pkg-plist (revision 391061) +++ head/mail/gnumail/pkg-plist (revision 391062) @@ -1,225 +1,261 @@ +@dir GNUstep/Local/Library/Frameworks/GNUMail.framework/Versions/%%MAJORVERSION%%/Headers GNUstep/Local/Applications/GNUMail.app/GNUMail GNUstep/Local/Applications/GNUMail.app/Resources/AddressBook_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/AddressManager_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/Address_bcc.tiff GNUstep/Local/Applications/GNUMail.app/Resources/Address_cc.tiff GNUstep/Local/Applications/GNUMail.app/Resources/Address_to.tiff GNUstep/Local/Applications/GNUMail.app/Resources/Arabic.lproj/Localizable.strings GNUstep/Local/Applications/GNUMail.app/Resources/Czech.lproj/Localizable.strings GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/AboutPanel.nib/classes.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/AboutPanel.nib/info.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/AboutPanel.nib/keyedobjects.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/AboutPanel.nib/objects.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/AddressBookPanel.nib/classes.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/AddressBookPanel.nib/info.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/AddressBookPanel.nib/keyedobjects.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/ConsoleWindow.nib/classes.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/ConsoleWindow.nib/info.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/ConsoleWindow.nib/keyedobjects.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/ConsoleWindow.nib/objects.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/EditWindow.nib/classes.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/EditWindow.nib/info.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/EditWindow.nib/keyedobjects.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/FindWindow.nib/classes.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/FindWindow.nib/info.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/FindWindow.nib/keyedobjects.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/FindWindow.nib/objects.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/GNUMail.scriptTerminology GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/InfoPlist.strings GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/Localizable.strings GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/MailWindow.nib/classes.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/MailWindow.nib/info.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/MailWindow.nib/keyedobjects.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/MailWindow.nib/objects.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/MailboxInspectorPanel.nib/classes.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/MailboxInspectorPanel.nib/info.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/MailboxInspectorPanel.nib/keyedobjects.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/MainMenu.nib/classes.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/MainMenu.nib/info.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/MainMenu.nib/keyedobjects.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/MainMenu.nib/objects.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/MessageViewWindow.nib/classes.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/MessageViewWindow.nib/info.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/MessageViewWindow.nib/keyedobjects.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/MessageViewWindow.nib/objects.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/NewMailboxPanel.nib/classes.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/NewMailboxPanel.nib/info.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/NewMailboxPanel.nib/keyedobjects.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/NewMailboxPanel.nib/objects.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/PasswordPanel.nib/classes.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/PasswordPanel.nib/info.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/PasswordPanel.nib/objects.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/PreferencesWindow.nib/classes.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/PreferencesWindow.nib/info.nib GNUstep/Local/Applications/GNUMail.app/Resources/English.lproj/PreferencesWindow.nib/keyedobjects.nib GNUstep/Local/Applications/GNUMail.app/Resources/French.lproj/Localizable.strings GNUstep/Local/Applications/GNUMail.app/Resources/GNUMail.desktop GNUstep/Local/Applications/GNUMail.app/Resources/GNUMail.tiff GNUstep/Local/Applications/GNUMail.app/Resources/GNUMail_128.tiff GNUstep/Local/Applications/GNUMail.app/Resources/GNUMail_Full.tiff GNUstep/Local/Applications/GNUMail.app/Resources/GNUMail_big.tiff GNUstep/Local/Applications/GNUMail.app/Resources/German.lproj/Localizable.strings GNUstep/Local/Applications/GNUMail.app/Resources/Info-gnustep.plist GNUstep/Local/Applications/GNUMail.app/Resources/Resources/Arabic.lproj/Localizable.strings GNUstep/Local/Applications/GNUMail.app/Resources/Resources/Czech.lproj/Localizable.strings GNUstep/Local/Applications/GNUMail.app/Resources/Resources/English.lproj/Localizable.strings GNUstep/Local/Applications/GNUMail.app/Resources/Resources/French.lproj/Localizable.strings GNUstep/Local/Applications/GNUMail.app/Resources/Resources/German.lproj/Localizable.strings GNUstep/Local/Applications/GNUMail.app/Resources/Resources/Russian.lproj/Localizable.strings GNUstep/Local/Applications/GNUMail.app/Resources/Resources/Spanish.lproj/Localizable.strings GNUstep/Local/Applications/GNUMail.app/Resources/Resources/Swedish.lproj/Localizable.strings GNUstep/Local/Applications/GNUMail.app/Resources/Resources/Turkish.lproj/Localizable.strings GNUstep/Local/Applications/GNUMail.app/Resources/Russian.lproj/Localizable.strings GNUstep/Local/Applications/GNUMail.app/Resources/ScriptingInfo.plist GNUstep/Local/Applications/GNUMail.app/Resources/Spanish.lproj/Localizable.strings GNUstep/Local/Applications/GNUMail.app/Resources/Swedish.lproj/Localizable.strings GNUstep/Local/Applications/GNUMail.app/Resources/Turkish.lproj/Localizable.strings GNUstep/Local/Applications/GNUMail.app/Resources/Welcome GNUstep/Local/Applications/GNUMail.app/Resources/add.tiff GNUstep/Local/Applications/GNUMail.app/Resources/add_bcc_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/add_bcc_48.tiff GNUstep/Local/Applications/GNUMail.app/Resources/add_cc_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/add_cc_48.tiff GNUstep/Local/Applications/GNUMail.app/Resources/addresses_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/addresses_48.tiff GNUstep/Local/Applications/GNUMail.app/Resources/anim-logo-1.tiff GNUstep/Local/Applications/GNUMail.app/Resources/anim-logo-2.tiff GNUstep/Local/Applications/GNUMail.app/Resources/anim-logo-3.tiff GNUstep/Local/Applications/GNUMail.app/Resources/anim-logo-4.tiff GNUstep/Local/Applications/GNUMail.app/Resources/anim-logo-5.tiff GNUstep/Local/Applications/GNUMail.app/Resources/anim-logo-6.tiff GNUstep/Local/Applications/GNUMail.app/Resources/anim-logo-7.tiff GNUstep/Local/Applications/GNUMail.app/Resources/anim-logo-8.tiff GNUstep/Local/Applications/GNUMail.app/Resources/answered-flag.tiff GNUstep/Local/Applications/GNUMail.app/Resources/attach_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/attach_48.tiff GNUstep/Local/Applications/GNUMail.app/Resources/common_Unknown.tiff GNUstep/Local/Applications/GNUMail.app/Resources/create_12.tiff GNUstep/Local/Applications/GNUMail.app/Resources/create_16.tiff GNUstep/Local/Applications/GNUMail.app/Resources/create_20.tiff GNUstep/Local/Applications/GNUMail.app/Resources/create_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/create_48.tiff GNUstep/Local/Applications/GNUMail.app/Resources/delete_20.tiff GNUstep/Local/Applications/GNUMail.app/Resources/delete_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/delete_48.tiff GNUstep/Local/Applications/GNUMail.app/Resources/down_15.tiff GNUstep/Local/Applications/GNUMail.app/Resources/drafts_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/drafts_48.tiff GNUstep/Local/Applications/GNUMail.app/Resources/drag_mail.tiff GNUstep/Local/Applications/GNUMail.app/Resources/drag_mails.tiff GNUstep/Local/Applications/GNUMail.app/Resources/duplicate.tiff GNUstep/Local/Applications/GNUMail.app/Resources/edit.tiff GNUstep/Local/Applications/GNUMail.app/Resources/find_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/find_48.tiff GNUstep/Local/Applications/GNUMail.app/Resources/flagged-flag.tiff GNUstep/Local/Applications/GNUMail.app/Resources/folder_12.tiff GNUstep/Local/Applications/GNUMail.app/Resources/folder_16.tiff GNUstep/Local/Applications/GNUMail.app/Resources/folder_20.tiff GNUstep/Local/Applications/GNUMail.app/Resources/forward_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/forward_48.tiff GNUstep/Local/Applications/GNUMail.app/Resources/hand.tiff GNUstep/Local/Applications/GNUMail.app/Resources/headers_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/headers_48.tiff GNUstep/Local/Applications/GNUMail.app/Resources/mailbox_add_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/mailbox_rename_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/mailboxes_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/mailboxes_48.tiff GNUstep/Local/Applications/GNUMail.app/Resources/pgp-mail-small.tiff GNUstep/Local/Applications/GNUMail.app/Resources/pgp-mail.tiff GNUstep/Local/Applications/GNUMail.app/Resources/print_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/print_48.tiff GNUstep/Local/Applications/GNUMail.app/Resources/raw_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/raw_48.tiff GNUstep/Local/Applications/GNUMail.app/Resources/recent-flag.tiff GNUstep/Local/Applications/GNUMail.app/Resources/remove_bcc_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/remove_bcc_48.tiff GNUstep/Local/Applications/GNUMail.app/Resources/remove_cc_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/remove_cc_48.tiff GNUstep/Local/Applications/GNUMail.app/Resources/reply_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/reply_48.tiff GNUstep/Local/Applications/GNUMail.app/Resources/restart_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/retrieve_12.tiff GNUstep/Local/Applications/GNUMail.app/Resources/retrieve_16.tiff GNUstep/Local/Applications/GNUMail.app/Resources/retrieve_20.tiff GNUstep/Local/Applications/GNUMail.app/Resources/retrieve_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/retrieve_48.tiff GNUstep/Local/Applications/GNUMail.app/Resources/send_12.tiff GNUstep/Local/Applications/GNUMail.app/Resources/send_16.tiff GNUstep/Local/Applications/GNUMail.app/Resources/send_20.tiff GNUstep/Local/Applications/GNUMail.app/Resources/send_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/send_48.tiff GNUstep/Local/Applications/GNUMail.app/Resources/show_all_headers_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/show_all_headers_48.tiff GNUstep/Local/Applications/GNUMail.app/Resources/sort_down.tiff GNUstep/Local/Applications/GNUMail.app/Resources/sort_left.tiff GNUstep/Local/Applications/GNUMail.app/Resources/sort_right.tiff GNUstep/Local/Applications/GNUMail.app/Resources/sort_up.tiff GNUstep/Local/Applications/GNUMail.app/Resources/stop_32.tiff GNUstep/Local/Applications/GNUMail.app/Resources/trash_12.tiff GNUstep/Local/Applications/GNUMail.app/Resources/trash_16.tiff GNUstep/Local/Applications/GNUMail.app/Resources/trash_20.tiff GNUstep/Local/Applications/GNUMail.app/Resources/up_15.tiff GNUstep/Local/Applications/GNUMail.app/stamp.make GNUstep/Local/Library/ApplicationSupport/GNUMail/Account.prefs/Account GNUstep/Local/Library/ApplicationSupport/GNUMail/Account.prefs/Resources/Info-gnustep.plist GNUstep/Local/Library/ApplicationSupport/GNUMail/Account.prefs/Resources/account.tiff GNUstep/Local/Library/ApplicationSupport/GNUMail/Account.prefs/stamp.make GNUstep/Local/Library/ApplicationSupport/GNUMail/Advanced.prefs/Advanced GNUstep/Local/Library/ApplicationSupport/GNUMail/Advanced.prefs/Resources/Info-gnustep.plist GNUstep/Local/Library/ApplicationSupport/GNUMail/Advanced.prefs/Resources/advanced.tiff GNUstep/Local/Library/ApplicationSupport/GNUMail/Advanced.prefs/stamp.make GNUstep/Local/Library/ApplicationSupport/GNUMail/Colors.prefs/Colors GNUstep/Local/Library/ApplicationSupport/GNUMail/Colors.prefs/Resources/Info-gnustep.plist GNUstep/Local/Library/ApplicationSupport/GNUMail/Colors.prefs/Resources/colors.tiff GNUstep/Local/Library/ApplicationSupport/GNUMail/Colors.prefs/stamp.make GNUstep/Local/Library/ApplicationSupport/GNUMail/Compose.prefs/Compose GNUstep/Local/Library/ApplicationSupport/GNUMail/Compose.prefs/Resources/Info-gnustep.plist GNUstep/Local/Library/ApplicationSupport/GNUMail/Compose.prefs/Resources/MailIcon_create.tiff GNUstep/Local/Library/ApplicationSupport/GNUMail/Compose.prefs/stamp.make +GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Emoticon +GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/Info-gnustep.plist +GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face1.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face10.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face11.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face13.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face14.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face15.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face19.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face2.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face3.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face4.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face5.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face6.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face8.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face9.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/stamp.make +GNUstep/Local/Library/ApplicationSupport/GNUMail/Face.bundle/Face +GNUstep/Local/Library/ApplicationSupport/GNUMail/Face.bundle/Resources/Info-gnustep.plist +GNUstep/Local/Library/ApplicationSupport/GNUMail/Face.bundle/Resources/stamp.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/Face.bundle/stamp.make GNUstep/Local/Library/ApplicationSupport/GNUMail/Filtering.prefs/Filtering GNUstep/Local/Library/ApplicationSupport/GNUMail/Filtering.prefs/Resources/Filtering.tiff GNUstep/Local/Library/ApplicationSupport/GNUMail/Filtering.prefs/Resources/Info-gnustep.plist GNUstep/Local/Library/ApplicationSupport/GNUMail/Filtering.prefs/stamp.make GNUstep/Local/Library/ApplicationSupport/GNUMail/Fonts.prefs/Fonts GNUstep/Local/Library/ApplicationSupport/GNUMail/Fonts.prefs/Resources/Info-gnustep.plist GNUstep/Local/Library/ApplicationSupport/GNUMail/Fonts.prefs/Resources/fonts.tiff GNUstep/Local/Library/ApplicationSupport/GNUMail/Fonts.prefs/stamp.make GNUstep/Local/Library/ApplicationSupport/GNUMail/Import.bundle/Import GNUstep/Local/Library/ApplicationSupport/GNUMail/Import.bundle/Resources/Info-gnustep.plist GNUstep/Local/Library/ApplicationSupport/GNUMail/Import.bundle/stamp.make GNUstep/Local/Library/ApplicationSupport/GNUMail/MIME.prefs/MIME GNUstep/Local/Library/ApplicationSupport/GNUMail/MIME.prefs/Resources/Info-gnustep.plist GNUstep/Local/Library/ApplicationSupport/GNUMail/MIME.prefs/Resources/mime.tiff GNUstep/Local/Library/ApplicationSupport/GNUMail/MIME.prefs/stamp.make +GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/PGP +GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/Info-gnustep.plist +GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/clear_20.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/clear_48.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/encrypted_20.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/encrypted_48.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/encrypted_80.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/pgp-mail.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/signed+encrypted_80.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/signed_20.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/signed_48.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/signed_80.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/unsigned_20.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/unsigned_48.tiff +GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/stamp.make GNUstep/Local/Library/ApplicationSupport/GNUMail/Receiving.prefs/Receiving GNUstep/Local/Library/ApplicationSupport/GNUMail/Receiving.prefs/Resources/Info-gnustep.plist GNUstep/Local/Library/ApplicationSupport/GNUMail/Receiving.prefs/Resources/MailIcon_retrieve.tiff GNUstep/Local/Library/ApplicationSupport/GNUMail/Receiving.prefs/stamp.make GNUstep/Local/Library/ApplicationSupport/GNUMail/Sending.prefs/Resources/Info-gnustep.plist GNUstep/Local/Library/ApplicationSupport/GNUMail/Sending.prefs/Resources/MailIcon_send.tiff GNUstep/Local/Library/ApplicationSupport/GNUMail/Sending.prefs/Sending GNUstep/Local/Library/ApplicationSupport/GNUMail/Sending.prefs/stamp.make GNUstep/Local/Library/ApplicationSupport/GNUMail/Viewing.prefs/Resources/3-pane_96x96.tiff GNUstep/Local/Library/ApplicationSupport/GNUMail/Viewing.prefs/Resources/Info-gnustep.plist GNUstep/Local/Library/ApplicationSupport/GNUMail/Viewing.prefs/Resources/drawer_96x96.tiff GNUstep/Local/Library/ApplicationSupport/GNUMail/Viewing.prefs/Resources/floating_96x96.tiff GNUstep/Local/Library/ApplicationSupport/GNUMail/Viewing.prefs/Resources/viewing.tiff GNUstep/Local/Library/ApplicationSupport/GNUMail/Viewing.prefs/Resources/widescreen_96x96.tiff GNUstep/Local/Library/ApplicationSupport/GNUMail/Viewing.prefs/Viewing GNUstep/Local/Library/ApplicationSupport/GNUMail/Viewing.prefs/stamp.make GNUstep/Local/Library/Frameworks/GNUMail.framework/GNUMail GNUstep/Local/Library/Frameworks/GNUMail.framework/Headers GNUstep/Local/Library/Frameworks/GNUMail.framework/Resources GNUstep/Local/Library/Frameworks/GNUMail.framework/Versions/%%MAJORVERSION%%/GNUMail GNUstep/Local/Library/Frameworks/GNUMail.framework/Versions/%%MAJORVERSION%%/Resources/Info-gnustep.plist GNUstep/Local/Library/Frameworks/GNUMail.framework/Versions/%%MAJORVERSION%%/libGNUMail.so GNUstep/Local/Library/Frameworks/GNUMail.framework/Versions/%%MAJORVERSION%%/libGNUMail.so.%%MAJORVERSION%% GNUstep/Local/Library/Frameworks/GNUMail.framework/Versions/%%MAJORVERSION%%/libGNUMail.so.%%VERSION%% GNUstep/Local/Library/Frameworks/GNUMail.framework/Versions/Current GNUstep/Local/Library/Frameworks/GNUMail.framework/libGNUMail.so GNUstep/Local/Library/Headers/GNUMail GNUstep/Local/Library/Libraries/libGNUMail.so GNUstep/Local/Library/Libraries/libGNUMail.so.%%MAJORVERSION%% GNUstep/Local/Library/Libraries/libGNUMail.so.%%VERSION%% GNUstep/Local/Tools/GNUMail -@dir GNUstep/Local/Library/Frameworks/GNUMail.framework/Versions/%%MAJORVERSION%%/Headers Index: head/mail/pantomime/Makefile =================================================================== --- head/mail/pantomime/Makefile (revision 391061) +++ head/mail/pantomime/Makefile (revision 391062) @@ -1,22 +1,26 @@ # Created by: Thomas Gellekum # $FreeBSD$ PORTNAME= pantomime -PORTVERSION= 1.2.0 -PORTREVISION= 6 +PORTVERSION= 1.2.2 CATEGORIES= mail gnustep MASTER_SITES= http://download.gna.org/gnustep-nonfsf/ DISTNAME= Pantomime-${PORTVERSION} MAINTAINER= theraven@FreeBSD.org COMMENT= Mail/MIME handling library for GNUstep LICENSE= LGPL21 -USES= gnustep +# The use of libiconv shouldn't be necessary, but a build dependency installs +# it and we end up picking up the header. +MAKE_ARGS+= LIBRARIES_DEPEND_UPON='${ICONV_LIB} -lssl' +MAKE_ENV+= GNUSTEP_INSTALLATION_DOMAIN=SYSTEM +USES= gnustep iconv +USE_OPENSSL= yes USE_GNUSTEP= back build USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} DEFAULT_LIBVERSION= 1.2 .include Index: head/mail/pantomime/distinfo =================================================================== --- head/mail/pantomime/distinfo (revision 391061) +++ head/mail/pantomime/distinfo (revision 391062) @@ -1,2 +1,2 @@ -SHA256 (Pantomime-1.2.0.tar.gz) = c6484634dd0611d07108e7e006a2c6bdbe3e72b23de7473440df9a559f6b6218 -SIZE (Pantomime-1.2.0.tar.gz) = 466206 +SHA256 (Pantomime-1.2.2.tar.gz) = f87b6b362b56c2b22667e614432f222604e318e61340a13b30c8277b180a3be8 +SIZE (Pantomime-1.2.2.tar.gz) = 468276 Index: head/mail/pantomime/pkg-plist =================================================================== --- head/mail/pantomime/pkg-plist (revision 391061) +++ head/mail/pantomime/pkg-plist (revision 391062) @@ -1,88 +1,88 @@ -GNUstep/Local/Library/Frameworks/Pantomime.framework/Headers -GNUstep/Local/Library/Frameworks/Pantomime.framework/Pantomime -GNUstep/Local/Library/Frameworks/Pantomime.framework/Resources -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWCacheManager.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWCharset.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWConnection.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWConstants.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWContainer.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWDNSManager.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWFlags.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWFolder.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWFolderInformation.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWIMAPCacheManager.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWIMAPFolder.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWIMAPMessage.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWIMAPStore.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_1.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_10.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_11.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_13.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_14.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_15.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_2.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_3.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_4.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_5.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_6.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_7.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_8.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_9.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWInternetAddress.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWKOI8_R.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWKOI8_U.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalCacheManager.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalFolder+maildir.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalFolder+mbox.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalFolder.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalMessage.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalStore.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWMD5.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWMIMEMultipart.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWMIMEUtility.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWMessage.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPOP3CacheManager.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPOP3CacheObject.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPOP3Folder.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPOP3Message.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPOP3Store.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWParser.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPart.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWRegEx.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWSMTP.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWSendmail.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWService.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWStore.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWTCPConnection.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWTransport.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWURLName.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWUUFile.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWVirtualFolder.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWWINDOWS_1250.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWWINDOWS_1251.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWWINDOWS_1252.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWWINDOWS_1253.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWWINDOWS_1254.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/NSData+Extensions.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/NSFileManager+Extensions.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/NSScanner+Extensions.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/NSString+Extensions.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/Pantomime.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/io.h -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Pantomime -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Resources/English.lproj/Localizable.strings -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Resources/English.lproj/InfoPlist.strings -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Resources/German.lproj/InfoPlist.strings -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Resources/German.lproj/Localizable.strings -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Resources/Info-gnustep.plist -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/libPantomime.so -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/libPantomime.so.%%LIBVERSION%% -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/libPantomime.so.%%VERSION%% -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/Current -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/Resources/English.lproj/Localizable.strings -GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/Resources/German.lproj/Localizable.strings -GNUstep/Local/Library/Frameworks/Pantomime.framework/libPantomime.so -GNUstep/Local/Library/Headers/Pantomime -GNUstep/Local/Library/Libraries/libPantomime.so -GNUstep/Local/Library/Libraries/libPantomime.so.%%LIBVERSION%% -GNUstep/Local/Library/Libraries/libPantomime.so.%%VERSION%% +GNUstep/System/Library/Frameworks/Pantomime.framework/Headers +GNUstep/System/Library/Frameworks/Pantomime.framework/Pantomime +GNUstep/System/Library/Frameworks/Pantomime.framework/Resources +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWCacheManager.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWCharset.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWConnection.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWConstants.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWContainer.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWDNSManager.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWFlags.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWFolder.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWFolderInformation.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWIMAPCacheManager.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWIMAPFolder.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWIMAPMessage.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWIMAPStore.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_1.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_10.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_11.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_13.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_14.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_15.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_2.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_3.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_4.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_5.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_6.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_7.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_8.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_9.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWInternetAddress.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWKOI8_R.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWKOI8_U.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalCacheManager.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalFolder+maildir.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalFolder+mbox.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalFolder.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalMessage.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalStore.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWMD5.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWMIMEMultipart.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWMIMEUtility.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWMessage.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPOP3CacheManager.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPOP3CacheObject.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPOP3Folder.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPOP3Message.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPOP3Store.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWParser.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPart.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWRegEx.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWSMTP.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWSendmail.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWService.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWStore.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWTCPConnection.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWTransport.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWURLName.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWUUFile.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWVirtualFolder.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWWINDOWS_1250.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWWINDOWS_1251.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWWINDOWS_1252.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWWINDOWS_1253.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWWINDOWS_1254.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/NSData+Extensions.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/NSFileManager+Extensions.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/NSScanner+Extensions.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/NSString+Extensions.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/Pantomime.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/io.h +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Pantomime +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Resources/English.lproj/Localizable.strings +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Resources/English.lproj/InfoPlist.strings +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Resources/German.lproj/InfoPlist.strings +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Resources/German.lproj/Localizable.strings +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Resources/Info-gnustep.plist +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/libPantomime.so +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/libPantomime.so.%%LIBVERSION%% +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/libPantomime.so.%%VERSION%% +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/Current +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/Resources/English.lproj/Localizable.strings +GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/Resources/German.lproj/Localizable.strings +GNUstep/System/Library/Frameworks/Pantomime.framework/libPantomime.so +GNUstep/System/Library/Headers/Pantomime +GNUstep/System/Library/Libraries/libPantomime.so +GNUstep/System/Library/Libraries/libPantomime.so.%%LIBVERSION%% +GNUstep/System/Library/Libraries/libPantomime.so.%%VERSION%% Index: head/misc/gnustep-examples/Makefile =================================================================== --- head/misc/gnustep-examples/Makefile (revision 391061) +++ head/misc/gnustep-examples/Makefile (revision 391062) @@ -1,28 +1,36 @@ # $FreeBSD$ PORTNAME= gnustep-examples PORTVERSION= 1.4.0 PORTREVISION= 3 CATEGORIES= misc gnustep MASTER_SITES= GNUSTEP/usr-apps MAINTAINER= ports@FreeBSD.org -COMMENT= GNUstep example applications -BROKEN= Not converted to USES=gnustep +USES= gnustep +USE_GNUSTEP= back build -USE_GNUSTEP= yes -USE_GNUSTEP_BACK= yes -USE_GNUSTEP_BUILD= yes -USE_GNUSTEP_INSTALL= yes -USE_GL= yes - WRKSRC= ${WRKDIR}/${DISTNAME} USE_GNUSTEP_MAKE_DIRS+= . gui/Finger gui/GFractal gui/HostAddress gui/MyGL -MAKE_ENV+= GNUSTEP_INSTALLATION_DIR=${GNUSTEP_LOCAL_ROOT} post-patch: ${REINPLACE_CMD} -e 's|^//|#|' \ ${WRKSRC}/gui/GFractal/GNUmakefile + +do-build: +.for i in ${USE_GNUSTEP_MAKE_DIRS} + @(cd ${BUILD_WRKSRC}/${i}; . ${GNUSTEP_MAKEFILES}/GNUstep.sh; \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${ALL_TARGET}) +.endfor + +# --------------------------------------------------------------------------- +# source GNUstep.sh +# +do-install: +.for i in ${USE_GNUSTEP_MAKE_DIRS} + @(cd ${INSTALL_WRKSRC}/${i}; . ${GNUSTEP_MAKEFILES}/GNUstep.sh; \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) +.endfor .include Index: head/x11/terminal.app/Makefile =================================================================== --- head/x11/terminal.app/Makefile (revision 391061) +++ head/x11/terminal.app/Makefile (revision 391062) @@ -1,25 +1,26 @@ # Created by: gurkan@phys.ethz.ch # $FreeBSD$ PORTNAME= terminal.app PORTVERSION= 0.9.8 PORTREVISION= 3 CATEGORIES= x11 gnustep MASTER_SITES= SAVANNAH/gap DISTNAME= Terminal-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Terminal Emulator for GNUstep LICENSE= GPLv2 # only LICENSE_FILE= ${WRKSRC}/COPYING -USES= gnustep +USES= gnustep iconv USE_GNUSTEP= back build +MAKE_ARGS+= Terminal_TOOL_LIBS='${ICONV_LIB} -lutil' MAKE_ENV+= GNUSTEP_INSTALLATION_DOMAIN=SYSTEM post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Terminal.app/Terminal .include Index: head/x11-toolkits/gnustep-back/Makefile =================================================================== --- head/x11-toolkits/gnustep-back/Makefile (revision 391061) +++ head/x11-toolkits/gnustep-back/Makefile (revision 391062) @@ -1,51 +1,50 @@ # $FreeBSD$ PORTNAME= gnustep-back -PORTVERSION= 0.24.0 -PORTREVISION= 5 +PORTVERSION= 0.24.1 CATEGORIES= x11-toolkits gnustep MASTER_SITES= GNUSTEP/core MAINTAINER= theraven@FreeBSD.org COMMENT= GNUstep GUI backend LICENSE_COMB= multi LICENSE= GPLv3 LGPL3 LIB_DEPENDS+= libgif.so:${PORTSDIR}/graphics/giflib \ libtiff.so:${PORTSDIR}/graphics/tiff \ libXft.so:${PORTSDIR}/x11-fonts/libXft \ libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig \ libfreetype.so:${PORTSDIR}/print/freetype2 \ libcairo.so:${PORTSDIR}/graphics/cairo GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-tiff-library=${LOCALBASE}/lib \ --with-tiff-include=${LOCALBASE}/include \ --with-jpeg-library=${LOCALBASE}/lib \ --with-jpeg-include=${LOCALBASE}/include \ --with-gif-library=${LOCALBASE}/lib \ --with-gif-include=${LOCALBASE}/include \ --enable-graphics=cairo \ --disable-glitz USES= gnustep jpeg pkgconfig USE_GNUSTEP= base gui build USE_XORG= xft xrender xmu xext x11 xcursor xfixes xmu USE_GL= yes USE_LDCONFIG= ${GNUSTEP_SYSTEM_LIBRARIES} MAKE_FLAGS+= OPTFLAG="${CFLAGS} -I${LOCALBASE}/include" MAKE_ENV+= GNUSTEP_INSTALLATION_DOMAIN=SYSTEM BACKVERSION= ${PORTVERSION:C/([0-9])*[.]([0-9]*).*/\1\2/1} CFLAGS+= -I${LOCALBASE}/include/freetype2 PLIST_SUB+= BACK=back-${BACKVERSION} PLIST_SUB+= BACKVERSION=${PORTVERSION:C/([0-9])*[.]([0-9]*).*/\1\2/1} pre-configure: .for file in config.guess config.sub install-sh @${CP} ${GNUSTEP_PREFIX}/System/Library/Makefiles/${file} ${WRKSRC} .endfor .include Index: head/x11-toolkits/gnustep-back/distinfo =================================================================== --- head/x11-toolkits/gnustep-back/distinfo (revision 391061) +++ head/x11-toolkits/gnustep-back/distinfo (revision 391062) @@ -1,2 +1,2 @@ -SHA256 (gnustep-back-0.24.0.tar.gz) = 5fc2ed70076d1cd9d51bf3ad85c71a42bfd29e3fd7c22421cc1de739695c3d62 -SIZE (gnustep-back-0.24.0.tar.gz) = 966735 +SHA256 (gnustep-back-0.24.1.tar.gz) = e255628e0f9be9b10359bb1be6690c50a0929bc383e6996966076492af02457e +SIZE (gnustep-back-0.24.1.tar.gz) = 966529 Index: head/x11-toolkits/gnustep-gui/Makefile =================================================================== --- head/x11-toolkits/gnustep-gui/Makefile (revision 391061) +++ head/x11-toolkits/gnustep-gui/Makefile (revision 391062) @@ -1,67 +1,66 @@ # Created by: Thomas Gellekum # $FreeBSD$ PORTNAME= gnustep-gui -PORTVERSION= 0.24.0 -PORTREVISION= 5 +PORTVERSION= 0.24.1 CATEGORIES= x11-toolkits gnustep MASTER_SITES= GNUSTEP/core MAINTAINER= theraven@FreeBSD.org COMMENT= GNUstep GUI library LICENSE_COMB= multi LICENSE= GPLv3 LGPL3 OPTIONS_DEFINE= DOCS CUPS ASPELL OPTIONS_DEFAULT= CUPS OPTIONS_SUB= yes DOCS_BUILD_DEPENDS= texi2html:${PORTSDIR}/textproc/texi2html \ texi2pdf:${PORTSDIR}/print/texinfo LIB_DEPENDS+= libtiff.so:${PORTSDIR}/graphics/tiff LIB_DEPENDS+= libpng.so:${PORTSDIR}/graphics/png LIB_DEPENDS+= libgif.so:${PORTSDIR}/graphics/giflib LIB_DEPENDS+= libsndfile.so:${PORTSDIR}/audio/libsndfile LIB_DEPENDS+= libao.so:${PORTSDIR}/audio/libao BUILD_DEPENDS+= ${LOCALBASE}/lib/libflite.a:${PORTSDIR}/audio/flite GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-tiff-library=${LOCALBASE}/lib CONFIGURE_ARGS+= --with-tiff-include=${LOCALBASE}/include CONFIGURE_ARGS+= --with-jpeg-library=${LOCALBASE}/lib CONFIGURE_ARGS+= --with-jpeg-include=${LOCALBASE}/include CONFIGURE_ARGS+= --with-x CONFIGURE_ARGS+= --with-x-include=${LOCALBASE}/include CONFIGURE_ARGS+= --with-x-include=${LOCALBASE}/lib USES= gnustep jpeg pkgconfig USE_GNUSTEP= base build USE_XORG= x11 xt EXTRA_PATCHES+= ${FILESDIR}/GNUmakefile.patch EXTRA_PATCHES+= ${FILESDIR}/GNUmakefile.speech.patch EXTRA_PATCHES+= ${FILESDIR}/AudioOutputSink.m.patch MAKE_FLAGS+= OPTFLAG="${CFLAGS}" MAKE_ENV+= GNUSTEP_INSTALLATION_DOMAIN=SYSTEM PLIST_SUB+= BASEVERSION=${PORTVERSION:C/[.][0-9]*$//1} CUPS_CONFIGURE_ENABLE= cups CUPS_LIB_DEPENDS+= libcups.so:${PORTSDIR}/print/cups-client ASPELL_LIB_DEPENDS= libaspell.so:${PORTSDIR}/textproc/aspell ASPELL_CONFIGURE_ENABLE= aspell USE_LDCONFIG= ${GNUSTEP_SYSTEM_LIBRARIES} post-patch: ${REINPLACE_CMD} -e "s|libpng/png.h|png.h|" ${WRKSRC}/configure ${REINPLACE_CMD} -e "s|doc=no|doc=yes|" ${WRKSRC}/GNUmakefile pre-configure: .for file in config.guess config.sub install-sh @${CP} ${GNUSTEP_PREFIX}/System/Library/Makefiles/${file} ${WRKSRC} .endfor .include Index: head/x11-toolkits/gnustep-gui/distinfo =================================================================== --- head/x11-toolkits/gnustep-gui/distinfo (revision 391061) +++ head/x11-toolkits/gnustep-gui/distinfo (revision 391062) @@ -1,2 +1,2 @@ -SHA256 (gnustep-gui-0.24.0.tar.gz) = afcbe6633d24a9ee56efdf3d5b990b7baaa0b7f6288d2b72feb233e599fbd234 -SIZE (gnustep-gui-0.24.0.tar.gz) = 2816889 +SHA256 (gnustep-gui-0.24.1.tar.gz) = a749573c99d668b83230cc40b8b215b13d62e795615799a873981406cf2bb728 +SIZE (gnustep-gui-0.24.1.tar.gz) = 2837611 Index: head/x11-toolkits/gnustep-gui/files/patch-Headers__AppKit__NSTableView.h =================================================================== --- head/x11-toolkits/gnustep-gui/files/patch-Headers__AppKit__NSTableView.h (nonexistent) +++ head/x11-toolkits/gnustep-gui/files/patch-Headers__AppKit__NSTableView.h (revision 391062) @@ -0,0 +1,11 @@ +--- Headers/AppKit/NSTableView.h ++++ Headers/AppKit/NSTableView.h +@@ -91,7 +91,7 @@ + BOOL _drawsGrid; + NSColor *_gridColor; + NSColor *_backgroundColor; +- float _rowHeight; ++ CGFloat _rowHeight; + NSSize _intercellSpacing; + id _delegate; + NSTableHeaderView *_headerView; Property changes on: head/x11-toolkits/gnustep-gui/files/patch-Headers__AppKit__NSTableView.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/x11-toolkits/gnustep-gui/pkg-plist =================================================================== --- head/x11-toolkits/gnustep-gui/pkg-plist (revision 391061) +++ head/x11-toolkits/gnustep-gui/pkg-plist (revision 391062) @@ -1,820 +1,813 @@ -GNUstep/System/Applications/GSSpeechServer.app/GSSpeechServer -GNUstep/System/Applications/GSSpeechServer.app/Resources/GSSpeechServer.desktop -GNUstep/System/Applications/GSSpeechServer.app/Resources/Info-gnustep.plist -GNUstep/System/Applications/GSSpeechServer.app/stamp.make -GNUstep/System/Library/Bundles/AudioOutput.nssound/AudioOutput -GNUstep/System/Library/Bundles/AudioOutput.nssound/Resources/Info-gnustep.plist -GNUstep/System/Library/Bundles/AudioOutput.nssound/stamp.make + %%CUPS%%GNUstep/System/Library/Bundles/GSPrinting/GSCUPS.bundle/GSCUPS %%CUPS%%GNUstep/System/Library/Bundles/GSPrinting/GSCUPS.bundle/Resources/Info-gnustep.plist %%CUPS%%GNUstep/System/Library/Bundles/GSPrinting/GSCUPS.bundle/stamp.make -GNUstep/System/Library/Bundles/GSPrinting/GSLPR.bundle/GSLPR -GNUstep/System/Library/Bundles/GSPrinting/GSLPR.bundle/Resources/Info-gnustep.plist -GNUstep/System/Library/Bundles/GSPrinting/GSLPR.bundle/stamp.make -GNUstep/System/Library/Bundles/Sndfile.nssound/Resources/Info-gnustep.plist -GNUstep/System/Library/Bundles/Sndfile.nssound/Sndfile -GNUstep/System/Library/Bundles/Sndfile.nssound/stamp.make -GNUstep/System/Library/Bundles/TextConverters/RTFConverter.bundle/RTFConverter -GNUstep/System/Library/Bundles/TextConverters/RTFConverter.bundle/Resources/Info-gnustep.plist -GNUstep/System/Library/Bundles/TextConverters/RTFConverter.bundle/stamp.make -GNUstep/System/Library/Bundles/libgmodel.bundle/Resources/Info-gnustep.plist -GNUstep/System/Library/Bundles/libgmodel.bundle/libgmodel -GNUstep/System/Library/Bundles/libgmodel.bundle/stamp.make -GNUstep/System/Library/ColorPickers/NamedPicker.bundle/NamedPicker -GNUstep/System/Library/ColorPickers/NamedPicker.bundle/Resources/GSNamedColorPicker.tiff -GNUstep/System/Library/ColorPickers/NamedPicker.bundle/Resources/Info-gnustep.plist -GNUstep/System/Library/ColorPickers/NamedPicker.bundle/stamp.make -GNUstep/System/Library/ColorPickers/StandardPicker.bundle/Resources/English.lproj/StandardPicker.strings -GNUstep/System/Library/ColorPickers/StandardPicker.bundle/Resources/French.lproj/StandardPicker.strings -GNUstep/System/Library/ColorPickers/StandardPicker.bundle/Resources/GSCMYKColorPicker.tiff -GNUstep/System/Library/ColorPickers/StandardPicker.bundle/Resources/GSGrayColorPicker.tiff -GNUstep/System/Library/ColorPickers/StandardPicker.bundle/Resources/GSHSBColorPicker.tiff -GNUstep/System/Library/ColorPickers/StandardPicker.bundle/Resources/GSRGBColorPicker.tiff -GNUstep/System/Library/ColorPickers/StandardPicker.bundle/Resources/Info-gnustep.plist -GNUstep/System/Library/ColorPickers/StandardPicker.bundle/Resources/Spanish.lproj/StandardPicker.strings -GNUstep/System/Library/ColorPickers/StandardPicker.bundle/Resources/Swedish.lproj/StandardPicker.strings -GNUstep/System/Library/ColorPickers/StandardPicker.bundle/StandardPicker -GNUstep/System/Library/ColorPickers/StandardPicker.bundle/stamp.make -GNUstep/System/Library/ColorPickers/WheelPicker.bundle/Resources/GSWheelColorPicker.tiff -GNUstep/System/Library/ColorPickers/WheelPicker.bundle/Resources/Info-gnustep.plist -GNUstep/System/Library/ColorPickers/WheelPicker.bundle/WheelPicker -GNUstep/System/Library/ColorPickers/WheelPicker.bundle/stamp.make %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/ClassesTOC.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/ClassesTOC.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/Functions.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/Functions.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/FunctionsTOC.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/FunctionsTOC.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GSDisplayServer.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GSDisplayServer.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GSHbox.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GSHbox.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GSTable.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GSTable.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GSTheme.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GSTheme.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GSVbox.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GSVbox.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GuiAdditions.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/GuiAdditions.igsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/MainIndex.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/OrderedSymbolDeclarations.plist %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/TypesAndConstants.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/TypesAndConstants.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/TypesTOC.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/TypesTOC.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/VariablesTOC.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/VariablesTOC.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Additions/index.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/General/General.igsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/General/OpenStepCompliance.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/General/dependencies -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit_1.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit_10.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit_11.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit_12.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit_13.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit_14.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit_15.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit_16.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit_2.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit_3.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit_4.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit_5.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit_6.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit_7.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit_8.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit_9.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit_abt.html -%%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit_fot.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/ClassesTOC.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/ClassesTOC.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/ConstantsTOC.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/ConstantsTOC.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/Functions.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/Functions.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/FunctionsTOC.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/FunctionsTOC.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/Gui.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/Gui.igsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/MainIndex.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSActionCell.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSActionCell.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSAffineTransform.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSAffineTransform.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSApplication.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSApplication.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSAttributedString.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSAttributedString.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBezierPath.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBezierPath.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBitmapImageRep.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBitmapImageRep.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBox.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBox.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBrowser.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBrowser.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBrowserCell.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSBrowserCell.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSButton.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSButton.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSButtonCell.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSButtonCell.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCachedImageRep.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCachedImageRep.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCell.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCell.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSClipView.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSClipView.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColor.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColor.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorList.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorList.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorPanel.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorPanel.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorPicker.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorPicker.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorWell.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSColorWell.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSComboBox.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSComboBox.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSComboBoxCell.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSComboBoxCell.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSControl.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSControl.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCursor.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCursor.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCustomImageRep.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSCustomImageRep.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDataLink.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDataLink.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDataLinkManager.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDataLinkManager.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDataLinkPanel.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDataLinkPanel.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDocument.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDocument.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDocumentController.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDocumentController.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDrawer.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSDrawer.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSEPSImageRep.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSEPSImageRep.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSEvent.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSEvent.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFileWrapper.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFileWrapper.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFont.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFont.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFontManager.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFontManager.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFontPanel.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFontPanel.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSForm.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSForm.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFormCell.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSFormCell.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSGraphicsContext.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSGraphicsContext.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSHelpManager.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSHelpManager.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSHelpPanel.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSHelpPanel.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImage.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImage.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImageCell.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImageCell.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImageRep.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImageRep.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImageView.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSImageView.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSInputManager.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSInputManager.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSInputServer.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSInputServer.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSLayoutManager.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSLayoutManager.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMatrix.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMatrix.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenu.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenu.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenuItem.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenuItem.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenuItemCell.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenuItemCell.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenuView.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSMenuView.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSNib.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSNib.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOpenGL.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOpenGL.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOpenGLView.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOpenGLView.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOpenPanel.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOpenPanel.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOutlineView.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSOutlineView.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPageLayout.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPageLayout.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPanel.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPanel.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSParagraphStyle.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSParagraphStyle.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPasteboard.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPasteboard.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPopUpButton.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPopUpButton.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPopUpButtonCell.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPopUpButtonCell.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrintInfo.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrintInfo.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrintOperation.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrintOperation.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrintPanel.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrintPanel.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrinter.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSPrinter.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSProgressIndicator.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSProgressIndicator.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSResponder.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSResponder.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSRulerMarker.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSRulerMarker.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSRulerView.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSRulerView.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSavePanel.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSavePanel.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSScreen.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSScreen.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSScrollView.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSScrollView.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSScroller.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSScroller.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSecureTextField.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSecureTextField.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSelection.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSelection.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSlider.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSlider.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSliderCell.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSliderCell.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSound.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSound.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSpellChecker.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSpellChecker.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSplitView.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSSplitView.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSStepper.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSStepper.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSStepperCell.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSStepperCell.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSStringDrawing.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSStringDrawing.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTabView.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTabView.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTabViewItem.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTabViewItem.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableColumn.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableColumn.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableHeaderCell.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableHeaderCell.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableHeaderView.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableHeaderView.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableView.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTableView.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSText.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSText.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextAttachment.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextAttachment.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextContainer.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextContainer.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextField.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextField.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextFieldCell.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextFieldCell.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextStorage.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextStorage.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextView.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSTextView.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSToolbar.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSToolbar.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSToolbarItem.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSToolbarItem.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSView.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSView.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWindow.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWindow.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWindowController.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWindowController.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWorkspace.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/NSWorkspace.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/OrderedSymbolDeclarations.plist %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/ProtocolsTOC.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/ProtocolsTOC.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/TypesAndConstants.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/TypesAndConstants.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/TypesTOC.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/TypesTOC.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/VariablesTOC.gsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/VariablesTOC.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/Reference/index.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ReleaseNotes/%%VERSION%%/ANNOUNCE %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ReleaseNotes/%%VERSION%%/BUGS %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ReleaseNotes/%%VERSION%%/INSTALL %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ReleaseNotes/%%VERSION%%/NEWS %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ReleaseNotes/%%VERSION%%/README %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ReleaseNotes/ReleaseNotes.html %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ReleaseNotes/ReleaseNotes.igsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/Developer/Gui/ReleaseNotes/dependencies %%PORTDOCS%%GNUstep/System/Library/Documentation/User/Gui/GuiUser/DefaultsSummary.html %%PORTDOCS%%GNUstep/System/Library/Documentation/User/Gui/GuiUser/GuiUser.igsdoc %%PORTDOCS%%GNUstep/System/Library/Documentation/User/Gui/GuiUser/KeyboardSetup.html %%PORTDOCS%%GNUstep/System/Library/Documentation/User/Gui/GuiUser/LanguageSetup.html %%PORTDOCS%%GNUstep/System/Library/Documentation/User/Gui/GuiUser/dependencies +%%PORTDOCS%%GNUstep/System/Library/Documentation/info/AppKit.info %%PORTDOCS%%GNUstep/System/Library/Documentation/man/man1/gclose.1.gz %%PORTDOCS%%GNUstep/System/Library/Documentation/man/man1/gcloseall.1.gz %%PORTDOCS%%GNUstep/System/Library/Documentation/man/man1/gopen.1.gz %%PORTDOCS%%GNUstep/System/Library/Documentation/man/man1/make_services.1.gz %%PORTDOCS%%GNUstep/System/Library/Documentation/man/man1/set_show_service.1.gz -%%PORTDOCS%%GNUstep/System/Library/Documentation/info/AppKit.info +@dir GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual +@dir GNUstep/System/Library/Themes +GNUstep/System/Applications/GSSpeechServer.app/GSSpeechServer +GNUstep/System/Applications/GSSpeechServer.app/Resources/GSSpeechServer.desktop +GNUstep/System/Applications/GSSpeechServer.app/Resources/Info-gnustep.plist +GNUstep/System/Applications/GSSpeechServer.app/stamp.make +GNUstep/System/Library/Bundles/AudioOutput.nssound/AudioOutput +GNUstep/System/Library/Bundles/AudioOutput.nssound/Resources/Info-gnustep.plist +GNUstep/System/Library/Bundles/AudioOutput.nssound/stamp.make +GNUstep/System/Library/Bundles/GSPrinting/GSLPR.bundle/GSLPR +GNUstep/System/Library/Bundles/GSPrinting/GSLPR.bundle/Resources/Info-gnustep.plist +GNUstep/System/Library/Bundles/GSPrinting/GSLPR.bundle/stamp.make +GNUstep/System/Library/Bundles/Sndfile.nssound/Resources/Info-gnustep.plist +GNUstep/System/Library/Bundles/Sndfile.nssound/Sndfile +GNUstep/System/Library/Bundles/Sndfile.nssound/stamp.make +GNUstep/System/Library/Bundles/TextConverters/RTFConverter.bundle/RTFConverter +GNUstep/System/Library/Bundles/TextConverters/RTFConverter.bundle/Resources/Info-gnustep.plist +GNUstep/System/Library/Bundles/TextConverters/RTFConverter.bundle/stamp.make +GNUstep/System/Library/Bundles/libgmodel.bundle/Resources/Info-gnustep.plist +GNUstep/System/Library/Bundles/libgmodel.bundle/libgmodel +GNUstep/System/Library/Bundles/libgmodel.bundle/stamp.make +GNUstep/System/Library/ColorPickers/NamedPicker.bundle/NamedPicker +GNUstep/System/Library/ColorPickers/NamedPicker.bundle/Resources/GSNamedColorPicker.tiff +GNUstep/System/Library/ColorPickers/NamedPicker.bundle/Resources/Info-gnustep.plist +GNUstep/System/Library/ColorPickers/NamedPicker.bundle/stamp.make +GNUstep/System/Library/ColorPickers/StandardPicker.bundle/Resources/English.lproj/StandardPicker.strings +GNUstep/System/Library/ColorPickers/StandardPicker.bundle/Resources/French.lproj/StandardPicker.strings +GNUstep/System/Library/ColorPickers/StandardPicker.bundle/Resources/GSCMYKColorPicker.tiff +GNUstep/System/Library/ColorPickers/StandardPicker.bundle/Resources/GSGrayColorPicker.tiff +GNUstep/System/Library/ColorPickers/StandardPicker.bundle/Resources/GSHSBColorPicker.tiff +GNUstep/System/Library/ColorPickers/StandardPicker.bundle/Resources/GSRGBColorPicker.tiff +GNUstep/System/Library/ColorPickers/StandardPicker.bundle/Resources/Info-gnustep.plist +GNUstep/System/Library/ColorPickers/StandardPicker.bundle/Resources/Spanish.lproj/StandardPicker.strings +GNUstep/System/Library/ColorPickers/StandardPicker.bundle/Resources/Swedish.lproj/StandardPicker.strings +GNUstep/System/Library/ColorPickers/StandardPicker.bundle/StandardPicker +GNUstep/System/Library/ColorPickers/StandardPicker.bundle/stamp.make +GNUstep/System/Library/ColorPickers/WheelPicker.bundle/Resources/GSWheelColorPicker.tiff +GNUstep/System/Library/ColorPickers/WheelPicker.bundle/Resources/Info-gnustep.plist +GNUstep/System/Library/ColorPickers/WheelPicker.bundle/WheelPicker +GNUstep/System/Library/ColorPickers/WheelPicker.bundle/stamp.make GNUstep/System/Library/Headers/AppKit/AppKit.h GNUstep/System/Library/Headers/AppKit/AppKitDefines.h GNUstep/System/Library/Headers/AppKit/AppKitExceptions.h GNUstep/System/Library/Headers/AppKit/DPSOperators.h GNUstep/System/Library/Headers/AppKit/GMAppKit.h GNUstep/System/Library/Headers/AppKit/GMArchiver.h GNUstep/System/Library/Headers/AppKit/GSAnimator.h GNUstep/System/Library/Headers/AppKit/GSDisplayServer.h GNUstep/System/Library/Headers/AppKit/GSDragView.h GNUstep/System/Library/Headers/AppKit/GSEPSPrintOperation.h GNUstep/System/Library/Headers/AppKit/GSFontInfo.h GNUstep/System/Library/Headers/AppKit/GSGormLoading.h GNUstep/System/Library/Headers/AppKit/GSHbox.h GNUstep/System/Library/Headers/AppKit/GSHelpAttachment.h GNUstep/System/Library/Headers/AppKit/GSHelpManagerPanel.h GNUstep/System/Library/Headers/AppKit/GSHorizontalTypesetter.h GNUstep/System/Library/Headers/AppKit/GSInfoPanel.h GNUstep/System/Library/Headers/AppKit/GSInstantiator.h GNUstep/System/Library/Headers/AppKit/GSLayoutManager.h GNUstep/System/Library/Headers/AppKit/GSLayoutManager_internal.h GNUstep/System/Library/Headers/AppKit/GSMemoryPanel.h GNUstep/System/Library/Headers/AppKit/GSMethodTable.h GNUstep/System/Library/Headers/AppKit/GSModelLoaderFactory.h GNUstep/System/Library/Headers/AppKit/GSNibContainer.h GNUstep/System/Library/Headers/AppKit/GSNibLoading.h GNUstep/System/Library/Headers/AppKit/GSPDFPrintOperation.h GNUstep/System/Library/Headers/AppKit/GSPasteboardServer.h GNUstep/System/Library/Headers/AppKit/GSPrintOperation.h GNUstep/System/Library/Headers/AppKit/GSPrinting.h +GNUstep/System/Library/Headers/AppKit/GSServicesManager.h GNUstep/System/Library/Headers/AppKit/GSSoundSink.h GNUstep/System/Library/Headers/AppKit/GSSoundSource.h -GNUstep/System/Library/Headers/AppKit/GSServicesManager.h GNUstep/System/Library/Headers/AppKit/GSTable.h GNUstep/System/Library/Headers/AppKit/GSTextConverter.h GNUstep/System/Library/Headers/AppKit/GSTheme.h GNUstep/System/Library/Headers/AppKit/GSTitleView.h GNUstep/System/Library/Headers/AppKit/GSToolbarView.h GNUstep/System/Library/Headers/AppKit/GSTrackingRect.h GNUstep/System/Library/Headers/AppKit/GSTypesetter.h GNUstep/System/Library/Headers/AppKit/GSVbox.h GNUstep/System/Library/Headers/AppKit/GSVersion.h GNUstep/System/Library/Headers/AppKit/GSWindowDecorationView.h +GNUstep/System/Library/Headers/AppKit/GSXibElement.h GNUstep/System/Library/Headers/AppKit/GSXibLoading.h +GNUstep/System/Library/Headers/AppKit/GSXibObjectContainer.h +GNUstep/System/Library/Headers/AppKit/GSXibParser.h GNUstep/System/Library/Headers/AppKit/IMConnectors.h GNUstep/System/Library/Headers/AppKit/IMCustomObject.h GNUstep/System/Library/Headers/AppKit/IMLoading.h GNUstep/System/Library/Headers/AppKit/NSActionCell.h GNUstep/System/Library/Headers/AppKit/NSAffineTransform.h GNUstep/System/Library/Headers/AppKit/NSAlert.h GNUstep/System/Library/Headers/AppKit/NSAnimation.h GNUstep/System/Library/Headers/AppKit/NSApplication.h GNUstep/System/Library/Headers/AppKit/NSArrayController.h GNUstep/System/Library/Headers/AppKit/NSAttributedString.h GNUstep/System/Library/Headers/AppKit/NSBezierPath.h GNUstep/System/Library/Headers/AppKit/NSBitmapImageRep.h GNUstep/System/Library/Headers/AppKit/NSBox.h GNUstep/System/Library/Headers/AppKit/NSBrowser.h GNUstep/System/Library/Headers/AppKit/NSBrowserCell.h GNUstep/System/Library/Headers/AppKit/NSButton.h GNUstep/System/Library/Headers/AppKit/NSButtonCell.h GNUstep/System/Library/Headers/AppKit/NSCachedImageRep.h GNUstep/System/Library/Headers/AppKit/NSCell.h GNUstep/System/Library/Headers/AppKit/NSClipView.h +GNUstep/System/Library/Headers/AppKit/NSCollectionView.h +GNUstep/System/Library/Headers/AppKit/NSCollectionViewItem.h GNUstep/System/Library/Headers/AppKit/NSColor.h GNUstep/System/Library/Headers/AppKit/NSColorList.h GNUstep/System/Library/Headers/AppKit/NSColorPanel.h GNUstep/System/Library/Headers/AppKit/NSColorPicker.h GNUstep/System/Library/Headers/AppKit/NSColorPicking.h GNUstep/System/Library/Headers/AppKit/NSColorSpace.h GNUstep/System/Library/Headers/AppKit/NSColorWell.h GNUstep/System/Library/Headers/AppKit/NSComboBox.h GNUstep/System/Library/Headers/AppKit/NSComboBoxCell.h GNUstep/System/Library/Headers/AppKit/NSControl.h GNUstep/System/Library/Headers/AppKit/NSController.h GNUstep/System/Library/Headers/AppKit/NSCursor.h GNUstep/System/Library/Headers/AppKit/NSCustomImageRep.h GNUstep/System/Library/Headers/AppKit/NSDataLink.h GNUstep/System/Library/Headers/AppKit/NSDataLinkManager.h GNUstep/System/Library/Headers/AppKit/NSDataLinkPanel.h GNUstep/System/Library/Headers/AppKit/NSDocument.h GNUstep/System/Library/Headers/AppKit/NSDocumentController.h GNUstep/System/Library/Headers/AppKit/NSDragging.h GNUstep/System/Library/Headers/AppKit/NSDrawer.h GNUstep/System/Library/Headers/AppKit/NSEPSImageRep.h GNUstep/System/Library/Headers/AppKit/NSEvent.h GNUstep/System/Library/Headers/AppKit/NSFileWrapper.h GNUstep/System/Library/Headers/AppKit/NSFont.h GNUstep/System/Library/Headers/AppKit/NSFontDescriptor.h GNUstep/System/Library/Headers/AppKit/NSFontManager.h GNUstep/System/Library/Headers/AppKit/NSFontPanel.h GNUstep/System/Library/Headers/AppKit/NSForm.h GNUstep/System/Library/Headers/AppKit/NSFormCell.h GNUstep/System/Library/Headers/AppKit/NSGlyphGenerator.h GNUstep/System/Library/Headers/AppKit/NSGradient.h GNUstep/System/Library/Headers/AppKit/NSGraphics.h GNUstep/System/Library/Headers/AppKit/NSGraphicsContext.h GNUstep/System/Library/Headers/AppKit/NSHelpManager.h GNUstep/System/Library/Headers/AppKit/NSHelpPanel.h GNUstep/System/Library/Headers/AppKit/NSImage.h GNUstep/System/Library/Headers/AppKit/NSImageCell.h GNUstep/System/Library/Headers/AppKit/NSImageRep.h GNUstep/System/Library/Headers/AppKit/NSImageView.h GNUstep/System/Library/Headers/AppKit/NSInputManager.h GNUstep/System/Library/Headers/AppKit/NSInputServer.h GNUstep/System/Library/Headers/AppKit/NSInterfaceStyle.h GNUstep/System/Library/Headers/AppKit/NSKeyValueBinding.h GNUstep/System/Library/Headers/AppKit/NSLayoutManager.h GNUstep/System/Library/Headers/AppKit/NSLevelIndicator.h GNUstep/System/Library/Headers/AppKit/NSLevelIndicatorCell.h GNUstep/System/Library/Headers/AppKit/NSMatrix.h GNUstep/System/Library/Headers/AppKit/NSMenu.h GNUstep/System/Library/Headers/AppKit/NSMenuItem.h GNUstep/System/Library/Headers/AppKit/NSMenuItemCell.h GNUstep/System/Library/Headers/AppKit/NSMenuView.h GNUstep/System/Library/Headers/AppKit/NSMovie.h GNUstep/System/Library/Headers/AppKit/NSMovieView.h GNUstep/System/Library/Headers/AppKit/NSNib.h GNUstep/System/Library/Headers/AppKit/NSNibConnector.h GNUstep/System/Library/Headers/AppKit/NSNibDeclarations.h GNUstep/System/Library/Headers/AppKit/NSNibLoading.h GNUstep/System/Library/Headers/AppKit/NSObjectController.h GNUstep/System/Library/Headers/AppKit/NSOpenGL.h GNUstep/System/Library/Headers/AppKit/NSOpenGLView.h GNUstep/System/Library/Headers/AppKit/NSOpenPanel.h GNUstep/System/Library/Headers/AppKit/NSOutlineView.h GNUstep/System/Library/Headers/AppKit/NSPageLayout.h GNUstep/System/Library/Headers/AppKit/NSPanel.h GNUstep/System/Library/Headers/AppKit/NSParagraphStyle.h GNUstep/System/Library/Headers/AppKit/NSPasteboard.h GNUstep/System/Library/Headers/AppKit/NSPopUpButton.h GNUstep/System/Library/Headers/AppKit/NSPopUpButtonCell.h +GNUstep/System/Library/Headers/AppKit/NSPopover.h GNUstep/System/Library/Headers/AppKit/NSPrintInfo.h GNUstep/System/Library/Headers/AppKit/NSPrintOperation.h GNUstep/System/Library/Headers/AppKit/NSPrintPanel.h GNUstep/System/Library/Headers/AppKit/NSPrinter.h GNUstep/System/Library/Headers/AppKit/NSProgressIndicator.h GNUstep/System/Library/Headers/AppKit/NSResponder.h GNUstep/System/Library/Headers/AppKit/NSRulerMarker.h GNUstep/System/Library/Headers/AppKit/NSRulerView.h GNUstep/System/Library/Headers/AppKit/NSSavePanel.h GNUstep/System/Library/Headers/AppKit/NSScreen.h GNUstep/System/Library/Headers/AppKit/NSScrollView.h GNUstep/System/Library/Headers/AppKit/NSScroller.h GNUstep/System/Library/Headers/AppKit/NSSearchField.h GNUstep/System/Library/Headers/AppKit/NSSearchFieldCell.h GNUstep/System/Library/Headers/AppKit/NSSecureTextField.h GNUstep/System/Library/Headers/AppKit/NSSegmentedCell.h GNUstep/System/Library/Headers/AppKit/NSSegmentedControl.h GNUstep/System/Library/Headers/AppKit/NSSelection.h GNUstep/System/Library/Headers/AppKit/NSShadow.h GNUstep/System/Library/Headers/AppKit/NSSlider.h GNUstep/System/Library/Headers/AppKit/NSSliderCell.h GNUstep/System/Library/Headers/AppKit/NSSound.h GNUstep/System/Library/Headers/AppKit/NSSpeechSynthesizer.h GNUstep/System/Library/Headers/AppKit/NSSpellChecker.h GNUstep/System/Library/Headers/AppKit/NSSpellProtocol.h GNUstep/System/Library/Headers/AppKit/NSSpellServer.h GNUstep/System/Library/Headers/AppKit/NSSplitView.h +GNUstep/System/Library/Headers/AppKit/NSStatusBar.h +GNUstep/System/Library/Headers/AppKit/NSStatusItem.h GNUstep/System/Library/Headers/AppKit/NSStepper.h GNUstep/System/Library/Headers/AppKit/NSStepperCell.h GNUstep/System/Library/Headers/AppKit/NSStringDrawing.h GNUstep/System/Library/Headers/AppKit/NSTabView.h GNUstep/System/Library/Headers/AppKit/NSTabViewItem.h GNUstep/System/Library/Headers/AppKit/NSTableColumn.h GNUstep/System/Library/Headers/AppKit/NSTableHeaderCell.h GNUstep/System/Library/Headers/AppKit/NSTableHeaderView.h GNUstep/System/Library/Headers/AppKit/NSTableView.h GNUstep/System/Library/Headers/AppKit/NSText.h GNUstep/System/Library/Headers/AppKit/NSTextAttachment.h GNUstep/System/Library/Headers/AppKit/NSTextContainer.h GNUstep/System/Library/Headers/AppKit/NSTextField.h GNUstep/System/Library/Headers/AppKit/NSTextFieldCell.h GNUstep/System/Library/Headers/AppKit/NSTextList.h GNUstep/System/Library/Headers/AppKit/NSTextStorage.h GNUstep/System/Library/Headers/AppKit/NSTextTable.h GNUstep/System/Library/Headers/AppKit/NSTextView.h GNUstep/System/Library/Headers/AppKit/NSTokenField.h GNUstep/System/Library/Headers/AppKit/NSTokenFieldCell.h GNUstep/System/Library/Headers/AppKit/NSToolbar.h GNUstep/System/Library/Headers/AppKit/NSToolbarItem.h GNUstep/System/Library/Headers/AppKit/NSToolbarItemGroup.h +GNUstep/System/Library/Headers/AppKit/NSTrackingArea.h +GNUstep/System/Library/Headers/AppKit/NSTreeController.h +GNUstep/System/Library/Headers/AppKit/NSTreeNode.h GNUstep/System/Library/Headers/AppKit/NSUserDefaultsController.h GNUstep/System/Library/Headers/AppKit/NSUserInterfaceValidation.h GNUstep/System/Library/Headers/AppKit/NSView.h GNUstep/System/Library/Headers/AppKit/NSViewController.h GNUstep/System/Library/Headers/AppKit/NSWindow.h GNUstep/System/Library/Headers/AppKit/NSWindowController.h GNUstep/System/Library/Headers/AppKit/NSWorkspace.h GNUstep/System/Library/Headers/AppKit/PSOperators.h GNUstep/System/Library/Headers/Cocoa/Cocoa.h GNUstep/System/Library/Headers/GNUstepGUI/GMAppKit.h GNUstep/System/Library/Headers/GNUstepGUI/GMArchiver.h GNUstep/System/Library/Headers/GNUstepGUI/GSAnimator.h GNUstep/System/Library/Headers/GNUstepGUI/GSDisplayServer.h GNUstep/System/Library/Headers/GNUstepGUI/GSDragView.h GNUstep/System/Library/Headers/GNUstepGUI/GSEPSPrintOperation.h GNUstep/System/Library/Headers/GNUstepGUI/GSFontInfo.h GNUstep/System/Library/Headers/GNUstepGUI/GSGormLoading.h GNUstep/System/Library/Headers/GNUstepGUI/GSHbox.h GNUstep/System/Library/Headers/GNUstepGUI/GSHelpAttachment.h GNUstep/System/Library/Headers/GNUstepGUI/GSHelpManagerPanel.h GNUstep/System/Library/Headers/GNUstepGUI/GSHorizontalTypesetter.h GNUstep/System/Library/Headers/GNUstepGUI/GSInfoPanel.h GNUstep/System/Library/Headers/GNUstepGUI/GSInstantiator.h GNUstep/System/Library/Headers/GNUstepGUI/GSLayoutManager.h GNUstep/System/Library/Headers/GNUstepGUI/GSLayoutManager_internal.h GNUstep/System/Library/Headers/GNUstepGUI/GSMemoryPanel.h GNUstep/System/Library/Headers/GNUstepGUI/GSMethodTable.h GNUstep/System/Library/Headers/GNUstepGUI/GSModelLoaderFactory.h GNUstep/System/Library/Headers/GNUstepGUI/GSNibContainer.h GNUstep/System/Library/Headers/GNUstepGUI/GSNibLoading.h GNUstep/System/Library/Headers/GNUstepGUI/GSPDFPrintOperation.h GNUstep/System/Library/Headers/GNUstepGUI/GSPasteboardServer.h GNUstep/System/Library/Headers/GNUstepGUI/GSPrintOperation.h GNUstep/System/Library/Headers/GNUstepGUI/GSPrinting.h +GNUstep/System/Library/Headers/GNUstepGUI/GSServicesManager.h GNUstep/System/Library/Headers/GNUstepGUI/GSSoundSink.h GNUstep/System/Library/Headers/GNUstepGUI/GSSoundSource.h -GNUstep/System/Library/Headers/GNUstepGUI/GSServicesManager.h GNUstep/System/Library/Headers/GNUstepGUI/GSTable.h GNUstep/System/Library/Headers/GNUstepGUI/GSTextConverter.h GNUstep/System/Library/Headers/GNUstepGUI/GSTheme.h GNUstep/System/Library/Headers/GNUstepGUI/GSTitleView.h GNUstep/System/Library/Headers/GNUstepGUI/GSToolbarView.h GNUstep/System/Library/Headers/GNUstepGUI/GSTrackingRect.h GNUstep/System/Library/Headers/GNUstepGUI/GSTypesetter.h GNUstep/System/Library/Headers/GNUstepGUI/GSVbox.h GNUstep/System/Library/Headers/GNUstepGUI/GSVersion.h GNUstep/System/Library/Headers/GNUstepGUI/GSWindowDecorationView.h +GNUstep/System/Library/Headers/GNUstepGUI/GSXibElement.h GNUstep/System/Library/Headers/GNUstepGUI/GSXibLoading.h +GNUstep/System/Library/Headers/GNUstepGUI/GSXibObjectContainer.h +GNUstep/System/Library/Headers/GNUstepGUI/GSXibParser.h GNUstep/System/Library/Headers/GNUstepGUI/IMConnectors.h GNUstep/System/Library/Headers/GNUstepGUI/IMCustomObject.h GNUstep/System/Library/Headers/GNUstepGUI/IMLoading.h GNUstep/System/Library/Headers/gnustep/gui/GMAppKit.h GNUstep/System/Library/Headers/gnustep/gui/GMArchiver.h GNUstep/System/Library/Headers/gnustep/gui/GSAnimator.h GNUstep/System/Library/Headers/gnustep/gui/GSDisplayServer.h GNUstep/System/Library/Headers/gnustep/gui/GSDragView.h GNUstep/System/Library/Headers/gnustep/gui/GSEPSPrintOperation.h GNUstep/System/Library/Headers/gnustep/gui/GSFontInfo.h GNUstep/System/Library/Headers/gnustep/gui/GSGormLoading.h GNUstep/System/Library/Headers/gnustep/gui/GSHbox.h GNUstep/System/Library/Headers/gnustep/gui/GSHelpAttachment.h GNUstep/System/Library/Headers/gnustep/gui/GSHelpManagerPanel.h GNUstep/System/Library/Headers/gnustep/gui/GSHorizontalTypesetter.h GNUstep/System/Library/Headers/gnustep/gui/GSInfoPanel.h GNUstep/System/Library/Headers/gnustep/gui/GSInstantiator.h GNUstep/System/Library/Headers/gnustep/gui/GSLayoutManager.h GNUstep/System/Library/Headers/gnustep/gui/GSLayoutManager_internal.h GNUstep/System/Library/Headers/gnustep/gui/GSMemoryPanel.h GNUstep/System/Library/Headers/gnustep/gui/GSMethodTable.h GNUstep/System/Library/Headers/gnustep/gui/GSModelLoaderFactory.h GNUstep/System/Library/Headers/gnustep/gui/GSNibContainer.h GNUstep/System/Library/Headers/gnustep/gui/GSNibLoading.h GNUstep/System/Library/Headers/gnustep/gui/GSPDFPrintOperation.h GNUstep/System/Library/Headers/gnustep/gui/GSPasteboardServer.h GNUstep/System/Library/Headers/gnustep/gui/GSPrintOperation.h GNUstep/System/Library/Headers/gnustep/gui/GSPrinting.h +GNUstep/System/Library/Headers/gnustep/gui/GSServicesManager.h GNUstep/System/Library/Headers/gnustep/gui/GSSoundSink.h GNUstep/System/Library/Headers/gnustep/gui/GSSoundSource.h -GNUstep/System/Library/Headers/gnustep/gui/GSServicesManager.h GNUstep/System/Library/Headers/gnustep/gui/GSTable.h GNUstep/System/Library/Headers/gnustep/gui/GSTextConverter.h GNUstep/System/Library/Headers/gnustep/gui/GSTheme.h GNUstep/System/Library/Headers/gnustep/gui/GSTitleView.h GNUstep/System/Library/Headers/gnustep/gui/GSToolbarView.h GNUstep/System/Library/Headers/gnustep/gui/GSTrackingRect.h GNUstep/System/Library/Headers/gnustep/gui/GSTypesetter.h GNUstep/System/Library/Headers/gnustep/gui/GSVbox.h GNUstep/System/Library/Headers/gnustep/gui/GSVersion.h GNUstep/System/Library/Headers/gnustep/gui/GSWindowDecorationView.h +GNUstep/System/Library/Headers/gnustep/gui/GSXibElement.h GNUstep/System/Library/Headers/gnustep/gui/GSXibLoading.h +GNUstep/System/Library/Headers/gnustep/gui/GSXibObjectContainer.h +GNUstep/System/Library/Headers/gnustep/gui/GSXibParser.h GNUstep/System/Library/Headers/gnustep/gui/IMConnectors.h GNUstep/System/Library/Headers/gnustep/gui/IMCustomObject.h GNUstep/System/Library/Headers/gnustep/gui/IMLoading.h GNUstep/System/Library/Images/GNUstep.tiff GNUstep/System/Library/Images/GNUstepMenuImage.tiff GNUstep/System/Library/Images/GSSearch.tiff GNUstep/System/Library/Images/GSStop.tiff GNUstep/System/Library/Images/LogoGNUstep.tiff GNUstep/System/Library/Images/MagnifyGlass.tiff +GNUstep/System/Library/Images/NSAddTemplate.tiff GNUstep/System/Library/Images/NSComboArrow.tiff GNUstep/System/Library/Images/NSRatingLevelIndicator.tiff +GNUstep/System/Library/Images/NSRemoveTemplate.tiff GNUstep/System/Library/Images/common_2DCheckMark.tiff GNUstep/System/Library/Images/common_2DDash.tiff GNUstep/System/Library/Images/common_3DArrowDown.tiff GNUstep/System/Library/Images/common_3DArrowLeft.tiff GNUstep/System/Library/Images/common_3DArrowRight.tiff GNUstep/System/Library/Images/common_3DArrowRightH.tiff GNUstep/System/Library/Images/common_3DArrowUp.tiff GNUstep/System/Library/Images/common_ArrowDown.tiff GNUstep/System/Library/Images/common_ArrowDownH.tiff GNUstep/System/Library/Images/common_ArrowLeft.tiff GNUstep/System/Library/Images/common_ArrowLeftH.tiff GNUstep/System/Library/Images/common_ArrowRight.tiff GNUstep/System/Library/Images/common_ArrowRightH.tiff GNUstep/System/Library/Images/common_ArrowUp.tiff GNUstep/System/Library/Images/common_ArrowUpH.tiff GNUstep/System/Library/Images/common_CenterTabStop.tiff GNUstep/System/Library/Images/common_Close.tiff GNUstep/System/Library/Images/common_CloseBroken.tiff GNUstep/System/Library/Images/common_CloseBrokenH.tiff GNUstep/System/Library/Images/common_CloseH.tiff GNUstep/System/Library/Images/common_ClosedHandCursor.tiff GNUstep/System/Library/Images/common_ColorSwatch.tiff GNUstep/System/Library/Images/common_ComboBoxEllipsis.tiff GNUstep/System/Library/Images/common_DecimalTabStop.tiff GNUstep/System/Library/Images/common_Desktop.tiff GNUstep/System/Library/Images/common_Diamond.tiff GNUstep/System/Library/Images/common_Dimple.tiff GNUstep/System/Library/Images/common_DimpleHoriz.tiff GNUstep/System/Library/Images/common_DocsFolder.tiff GNUstep/System/Library/Images/common_DownArrowSmall.tiff GNUstep/System/Library/Images/common_DownloadFolder.tiff GNUstep/System/Library/Images/common_Folder.tiff GNUstep/System/Library/Images/common_GSFolder.tiff GNUstep/System/Library/Images/common_HelpCursor.tiff GNUstep/System/Library/Images/common_HelpLink.tiff GNUstep/System/Library/Images/common_Home.tiff GNUstep/System/Library/Images/common_HomeDirectory.tiff GNUstep/System/Library/Images/common_ImageFolder.tiff +GNUstep/System/Library/Images/common_Info.tiff GNUstep/System/Library/Images/common_LeftTabStop.tiff GNUstep/System/Library/Images/common_LibraryFolder.tiff GNUstep/System/Library/Images/common_MiniWindowTile.tiff GNUstep/System/Library/Images/common_Miniaturize.tiff GNUstep/System/Library/Images/common_MiniaturizeH.tiff GNUstep/System/Library/Images/common_Mount.tiff GNUstep/System/Library/Images/common_MusicFolder.tiff GNUstep/System/Library/Images/common_Nibble.tiff GNUstep/System/Library/Images/common_OpenHandCursor.tiff GNUstep/System/Library/Images/common_Printer.tiff GNUstep/System/Library/Images/common_ProgressIndeterminate_1.tiff GNUstep/System/Library/Images/common_ProgressIndeterminate_2.tiff GNUstep/System/Library/Images/common_ProgressIndeterminate_3.tiff GNUstep/System/Library/Images/common_ProgressIndeterminate_4.tiff GNUstep/System/Library/Images/common_ProgressIndeterminate_5.tiff GNUstep/System/Library/Images/common_ProgressIndeterminate_6.tiff GNUstep/System/Library/Images/common_ProgressSpinning_1.tiff GNUstep/System/Library/Images/common_ProgressSpinning_2.tiff GNUstep/System/Library/Images/common_ProgressSpinning_3.tiff GNUstep/System/Library/Images/common_ProgressSpinning_4.tiff GNUstep/System/Library/Images/common_ProgressSpinning_5.tiff GNUstep/System/Library/Images/common_ProgressSpinning_6.tiff GNUstep/System/Library/Images/common_ProgressSpinning_7.tiff GNUstep/System/Library/Images/common_ProgressSpinning_8.tiff GNUstep/System/Library/Images/common_RadioOff.tiff GNUstep/System/Library/Images/common_RadioOn.tiff GNUstep/System/Library/Images/common_Right.tiff GNUstep/System/Library/Images/common_RightH.tiff GNUstep/System/Library/Images/common_RightTabStop.tiff GNUstep/System/Library/Images/common_Root_Apple.tiff GNUstep/System/Library/Images/common_Root_PC.tiff GNUstep/System/Library/Images/common_Root_SGI.tiff GNUstep/System/Library/Images/common_Root_Sparc.tiff GNUstep/System/Library/Images/common_Root_Sparc2.tiff GNUstep/System/Library/Images/common_SliderHoriz.tiff GNUstep/System/Library/Images/common_SliderVert.tiff +GNUstep/System/Library/Images/common_StepperDown.tiff +GNUstep/System/Library/Images/common_StepperDownHighlighted.tiff +GNUstep/System/Library/Images/common_StepperUp.tiff +GNUstep/System/Library/Images/common_StepperUpHighlighted.tiff GNUstep/System/Library/Images/common_SwitchOff.tiff GNUstep/System/Library/Images/common_SwitchOn.tiff GNUstep/System/Library/Images/common_TabDownSelectedLeft.tiff GNUstep/System/Library/Images/common_TabDownSelectedRight.tiff GNUstep/System/Library/Images/common_TabDownSelectedToUnSelectedJunction.tiff GNUstep/System/Library/Images/common_TabDownUnSelectedJunction.tiff GNUstep/System/Library/Images/common_TabDownUnSelectedLeft.tiff GNUstep/System/Library/Images/common_TabDownUnSelectedRight.tiff GNUstep/System/Library/Images/common_TabDownUnSelectedToSelectedJunction.tiff GNUstep/System/Library/Images/common_TabSelectedLeft.tiff GNUstep/System/Library/Images/common_TabSelectedRight.tiff GNUstep/System/Library/Images/common_TabSelectedToUnSelectedJunction.tiff GNUstep/System/Library/Images/common_TabUnSelectedJunction.tiff GNUstep/System/Library/Images/common_TabUnSelectedLeft.tiff GNUstep/System/Library/Images/common_TabUnSelectedRight.tiff +GNUstep/System/Library/Images/common_TabUnSelectedToSelectedJunction.tiff GNUstep/System/Library/Images/common_Tile.tiff GNUstep/System/Library/Images/common_ToolbarClippedItemsMark.tiff GNUstep/System/Library/Images/common_ToolbarCustomizeToolbarItem.tiff GNUstep/System/Library/Images/common_ToolbarSeparatorItem.tiff GNUstep/System/Library/Images/common_ToolbarShowColorsItem.tiff GNUstep/System/Library/Images/common_ToolbarShowFontsItem.tiff GNUstep/System/Library/Images/common_ToolbarSpaceItem.tiff GNUstep/System/Library/Images/common_Unknown.tiff GNUstep/System/Library/Images/common_UnknownApplication.tiff GNUstep/System/Library/Images/common_UnknownTool.tiff GNUstep/System/Library/Images/common_Unmount.tiff GNUstep/System/Library/Images/common_UpAndDownArrowSmall.tiff GNUstep/System/Library/Images/common_copyCursor.tiff GNUstep/System/Library/Images/common_linkCursor.tiff GNUstep/System/Library/Images/common_noCursor.tiff GNUstep/System/Library/Images/common_outlineCollapsed.tiff GNUstep/System/Library/Images/common_outlineExpanded.tiff GNUstep/System/Library/Images/common_outlineUnexpandable.tiff GNUstep/System/Library/Images/common_ret.tiff GNUstep/System/Library/Images/common_retH.tiff GNUstep/System/Library/Images/nsmapping.strings GNUstep/System/Library/Images/page_landscape.tiff GNUstep/System/Library/Images/page_portrait.tiff GNUstep/System/Library/KeyBindings/DefaultKeyBindings.dict GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/English.lproj/GSDataLinkPanel.gorm/data.classes GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/English.lproj/GSDataLinkPanel.gorm/data.info GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/English.lproj/GSDataLinkPanel.gorm/objects.gorm GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/English.lproj/GSFindPanel.gorm/data.classes GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/English.lproj/GSFindPanel.gorm/data.info GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/English.lproj/GSFindPanel.gorm/objects.gorm GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/English.lproj/GSPageLayout.gorm/data.classes GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/English.lproj/GSPageLayout.gorm/data.info GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/English.lproj/GSPageLayout.gorm/objects.gorm GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/English.lproj/GSPrintPanel.gorm/data.classes GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/English.lproj/GSPrintPanel.gorm/data.info GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/English.lproj/GSPrintPanel.gorm/objects.gorm GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/English.lproj/GSSpellPanel.gorm/data.classes GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/English.lproj/GSSpellPanel.gorm/objects.gorm GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/English.lproj/GSToolbarCustomizationPalette.gorm/data.classes GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/English.lproj/GSToolbarCustomizationPalette.gorm/data.info GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/English.lproj/GSToolbarCustomizationPalette.gorm/objects.gorm GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/English.lproj/Localizable.strings GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Esperanto.lproj/Localizable.strings GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/French.lproj/Localizable.strings GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/German.lproj/Localizable.strings GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Info-gnustep.plist GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Italian.lproj/Localizable.strings GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Lojban.lproj/Localizable.strings GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSDataLinkPanel.gorm/data.classes GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSDataLinkPanel.gorm/data.info GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSDataLinkPanel.gorm/objects.gorm GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSFindPanel.gorm/data.classes GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSFindPanel.gorm/data.info GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSFindPanel.gorm/objects.gorm GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSPageLayout.gorm/data.classes GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSPageLayout.gorm/data.info GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSPageLayout.gorm/objects.gorm GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSPrintPanel.gorm/data.classes GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSPrintPanel.gorm/data.info GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSPrintPanel.gorm/objects.gorm GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSSpellPanel.gorm/data.classes GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSSpellPanel.gorm/data.info GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSSpellPanel.gorm/objects.gorm GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSToolbarCustomizationPalette.gorm/data.classes GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSToolbarCustomizationPalette.gorm/data.info GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/GSToolbarCustomizationPalette.gorm/objects.gorm GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Spanish.lproj/Localizable.strings GNUstep/System/Library/Libraries/libgnustep-gui.so GNUstep/System/Library/Libraries/libgnustep-gui.so.%%BASEVERSION%% GNUstep/System/Library/Libraries/libgnustep-gui.so.%%VERSION%% GNUstep/System/Library/Makefiles/Additional/gui.make GNUstep/System/Library/PostScript/GSProlog.ps GNUstep/System/Library/PostScript/PPD/English.lproj/Generic-PostScript_Printer-Postscript.ppd GNUstep/System/Library/Services/GSspell.service/GSspell GNUstep/System/Library/Services/GSspell.service/Resources/Info-gnustep.plist GNUstep/System/Library/Sounds/Basso.wav GNUstep/System/Library/Sounds/Blow.wav GNUstep/System/Library/Sounds/Bottle.wav GNUstep/System/Library/Sounds/Frog.wav GNUstep/System/Library/Sounds/Glass.wav GNUstep/System/Library/Sounds/Hero.wav GNUstep/System/Library/Sounds/Ping.wav GNUstep/System/Library/Sounds/Pop.wav GNUstep/System/Library/Sounds/Sosumi.wav GNUstep/System/Library/Sounds/Submarine.wav GNUstep/System/Library/Sounds/Tink.wav GNUstep/System/Tools/GSSpeechServer GNUstep/System/Tools/gclose GNUstep/System/Tools/gcloseall GNUstep/System/Tools/gopen GNUstep/System/Tools/make_services GNUstep/System/Tools/say GNUstep/System/Tools/set_show_service -GNUstep/System/Library/Headers/AppKit/NSTreeController.h -GNUstep/System/Library/Images/NSAddTemplate.tiff -GNUstep/System/Library/Images/common_Info.tiff -GNUstep/System/Library/Headers/AppKit/NSCollectionView.h -GNUstep/System/Library/Headers/AppKit/NSCollectionViewItem.h -GNUstep/System/Library/Headers/AppKit/NSPopover.h -GNUstep/System/Library/Headers/AppKit/NSStatusBar.h -GNUstep/System/Library/Headers/AppKit/NSStatusItem.h -GNUstep/System/Library/Headers/AppKit/NSTrackingArea.h -GNUstep/System/Library/Headers/AppKit/NSTreeNode.h -GNUstep/System/Library/Images/common_StepperDown.tiff -GNUstep/System/Library/Images/common_StepperDownHighlighted.tiff -GNUstep/System/Library/Images/common_StepperUp.tiff -GNUstep/System/Library/Images/common_StepperUpHighlighted.tiff -GNUstep/System/Library/Images/common_TabUnSelectedToSelectedJunction.tiff -@dir GNUstep/System/Library/Themes