Index: head/Mk/Uses/gnustep.mk =================================================================== --- head/Mk/Uses/gnustep.mk (revision 448471) +++ head/Mk/Uses/gnustep.mk (revision 448472) @@ -1,87 +1,87 @@ # $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 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: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}" +MAKE_ENV+= PATH="${PATH}" GNUSTEP_MAKEFILES="${GNUSTEP_MAKEFILES}" # All GNUstep things installed from ports should be in the System domain. # Things installed from source can then freely live in the Local domain without # conflicts. MAKE_ENV+= GNUSTEP_INSTALLATION_DOMAIN=SYSTEM -CONFIGURE_ENV+= PATH="${PATH}" GNUSTEP_MAKEFILES="${GNUSTEP_MAKEFILES}" GNUSTEP_SYSTEM_ROOT="${GNUSTEP_SYSTEM_ROOT}" +CONFIGURE_ENV+= PATH="${PATH}" GNUSTEP_MAKEFILES="${GNUSTEP_MAKEFILES}" BUILD_DEPENDS+= gnustep-make>0:devel/gnustep-make .include "${USESDIR}/objc.mk" . endif . if ${USE_GNUSTEP:Mgui} LIB_DEPENDS+= libgnustep-gui.so:x11-toolkits/gnustep-gui . endif . if ${USE_GNUSTEP:Mback} BUILD_DEPENDS+= gnustep-back>0:x11-toolkits/gnustep-back RUN_DEPENDS+= gnustep-back>0:x11-toolkits/gnustep-back . endif .endif .endif Index: head/Mk/Uses/objc.mk =================================================================== --- head/Mk/Uses/objc.mk (revision 448471) +++ head/Mk/Uses/objc.mk (revision 448472) @@ -1,64 +1,66 @@ # $FreeBSD$ # # Objective C support # # Feature: objc # Usage: USES=objc # # MAINTAINER: objc@FreeBSD.org .if !defined(_INCLUDE_USES_OBJC_MK) _INCLUDE_USES_OBJC_MK= yes +OBJC_CLANG_VERSION=40 + 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]*:tW: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]*:tW: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 -.if ${ALT_COMPILER_TYPE} == clang +# We do always need clang and prefer a recent version +.if (${COMPILER_TYPE} == clang && ${COMPILER_VERSION} < ${OBJC_CLANG_VERSION}) || ${COMPILER_TYPE} != clang +.if ${ALT_COMPILER_TYPE} == clang && ${ALT_COMPILER_VERSION} >= ${OJBC_CLANG_VERSION} CC= /usr/bin/clang CPP= /usr/bin/clang-cpp CXX= /usr/bin/clang++ .else -BUILD_DEPENDS+= ${LOCALBASE}/bin/clang34:lang/clang34 -CPP= ${LOCALBASE}/bin/clang-cpp34 -CC= ${LOCALBASE}/bin/clang34 -CXX= ${LOCALBASE}/bin/clang++34 +BUILD_DEPENDS+= ${LOCALBASE}/bin/clang${OBJC_CLANG_VERSION}:devel/llvm${OBJC_CLANG_VERSION} +CPP= ${LOCALBASE}/bin/clang-cpp${OBJC_CLANG_VERSION} +CC= ${LOCALBASE}/bin/clang${OBJC_CLANG_VERSION} +CXX= ${LOCALBASE}/bin/clang++${OBJC_CLANG_VERSION} .endif .endif .if ! ${objc_ARGS:Mcompiler} LIB_DEPENDS+= libobjc.so.4.6: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/archivers/freetar/Makefile =================================================================== --- head/archivers/freetar/Makefile (revision 448471) +++ head/archivers/freetar/Makefile (revision 448472) @@ -1,23 +1,23 @@ # $FreeBSD$ PORTNAME= freetar PORTVERSION= 0.9 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= archivers gnustep MASTER_SITES= http://download.gna.org/freetar/ DISTNAME= FreeTar-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= TAR archiver for GNUstep LICENSE= GPLv2 USES= gnustep USE_GNUSTEP= back build WRKSRC= ${WRKDIR}/FreeTar_1_1_1_Source post-install: @${STRIP_CMD} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Applications/FreeTar.app/FreeTar .include Index: head/archivers/unarchiver/Makefile =================================================================== --- head/archivers/unarchiver/Makefile (revision 448471) +++ head/archivers/unarchiver/Makefile (revision 448472) @@ -1,47 +1,47 @@ # Created by: Alexey Dokuchaev # $FreeBSD$ PORTNAME= unar PORTVERSION= 1.10.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= archivers gnustep MASTER_SITES= http://wakaba.c3.cx/releases/TheUnarchiver/ DISTNAME= ${PORTNAME}${PORTVERSION}_src MAINTAINER= danfe@FreeBSD.org COMMENT= Unarchiver for a vast variety of file formats LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/License.txt # XXX: USES=gnustep overrides MAKEFILE we set below, so depend explicitly LIB_DEPENDS= libgnustep-base.so:lang/gnustep-base \ libicuuc.so:devel/icu \ libwavpack.so:audio/wavpack USES= gmake zip MAKEFILE= Makefile.freebsd WRKSRC= ${WRKDIR}/The\ Unarchiver BUILD_WRKSRC= ${WRKSRC}/XADMaster PLIST_FILES= bin/lsar bin/unar man/man1/lsar.1.gz man/man1/unar.1.gz PORTDOCS= README.md PORTEXAMPLES= lsar.bash_completion unar.bash_completion OPTIONS_DEFINE= DOCS EXAMPLES do-install: ${INSTALL_PROGRAM} ${WRKSRC}/XADMaster/??ar ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/Extra/??ar.1 ${STAGEDIR}${MANPREFIX}/man/man1 do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} do-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/Extra/??ar.bash_completion \ ${STAGEDIR}${EXAMPLESDIR} .include Index: head/archivers/zipper/Makefile =================================================================== --- head/archivers/zipper/Makefile (revision 448471) +++ head/archivers/zipper/Makefile (revision 448472) @@ -1,20 +1,20 @@ # Created by: gurkan@phys.ethz.ch # $FreeBSD$ PORTNAME= zipper PORTVERSION= 1.5 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= archivers gnustep MASTER_SITES= SAVANNAH/gap DISTNAME= Zipper-${PORTVERSION} MAINTAINER= bofh@FreeBSD.org COMMENT= Tool for inspecting the contents of a compressed archive USES= gnustep USE_GNUSTEP= back build post-patch: cd ${WRKSRC} && ${FIND} . -name "*#*" -exec ${RM} -v {} ";" .include Index: head/audio/cddb-bundle/Makefile =================================================================== --- head/audio/cddb-bundle/Makefile (revision 448471) +++ head/audio/cddb-bundle/Makefile (revision 448472) @@ -1,26 +1,26 @@ # $FreeBSD$ PORTNAME= cddb PORTVERSION= 0.2 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= audio gnustep MASTER_SITES= SF/gsburn/cdplayer/${DISTNAME} PKGNAMESUFFIX= -bundle${PKGNAMESUFFIX2} DISTNAME= cdplayer-${CDPLAYER_VERSION} MAINTAINER= ports@FreeBSD.org COMMENT= CDDB client bundle GNUstep LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING USES= tar:bzip2 gnustep USE_GNUSTEP= back build CDPLAYER_VERSION= 0.5.1 WRKSRC= ${WRKDIR}/CDPlayer-${CDPLAYER_VERSION}/Cddb post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Bundles/Cddb.bundle/Cddb .include Index: head/audio/gnustep-cdplayer/Makefile =================================================================== --- head/audio/gnustep-cdplayer/Makefile (revision 448471) +++ head/audio/gnustep-cdplayer/Makefile (revision 448472) @@ -1,33 +1,33 @@ # $FreeBSD$ PORTNAME= cdplayer PORTVERSION= 0.5.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= audio gnustep MASTER_SITES= SF/gsburn/${PORTNAME}/${PORTNAME}-${PORTVERSION} PKGNAMEPREFIX= gnustep- MAINTAINER= ports@FreeBSD.org COMMENT= GNUstep CD player with CDDB support LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libcdaudio.so:audio/libcdaudio \ libPrefsModule.so:deskutils/preferences BUILD_DEPENDS= cddb-bundle>0:audio/cddb-bundle RUN_DEPENDS= cddb-bundle>0:audio/cddb-bundle USES= tar:bzip2 gnustep USE_GNUSTEP= back build WRKSRC= ${WRKDIR}/CDPlayer-${PORTVERSION} post-install: ${STRIP_CMD} \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Bundles/AudioCD.bundle/AudioCD \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Bundles/AudioCD.prefs/AudioCD \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/CDPlayer.app/CDPlayer .include Index: head/audio/mpdcon/Makefile =================================================================== --- head/audio/mpdcon/Makefile (revision 448471) +++ head/audio/mpdcon/Makefile (revision 448472) @@ -1,26 +1,26 @@ # $FreeBSD$ PORTNAME= mpdcon PORTVERSION= 1.5.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio gnustep MASTER_SITES= SAVANNAH/gap DISTNAME= MPDCon-${PORTVERSION} MAINTAINER= theraven@FreeBSD.org COMMENT= MPD client for GNUstep LICENSE= GPLv2 USES= gnustep USE_GNUSTEP= base gui back build LIB_DEPENDS= libmpdclient.so.2:audio/libmpdclient \ libSQLClient.so:databases/sqlclient post-patch: ${REINPLACE_CMD} -e \ 's|^GNUSTEP_INSTALLATION_DIR|#GNUSTEP_INSTALLATION_DIR|' \ ${WRKSRC}/GNUmakefile .include Index: head/biology/biococoa/Makefile =================================================================== --- head/biology/biococoa/Makefile (revision 448471) +++ head/biology/biococoa/Makefile (revision 448472) @@ -1,21 +1,21 @@ # $FreeBSD$ PORTNAME= biococoa PORTVERSION= 2.2.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= biology gnustep MASTER_SITES= http://bioinformatics.org/biococoa/downloads/ DEBIAN/pool/main/b/biococoa.app DISTNAME= biococoa-${PORTVERSION}-src EXTRACT_SUFX= .tgz MAINTAINER= theraven@FreeBSD.org COMMENT= Bioinformatics framework LICENSE= LGPL21 USES= gnustep USE_GNUSTEP= back build WRKSRC= ${WRKDIR}/biococoa-${PORTVERSION} .include Index: head/databases/fortytwo-bdb/Makefile =================================================================== --- head/databases/fortytwo-bdb/Makefile (revision 448471) +++ head/databases/fortytwo-bdb/Makefile (revision 448472) @@ -1,39 +1,39 @@ # $FreeBSD$ PORTNAME= bdb PORTVERSION= 0.2.1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= databases gnustep MASTER_SITES= SF/fortytwo/Berkeley%20DB%20Wrapper%20%28BDB%29/${PORTVERSION} PKGNAMEPREFIX= fortytwo- DISTFILES= BDB-${PORTVERSION}-src.tgz \ BDB-${PORTVERSION}-api-ref.tgz MAINTAINER= ports@FreeBSD.org COMMENT= Interface to Berkeley DB for GNUstep LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/LICENSE USES= bdb gnustep USE_GNUSTEP= back build LIB_DEPENDS= libEncore.so:devel/fortytwo-encore DEFAULT_LIBVERSION= 0.1 USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} WRKSRC= ${WRKDIR}/BDB-${PORTVERSION} DOCSDIR= ${GNUSTEP_PREFIX}/Local/Library/Documentation/BDB ADDITIONAL_OBJCFLAGS+= -I${BDB_INCLUDE_DIR} -I${GNUSTEP_PREFIX}/ ADDITIONAL_LDFLAGS+= -L${BDB_LIB_DIR} OPTIONS_DEFINE= DOCS post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Frameworks/BDB.framework/Versions/0/libBDB.so post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKDIR}/BDB-0.2.0-api-ref && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} .include Index: head/databases/sqlclient/Makefile =================================================================== --- head/databases/sqlclient/Makefile (revision 448471) +++ head/databases/sqlclient/Makefile (revision 448472) @@ -1,30 +1,30 @@ # $FreeBSD$ PORTNAME= sqlclient PORTVERSION= 1.8.1 -PORTREVISION= 2 +PORTREVISION= 3 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:devel/performance \ libsqlite3.so:databases/sqlite3 USES= gnustep pgsql USE_GNUSTEP= base build GNU_CONFIGURE= yes USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} USE_MYSQL=yes LDFLAGS+= -pthread 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/deskutils/affiche/Makefile =================================================================== --- head/deskutils/affiche/Makefile (revision 448471) +++ head/deskutils/affiche/Makefile (revision 448472) @@ -1,23 +1,23 @@ # $FreeBSD$ PORTNAME= affiche PORTVERSION= 0.6.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= deskutils gnustep MASTER_SITES= http://www.collaboration-world.com/affiche.data/releases/Stable/ DISTNAME= Affiche-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Affiche allows people to stick notes LICENSE= GPLv2 USES= gnustep USE_GNUSTEP= back build WRKSRC= ${WRKDIR}/Affiche post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Affiche.app/Affiche .include Index: head/deskutils/appwrapper/Makefile =================================================================== --- head/deskutils/appwrapper/Makefile (revision 448471) +++ head/deskutils/appwrapper/Makefile (revision 448472) @@ -1,29 +1,29 @@ # $FreeBSD$ PORTNAME= appwrapper PORTVERSION= 0.1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= deskutils gnustep MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/AppWrapper%20${PORTVERSION} DISTNAME= AppWrapper.${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= GNUstep application wrapper LICENSE= GPLv2 USES= gnustep USE_GNUSTEP= back build WRKSRC= ${WRKDIR}/AppWrapper post-patch: ${RMDIR} ${WRKSRC}/AppWrapper.app/ix86/linux-gnu ${RMDIR} ${WRKSRC}/AppWrapper.app/ix86 ${REINPLACE_CMD} 's|^GNUSTEP_INSTALLATION_DIR|#GNUSTEP_INSTALLATION_DIR|' \ ${WRKSRC}/GNUmakefile post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/AppWrapper.app/AppWrapper .include Index: head/deskutils/cartotheque/Makefile =================================================================== --- head/deskutils/cartotheque/Makefile (revision 448471) +++ head/deskutils/cartotheque/Makefile (revision 448472) @@ -1,25 +1,25 @@ # $FreeBSD$ PORTNAME= cartotheque PORTVERSION= 0.1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= deskutils gnustep MASTER_SITES= LOCAL/dinoex DISTNAME= Cartotheque-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Managing notes on small cards LICENSE= LGPL21 USES= gnustep USE_GNUSTEP= back build post-patch: ${REINPLACE_CMD} -e 's|^GNUSTEP_INSTALLATION_DIR|#GNUSTEP_INSTALLATION_DIR|' \ ${WRKSRC}/GNUmakefile post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Cartotheque.app/Cartotheque .include Index: head/deskutils/charmap/Makefile =================================================================== --- head/deskutils/charmap/Makefile (revision 448471) +++ head/deskutils/charmap/Makefile (revision 448472) @@ -1,21 +1,21 @@ # Created by: gurkan@phys.ethz.ch # $FreeBSD$ PORTNAME= charmap PORTVERSION= 0.2 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= deskutils gnustep MASTER_SITES= http://www.sourcefiles.org/Utilities/GUI/ MAINTAINER= ports@FreeBSD.org COMMENT= Character map for GNUstep LICENSE= GPLv2 USES= gnustep USE_GNUSTEP= back base build gui post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Charmap.app/Charmap .include Index: head/deskutils/gnustep-wrapper/Makefile =================================================================== --- head/deskutils/gnustep-wrapper/Makefile (revision 448471) +++ head/deskutils/gnustep-wrapper/Makefile (revision 448472) @@ -1,38 +1,38 @@ # $FreeBSD$ PORTNAME= wrapper PORTVERSION= 0.1.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= deskutils gnustep #MASTER_SITES= ftp://ftp.raffael.ch/software/GNUstepWrapper/ MASTER_SITES= LOCAL/dinoex PKGNAMEPREFIX= gnustep- DISTNAME= GNUstepWrapper-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Create GNUstep app-wrappers of non-GNUstep applications LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USES= gnustep USE_GNUSTEP= back build USE_LDCONFIG= ${GNUSTEP_SYSTEM_LIBRARIES} ADDITIONAL_LIB_DIRS+= -L${WRKSRC}/libGSWrapper/obj MAKE_FLAGS+= debug=no post-patch: ${REINPLACE_CMD} -e 's|cp -u|#cp -p|' \ ${WRKSRC}/WrapperFactory/GNUmakefile.postamble ${REINPLACE_CMD} -e 's|^GNUSTEP_INSTALLATION_DIR|#GNUSTEP_INSTALLATION_DIR|' \ ${WRKSRC}/GNUmakefile post-install: ${INSTALL_PROGRAM} ${WRKSRC}/Launcher/obj/GSWrapper_Launcher \ ${STAGEDIR}${GNUSTEP_SYSTEM_ROOT}/Applications/WrapperFactory.app/Resources/ ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Tools/GSWrapper_Launcher ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Libraries/libGSWrapper.so ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/WrapperFactory.app/WrapperFactory .include Index: head/deskutils/gnustep-wrapper/files/patch-Directories.make =================================================================== --- head/deskutils/gnustep-wrapper/files/patch-Directories.make (nonexistent) +++ head/deskutils/gnustep-wrapper/files/patch-Directories.make (revision 448472) @@ -0,0 +1,11 @@ +--- Directories.make.orig 2017-08-13 17:48:46 UTC ++++ Directories.make +@@ -28,8 +28,4 @@ OBJ_BASE_DIR=shared_obj + endif + + ARCH_DIR=$(GNUSTEP_TARGET_CPU)/$(GNUSTEP_TARGET_OS)/$(LIBRARY_COMBO) +-ifneq ($(GNUSTEP_FLATTENED),yes) +-OBJ_DIR=$(OBJ_BASE_DIR)/$(ARCH_DIR) +-else + OBJ_DIR=$(OBJ_BASE_DIR) +-endif Property changes on: head/deskutils/gnustep-wrapper/files/patch-Directories.make ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/deskutils/gworkspace/Makefile =================================================================== --- head/deskutils/gworkspace/Makefile (revision 448471) +++ head/deskutils/gworkspace/Makefile (revision 448472) @@ -1,32 +1,31 @@ # $FreeBSD$ PORTNAME= gworkspace -PORTVERSION= 0.9.3 -PORTREVISION= 1 +PORTVERSION= 0.9.4 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 .if defined(WITHOUT_GHOSTSCRIPT) PLIST_SUB+= PDFVIEW="@comment " .else PLIST_SUB+= PDFVIEW="" USES+= ghostscript .endif pre-configure: ${RM} -r ${WRKSRC}/GWMetadata .include Index: head/deskutils/gworkspace/distinfo =================================================================== --- head/deskutils/gworkspace/distinfo (revision 448471) +++ head/deskutils/gworkspace/distinfo (revision 448472) @@ -1,2 +1,3 @@ -SHA256 (gworkspace-0.9.3.tar.gz) = 238343a8c4e447debec75ff49f4657f74a4256a49862899214a2c80616c79049 -SIZE (gworkspace-0.9.3.tar.gz) = 3833838 +TIMESTAMP = 1495374913 +SHA256 (gworkspace-0.9.4.tar.gz) = f3c18371c10d8ca02954017ce5c78d8f6b6ed3101a7adae86d7c557cea405632 +SIZE (gworkspace-0.9.4.tar.gz) = 3855909 Index: head/deskutils/gworkspace/pkg-plist =================================================================== --- head/deskutils/gworkspace/pkg-plist (revision 448471) +++ head/deskutils/gworkspace/pkg-plist (revision 448472) @@ -1,536 +1,525 @@ 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/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/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 +GNUstep/System/Library/Bundles/Role.extinfo/Resources/English.lproj/Localizable.strings +GNUstep/System/Library/Bundles/Role.extinfo/Resources/French.lproj/Localizable.strings +GNUstep/System/Library/Bundles/Role.extinfo/Resources/German.lproj/Localizable.strings +GNUstep/System/Library/Bundles/Role.extinfo/Resources/Italian.lproj/Localizable.strings +GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Resources/French.lproj/Localizable.strings +GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Resources/German.lproj/Localizable.strings +GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Resources/Italian.lproj/Localizable.strings +GNUstep/System/Library/Frameworks/FSNode.framework/Versions/0/Resources/Spanish.lproj/Localizable.strings + Index: head/deskutils/gworkspace-gwmetadata/Makefile =================================================================== --- head/deskutils/gworkspace-gwmetadata/Makefile (revision 448471) +++ head/deskutils/gworkspace-gwmetadata/Makefile (revision 448472) @@ -1,37 +1,37 @@ # $FreeBSD$ PORTNAME= gworkspace -PORTVERSION= 0.9.3 +PORTVERSION= 0.9.4 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 sqlite USE_GNUSTEP= back build GNU_CONFIGURE= yes LIB_DEPENDS= libDBKit.so:deskutils/gworkspace \ libPreferencePanes.so:deskutils/systempreferences USE_LDCONFIG= ${GNUSTEP_SYSTEM_LIBRARIES} LDFLAGS+= -lpthread WRKSRC= ${WRKDIR}/gworkspace-${PORTVERSION}/GWMetadata CONFIGURE_ARGS+= --with-sqlite-include=${LOCALBASE}/include CONFIGURE_ARGS+= --with-sqlite-library=${LOCALBASE}/lib DEFAULT_LIBVERSION= 0.1.0 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 448471) +++ head/deskutils/gworkspace-gwmetadata/distinfo (revision 448472) @@ -1,2 +1,3 @@ -SHA256 (gworkspace-0.9.3.tar.gz) = 238343a8c4e447debec75ff49f4657f74a4256a49862899214a2c80616c79049 -SIZE (gworkspace-0.9.3.tar.gz) = 3833838 +TIMESTAMP = 1495374909 +SHA256 (gworkspace-0.9.4.tar.gz) = f3c18371c10d8ca02954017ce5c78d8f6b6ed3101a7adae86d7c557cea405632 +SIZE (gworkspace-0.9.4.tar.gz) = 3855909 Index: head/deskutils/helpviewer/Makefile =================================================================== --- head/deskutils/helpviewer/Makefile (revision 448471) +++ head/deskutils/helpviewer/Makefile (revision 448472) @@ -1,26 +1,26 @@ # $FreeBSD$ PORTNAME= helpviewer PORTVERSION= 0.3 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= deskutils gnustep MASTER_SITES= http://www.roard.com/helpviewer/download/ DISTNAME= HelpViewer-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Online help viewer for GNUstep programs LICENSE= GPLv2 USES= gnustep tar:tgz USE_GNUSTEP= back build post-patch: ${REINPLACE_CMD} -e 's|Foundation/GSXML.h|GNUstepBase/GSXML.h|' \ ${WRKSRC}/HandlerStructureXLP.h \ ${WRKSRC}/TextFormatterXLP.h post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/HelpViewer.app/HelpViewer .include Index: head/deskutils/plopfolio/Makefile =================================================================== --- head/deskutils/plopfolio/Makefile (revision 448471) +++ head/deskutils/plopfolio/Makefile (revision 448472) @@ -1,26 +1,26 @@ # $FreeBSD$ PORTNAME= plopfolio PORTVERSION= 0.1.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= deskutils gnustep MASTER_SITES= GNUSTEP/usr-apps MAINTAINER= ports@FreeBSD.org COMMENT= Free clone of KlipFolio for GNUstep LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USES= gnustep USE_GNUSTEP= back build post-patch: ${REINPLACE_CMD} -e 's|Foundation/GSXML.h|GNUstepBase/GSXML.h|' \ ${WRKSRC}/Channel.m ${WRKSRC}/PlopFolio.m \ ${WRKSRC}/PreferencesPanelController.m post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/PlopFolio.app/PlopFolio .include Index: head/deskutils/preferences/Makefile =================================================================== --- head/deskutils/preferences/Makefile (revision 448471) +++ head/deskutils/preferences/Makefile (revision 448472) @@ -1,36 +1,36 @@ # $FreeBSD$ PORTNAME= preferences PORTVERSION= 1.2.0 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= deskutils gnustep MASTER_SITES= SF/prefsapp/prefsapp/${PORTVERSION} DISTNAME= Preferences-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= GNUstep workspace manager LICENSE_COMB= multi LICENSE= GPLv2 LGPL21 USES= tar:bzip2 gnustep USE_GNUSTEP= back build USE_LDCONFIG= ${GNUSTEP_SYSTEM_LIBRARIES} DEAFULT_LIBVERSION= 1.1.1 MODIFY= GNUmakefile.preamble PrefsModule/GNUmakefile.preamble \ Modules/Keyboard/GNUmakefile.preamble \ Modules/PrefsApp/GNUmakefile.preamble post-patch: ${REINPLACE_CMD} 's, -Werror,,' ${MODIFY:S,^,${WRKSRC}/,} ${REINPLACE_CMD} -e 's|^GNUSTEP_INSTALLATION_DIR|#GNUSTEP_INSTALLATION_DIR|' \ ${WRKSRC}/GNUmakefile.preamble post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Preferences.app/Preferences ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Preferences.app/Resources/PrefsApp.prefs/PrefsApp ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Frameworks/PrefsModule.framework/Versions/0/libPrefsModule.so ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Preferences/Keyboard.prefs/Keyboard .include Index: head/deskutils/preferences/files/patch-Keyboard.m =================================================================== --- head/deskutils/preferences/files/patch-Keyboard.m (revision 448471) +++ head/deskutils/preferences/files/patch-Keyboard.m (nonexistent) @@ -1,10 +0,0 @@ ---- Modules/Keyboard/Keyboard.m.orig 2002-06-08 10:29:36.000000000 +0200 -+++ Modules/Keyboard/Keyboard.m 2010-05-22 11:24:43.000000000 +0200 -@@ -37,6 +37,7 @@ - #import - #import - #import -+#import - - #import "Keyboard.h" - #import "KeyboardView.h" Property changes on: head/deskutils/preferences/files/patch-Keyboard.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/deskutils/preferences/files/patch-Modules-Keyboard-GNUmakefile =================================================================== --- head/deskutils/preferences/files/patch-Modules-Keyboard-GNUmakefile (revision 448471) +++ head/deskutils/preferences/files/patch-Modules-Keyboard-GNUmakefile (nonexistent) @@ -1,11 +0,0 @@ ---- Modules/Keyboard/GNUmakefile.orig 2014-07-30 00:10:57.436168949 +0800 -+++ Modules/Keyboard/GNUmakefile 2014-07-30 00:11:06.363171068 +0800 -@@ -3,7 +3,7 @@ include $(GNUSTEP_MAKEFILES)/common.make - BUNDLE_NAME= Keyboard - BUNDLE_EXTENSION= .prefs - --BUNDLE_INSTALL_DIR= $(GNUSTEP_SYSTEM_ROOT)/Library/Preferences -+BUNDLE_INSTALL_DIR= $(DESTDIR)$(GNUSTEP_SYSTEM_ROOT)/Library/Preferences - - Keyboard_RESOURCE_FILES= \ - Keyboard.gorm Property changes on: head/deskutils/preferences/files/patch-Modules-Keyboard-GNUmakefile ___________________________________________________________________ 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/deskutils/preferences/files/patch-GNUmakefile.preamble =================================================================== --- head/deskutils/preferences/files/patch-GNUmakefile.preamble (nonexistent) +++ head/deskutils/preferences/files/patch-GNUmakefile.preamble (revision 448472) @@ -0,0 +1,31 @@ +--- GNUmakefile.preamble.orig 2002-02-12 04:35:17 UTC ++++ GNUmakefile.preamble +@@ -2,10 +2,10 @@ + ADDITIONAL_CPPFLAGS += + + # Additional flags to pass to the Objective-C compiler +-ADDITIONAL_OBJCFLAGS += -Wall -Werror ++ADDITIONAL_OBJCFLAGS += -Wall + + # Additional flags to pass to the C compiler +-ADDITIONAL_CFLAGS += -Wall -Werror ++ADDITIONAL_CFLAGS += -Wall + + # Additional include directories the compiler should search + ADDITIONAL_INCLUDE_DIRS += +@@ -30,15 +30,3 @@ ADDITIONAL_OBJC_LIBS += + ADDITIONAL_TOOL_LIBS += + # WebObjects + ADDITIONAL_WO_LIBS += +- +-# +-# Flags dealing with installing and uninstalling +-# +-GNUSTEP_INSTALLATION_DIR=$(GNUSTEP_SYSTEM_ROOT) +- +-# Additional directories to be created during installation +-ADDITIONAL_INSTALL_DIRS += \ +- $(GNUSTEP_USER_ROOT)/Library/Preferences \ +- $(GNUSTEP_LOCAL_ROOT)/Library/Preferences \ +- $(GNUSTEP_NETWORK_ROOT)/Library/Preferences \ +- $(GNUSTEP_SYSTEM_ROOT)/Library/Preferences Property changes on: head/deskutils/preferences/files/patch-GNUmakefile.preamble ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/deskutils/preferences/files/patch-Modules_Keyboard_GNUmakefile =================================================================== --- head/deskutils/preferences/files/patch-Modules_Keyboard_GNUmakefile (nonexistent) +++ head/deskutils/preferences/files/patch-Modules_Keyboard_GNUmakefile (revision 448472) @@ -0,0 +1,11 @@ +--- Modules/Keyboard/GNUmakefile.orig 2002-02-12 04:49:55 UTC ++++ Modules/Keyboard/GNUmakefile +@@ -3,7 +3,7 @@ include $(GNUSTEP_MAKEFILES)/common.make + BUNDLE_NAME= Keyboard + BUNDLE_EXTENSION= .prefs + +-BUNDLE_INSTALL_DIR= $(GNUSTEP_SYSTEM_ROOT)/Library/Preferences ++BUNDLE_INSTALL_DIR= $(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Preferences + + Keyboard_RESOURCE_FILES= \ + Keyboard.gorm Property changes on: head/deskutils/preferences/files/patch-Modules_Keyboard_GNUmakefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/deskutils/preferences/files/patch-Modules_Keyboard_Keyboard.m =================================================================== --- head/deskutils/preferences/files/patch-Modules_Keyboard_Keyboard.m (nonexistent) +++ head/deskutils/preferences/files/patch-Modules_Keyboard_Keyboard.m (revision 448472) @@ -0,0 +1,13 @@ +--- Modules/Keyboard/Keyboard.m.orig 2017-08-13 12:40:14 UTC ++++ Modules/Keyboard/Keyboard.m +@@ -34,9 +34,7 @@ static const char rcsid[] = + # include "Config.h" + #endif + +-#import +-#import +-#import ++#import + + #import "Keyboard.h" + #import "KeyboardView.h" Property changes on: head/deskutils/preferences/files/patch-Modules_Keyboard_Keyboard.m ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/deskutils/preferences/files/patch-PrefsModule_GNUmakefile.preamble =================================================================== --- head/deskutils/preferences/files/patch-PrefsModule_GNUmakefile.preamble (nonexistent) +++ head/deskutils/preferences/files/patch-PrefsModule_GNUmakefile.preamble (revision 448472) @@ -0,0 +1,21 @@ +--- PrefsModule/GNUmakefile.preamble.orig 2002-02-12 05:02:11 UTC ++++ PrefsModule/GNUmakefile.preamble +@@ -2,10 +2,10 @@ + ADDITIONAL_CPPFLAGS += + + # Additional flags to pass to the Objective-C compiler +-ADDITIONAL_OBJCFLAGS += -Wall -Werror ++ADDITIONAL_OBJCFLAGS += -Wall + + # Additional flags to pass to the C compiler +-ADDITIONAL_CFLAGS += -Wall -Werror ++ADDITIONAL_CFLAGS += -Wall + + # Additional include directories the compiler should search + ADDITIONAL_INCLUDE_DIRS += +@@ -34,5 +34,4 @@ ADDITIONAL_WO_LIBS += + # + # Flags dealing with installing and uninstalling + # +-GNUSTEP_INSTALLATION_DIR=$(GNUSTEP_SYSTEM_ROOT) + # Additional directories to be created during installation Property changes on: head/deskutils/preferences/files/patch-PrefsModule_GNUmakefile.preamble ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/deskutils/simpleagenda/Makefile =================================================================== --- head/deskutils/simpleagenda/Makefile (revision 448471) +++ head/deskutils/simpleagenda/Makefile (revision 448472) @@ -1,28 +1,28 @@ # $FreeBSD$ PORTNAME= simpleagenda PORTVERSION= 0.43 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= deskutils gnustep MASTER_SITES= http://coyote.octets.fr/pub/gnustep/ DISTNAME= SimpleAgenda-${PORTVERSION} MAINTAINER= theraven@FreeBSD.org COMMENT= simple calendar and agenda application LIB_DEPENDS+= libical.so:devel/libical LICENSE= GPLv2 USES= gnustep USE_GNUSTEP= back build GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include CFLAGS+= -I${LOCALBASE}/include pre-configure: ${REINPLACE_CMD} -e 's|SimpleAgenda|SimpleAgenda.m|' ${WRKSRC}/configure ${REINPLACE_CMD} -e 's|-luuid||' ${WRKSRC}/GNUmakefile.preamble .include Index: head/deskutils/systempreferences/Makefile =================================================================== --- head/deskutils/systempreferences/Makefile (revision 448471) +++ head/deskutils/systempreferences/Makefile (revision 448472) @@ -1,20 +1,20 @@ # $FreeBSD$ PORTNAME= systempreferences PORTVERSION= 1.2.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= deskutils gnustep MASTER_SITES= GNUSTEP/usr-apps DISTNAME= SystemPreferences-${PORTVERSION} MAINTAINER= theraven@FreeBSD.org COMMENT= System Preferences application for GNUstep LICENSE= GPLv2 USES= gnustep USE_GNUSTEP= back build DEFAULT_LIBVERSION= 1.0.0 USE_LDCONFIG= ${GNUSTEP_SYSTEM_LIBRARIES} .include Index: head/deskutils/toolboxkit/Makefile =================================================================== --- head/deskutils/toolboxkit/Makefile (revision 448471) +++ head/deskutils/toolboxkit/Makefile (revision 448472) @@ -1,26 +1,26 @@ # $FreeBSD$ PORTNAME= toolbox PORTVERSION= 0.8 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= deskutils gnustep MASTER_SITES= http://ftp.azc.uam.mx/mirrors/gnu/savannah/files/toolbox/Release.pkg/0.8/ \ LOCAL/dinoex PKGNAMESUFFIX= kit${PKGNAMESUFFIX2} DISTNAME= Toolbox-${PORTVERSION} LICENSE= GPLv2 MAINTAINER= ports@FreeBSD.org COMMENT= Toolbox bundle for GNUstep USES= gnustep USE_GNUSTEP= back build USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} WRKSRC= ${WRKDIR}/Toolbox/Toolbox post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Libraries/libToolbox.so .include Index: head/devel/cherivis-devel/Makefile =================================================================== --- head/devel/cherivis-devel/Makefile (revision 448471) +++ head/devel/cherivis-devel/Makefile (revision 448472) @@ -1,25 +1,26 @@ # $FreeBSD$ PORTNAME= cherivis-devel PORTVERSION= 0.4 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= devel gnustep MAINTAINER= theraven@FreeBSD.org COMMENT= Visualisation tool for CHERI / BERI streamtraces LICENSE= MIT BROKEN_aarch64= does not compile: error: unexpected token in argument list USES= gnustep USE_GITHUB= yes GH_ACCOUNT= CTSRD-CHERI GH_PROJECT= CheriVis LIB_DEPENDS+= libcheritrace.so:devel/cheritrace-devel USE_GNUSTEP= back build USE_LDCONFIG= ${GNUSTEP_SYSTEM_LIBRARIES} .include Index: head/devel/fortytwo-encore/Makefile =================================================================== --- head/devel/fortytwo-encore/Makefile (revision 448471) +++ head/devel/fortytwo-encore/Makefile (revision 448472) @@ -1,37 +1,37 @@ # $FreeBSD$ PORTNAME= encore PORTVERSION= 0.3.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel gnustep MASTER_SITES= SF/fortytwo/Encore/${PORTVERSION} PKGNAMEPREFIX= fortytwo- DISTFILES= Encore-${PORTVERSION}-src.tgz \ Encore-${PORTVERSION}-api-ref.tgz MAINTAINER= ports@FreeBSD.org COMMENT= Utility classes for GNUstep LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gnustep USE_GNUSTEP= back build DEFAULT_LIBVERSION= 0.1 USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} WRKSRC= ${WRKDIR}/Encore DOCSDIR= ${GNUSTEP_PREFIX}/Local/Library/Documentation/Encore PORTDOCS= * OPTIONS_DEFINE= DOCS post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Frameworks/Encore.framework/Versions/0/libEncore.so post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKDIR}/Encore-${PORTVERSION}-api-ref && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} .include Index: head/devel/gnustep/Makefile =================================================================== --- head/devel/gnustep/Makefile (revision 448471) +++ head/devel/gnustep/Makefile (revision 448472) @@ -1,15 +1,15 @@ # Created by: Thomas Gellekum # $FreeBSD$ PORTNAME= gnustep PORTVERSION= 1.28.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel lang gnustep MAINTAINER= theraven@FreeBSD.org COMMENT= Objective-C libraries based on the OpenStep standard USES= metaport gnustep USE_GNUSTEP= back gui base .include Index: head/devel/gnustep-make/files/patch-Instance_framework.make =================================================================== --- head/devel/gnustep-make/files/patch-Instance_framework.make (revision 448471) +++ head/devel/gnustep-make/files/patch-Instance_framework.make (nonexistent) @@ -1,11 +0,0 @@ ---- Instance/framework.make 2016-03-18 10:56:04.192482000 -0500 -+++ Instance/framework.make 2016-03-18 10:56:59.215696000 -0500 -@@ -493,7 +493,7 @@ - echo "@end" >> $@; \ - echo "@implementation $(DUMMY_FRAMEWORK)" >> $@; \ - echo "+ (NSString *)frameworkEnv { return nil; }" >> $@; \ -- echo "+ (NSString *)frameworkPath { return @\"$(FRAMEWORK_INSTALL_DIR)\"; }" >> $@; \ -+ echo "+ (NSString *)frameworkPath { return @\"$(GNUSTEP_$(GNUSTEP_INSTALLATION_DOMAIN)_FRAMEWORKS)\"; }" >> $@; \ - echo "+ (NSString *)frameworkVersion { return @\"$(CURRENT_VERSION_NAME)\"; }" >> $@; \ - echo "static NSString *allClasses[] = {$$classlist};" >> $@; \ - echo "+ (NSString *const*)frameworkClasses { return allClasses; }" >> $@;\ Property changes on: head/devel/gnustep-make/files/patch-Instance_framework.make ___________________________________________________________________ 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/devel/gnustep-make/Makefile =================================================================== --- head/devel/gnustep-make/Makefile (revision 448471) +++ head/devel/gnustep-make/Makefile (revision 448472) @@ -1,62 +1,61 @@ # Created by: Thomas Gellekum # $FreeBSD$ PORTNAME= gnustep-make -PORTVERSION= 2.6.7 -PORTREVISION= 2 +PORTVERSION= 2.7.0 CATEGORIES= devel gnustep MASTER_SITES= GNUSTEP/core MAINTAINER= theraven@FreeBSD.org COMMENT= GNUstep makefile package LICENSE= GPLv3 USES= gnustep objc shebangfix GNU_CONFIGURE= yes SHEBANG_FILES= bake_debian_files.sh 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 448471) +++ head/devel/gnustep-make/distinfo (revision 448472) @@ -1,2 +1,3 @@ -SHA256 (gnustep-make-2.6.7.tar.gz) = 112b57737c3dcc66c78a5c88925ae1d672673d256d9935598e98bcd687d051e4 -SIZE (gnustep-make-2.6.7.tar.gz) = 583730 +TIMESTAMP = 1495188955 +SHA256 (gnustep-make-2.7.0.tar.gz) = 90a01cbfb68aafe01c4cc4123121ebd2da0e1e2076795b5682f0833fddf311ce +SIZE (gnustep-make-2.7.0.tar.gz) = 596399 Index: head/devel/gnustep-make/pkg-plist =================================================================== --- head/devel/gnustep-make/pkg-plist (revision 448471) +++ head/devel/gnustep-make/pkg-plist (revision 448472) @@ -1,184 +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/pkgconfig.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/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 448471) +++ head/devel/gorm/Makefile (revision 448472) @@ -1,19 +1,19 @@ # $FreeBSD$ PORTNAME= gorm -PORTVERSION= 1.2.22 +PORTVERSION= 1.2.23 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 .include Index: head/devel/gorm/distinfo =================================================================== --- head/devel/gorm/distinfo (revision 448471) +++ head/devel/gorm/distinfo (revision 448472) @@ -1,2 +1,3 @@ -SHA256 (gorm-1.2.22.tar.gz) = b15aca762a41a233535cdcadf3e0ce8cfcfbb48c31857eef246ca5d68bb105d7 -SIZE (gorm-1.2.22.tar.gz) = 695453 +TIMESTAMP = 1495374876 +SHA256 (gorm-1.2.23.tar.gz) = cbd25abbbc85d81d50111be75da14aabce368337694948c95b68b6fdf74eeea2 +SIZE (gorm-1.2.23.tar.gz) = 695799 Index: head/devel/highlighterkit/Makefile =================================================================== --- head/devel/highlighterkit/Makefile (revision 448471) +++ head/devel/highlighterkit/Makefile (revision 448472) @@ -1,20 +1,20 @@ # $FreeBSD$ PORTNAME= highlighterkit PORTVERSION= 0.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel gnustep MASTER_SITES= http://download.gna.org/pmanager/0.2/ DISTNAME= HighlighterKit-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Framework needed by Project Manager USES= tar:bzip2 gnustep USE_GNUSTEP= back build USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Frameworks/HighlighterKit.framework/Versions/0/libHighlighterKit.so .include Index: head/devel/performance/Makefile =================================================================== --- head/devel/performance/Makefile (revision 448471) +++ head/devel/performance/Makefile (revision 448472) @@ -1,19 +1,19 @@ # $FreeBSD$ PORTNAME= performance PORTVERSION= 0.5.0 -PORTREVISION= 2 +PORTREVISION= 3 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/projectcenter/Makefile =================================================================== --- head/devel/projectcenter/Makefile (revision 448471) +++ head/devel/projectcenter/Makefile (revision 448472) @@ -1,40 +1,41 @@ # Created by: Thomas Gellekum # $FreeBSD$ PORTNAME= projectcenter PORTVERSION= 0.6.2 +PORTREVISION= 1 CATEGORIES= devel gnustep MASTER_SITES= GNUSTEP/dev-apps DISTNAME= ProjectCenter-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Development environment for GNUstep LICENSE= GPLv2+ # comment in code; COPYING says GPLv3 USES= gnustep USE_GNUSTEP= back build USE_LDCONFIG= ${GNUSTEP_SYSTEM_LIBRARIES} PLIST_SUB+= FRAMEVERSION=${PORTVERSION} post-install: ${STRIP_CMD} \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/ProjectCenter.app/ProjectCenter \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/ProjectCenter.app/Resources/Aggregate.project/Aggregate \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/ProjectCenter.app/Resources/Application.project/Application \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/ProjectCenter.app/Resources/Build.preferences/Build \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/ProjectCenter.app/Resources/Bundle.project/Bundle \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/ProjectCenter.app/Resources/EditorFSC.preferences/EditorFSC \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/ProjectCenter.app/Resources/Framework.project/Framework \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/ProjectCenter.app/Resources/Library.project/Library \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/ProjectCenter.app/Resources/Misc.preferences/Misc \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/ProjectCenter.app/Resources/ProjectCenter.debugger/ProjectCenter \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/ProjectCenter.app/Resources/ProjectCenter.editor/ProjectCenter \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/ProjectCenter.app/Resources/ProjectCenter.parser/ProjectCenter \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/ProjectCenter.app/Resources/ResourceSet.project/ResourceSet \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/ProjectCenter.app/Resources/Saving.preferences/Saving \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/ProjectCenter.app/Resources/Tool.project/Tool \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/${PORTVERSION}/libProjectCenter.so .include Index: head/devel/sope2/Makefile =================================================================== --- head/devel/sope2/Makefile (revision 448471) +++ head/devel/sope2/Makefile (revision 448472) @@ -1,58 +1,59 @@ # Created by: Euan Thoms # $FreeBSD$ PORTNAME= sope2 PORTVERSION= 2.3.22 +PORTREVISION= 1 CATEGORIES= devel gnustep MASTER_SITES= http://www.sogo.nu/files/downloads/SOGo/Sources/ DISTNAME= SOPE-${PORTVERSION} MAINTAINER= euan@potensol.com COMMENT= Extensive set of GNUstep web application frameworks LICENSE= LGPL20 LIB_DEPENDS= libxml2.so:textproc/libxml2 \ libmemcached.so:databases/libmemcached WRKSRC= ${WRKDIR}/SOPE OPTIONS_DEFINE= LDAP MYSQL PGSQL MEMCACHED OPTIONS_DEFAULT= LDAP PGSQL MEMCACHED OPTIONS_SUB= yes LDAP_DESC= Build with LDAP support MYSQL_DESC= Build with MySQL support PGSQL_DESC= Build with PostgreSQL support MEMCACHED_DESC= Install memcached USES= gmake iconv gnustep USE_GNUSTEP= base build USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} SUB_LIST+= GNUSTEP_LOCAL_TOOLS=${GNUSTEP_LOCAL_TOOLS} \ GNUSTEP_MAKEFILES=${GNUSTEP_MAKEFILES} CONFIGURE_ARGS= --with-gnustep --disable-debug --enable-strip LDAP_USE= OPENLDAP=client PGSQL_USES= pgsql MYSQL_USE= MYSQL=client MEMCACHED_RUN_DEPENDS= ${LOCALBASE}/bin/memcached:databases/memcached post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/configure post-patch-LDAP-off: @${REINPLACE_CMD} -e '/checkLinking "ldap"/d' ${WRKSRC}/configure post-patch-PGSQL-off: @${REINPLACE_CMD} -e '/checkLinking "pq"/d' ${WRKSRC}/configure post-patch-MYSQL-off: @${REINPLACE_CMD} -e '/checkLinking "mysqlclient"/d' ${WRKSRC}/configure do-configure: cd ${WRKSRC} ; . ${GNUSTEP_MAKEFILES}/GNUstep.sh ; ./configure ${CONFIGURE_ARGS} .include Index: head/devel/sope3/Makefile =================================================================== --- head/devel/sope3/Makefile (revision 448471) +++ head/devel/sope3/Makefile (revision 448472) @@ -1,61 +1,62 @@ # Created by: Euan Thoms # $FreeBSD$ PORTNAME= sope3 PORTVERSION= 3.2.10 +PORTREVISION= 1 CATEGORIES= devel gnustep MASTER_SITES= http://www.sogo.nu/files/downloads/SOGo/Sources/ DISTNAME= SOPE-${PORTVERSION} MAINTAINER= euan@potensol.com COMMENT= Extensive set of GNUstep web application frameworks LICENSE= LGPL20 LIB_DEPENDS= libxml2.so:textproc/libxml2 \ libmemcached.so:databases/libmemcached WRKSRC= ${WRKDIR}/SOPE OPTIONS_DEFINE= LDAP MYSQL PGSQL MEMCACHED OPTIONS_DEFAULT= LDAP PGSQL MEMCACHED OPTIONS_SUB= yes LDAP_DESC= Build with LDAP support MYSQL_DESC= Build with MySQL support PGSQL_DESC= Build with PostgreSQL support MEMCACHED_DESC= Install memcached USES= gmake iconv gnustep USE_GNUSTEP= base build USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} CONFLICTS= sope2-[0-9]* SUB_LIST+= GNUSTEP_LOCAL_TOOLS=${GNUSTEP_LOCAL_TOOLS} \ GNUSTEP_MAKEFILES=${GNUSTEP_MAKEFILES} CONFIGURE_ARGS= --with-gnustep --disable-debug --enable-strip CONFIGURE_ENV+= CC="${CC}" LDAP_USE= OPENLDAP=client PGSQL_USES= pgsql MYSQL_USE= MYSQL=client MEMCACHED_RUN_DEPENDS= ${LOCALBASE}/bin/memcached:databases/memcached post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/configure post-patch-LDAP-off: @${REINPLACE_CMD} -e '/checkLinking "ldap"/d' ${WRKSRC}/configure post-patch-PGSQL-off: @${REINPLACE_CMD} -e '/checkLinking "pq"/d' ${WRKSRC}/configure post-patch-MYSQL-off: @${REINPLACE_CMD} -e '/checkLinking "mysqlclient"/d' ${WRKSRC}/configure do-configure: cd ${WRKSRC} ; . ${GNUSTEP_MAKEFILES}/GNUstep.sh ; ./configure ${CONFIGURE_ARGS} .include Index: head/devel/wizardkit/Makefile =================================================================== --- head/devel/wizardkit/Makefile (revision 448471) +++ head/devel/wizardkit/Makefile (revision 448472) @@ -1,23 +1,23 @@ # $FreeBSD$ PORTNAME= wizardkit PORTVERSION= 0.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel gnustep MASTER_SITES= http://download.gna.org/pmanager/0.2/ DISTNAME= WizardKit-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Framework needed by Project Manager LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING USES= tar:bzip2 gnustep USE_GNUSTEP= back build USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Frameworks/WizardKit.framework/Versions/0/libWizardKit.so .include Index: head/finance/expense/Makefile =================================================================== --- head/finance/expense/Makefile (revision 448471) +++ head/finance/expense/Makefile (revision 448472) @@ -1,25 +1,25 @@ # $FreeBSD$ PORTNAME= expense PORTVERSION= 0.1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= finance gnustep MASTER_SITES= http://www.eskimo.com/~pburns/Expense/files/ DISTNAME= Expense-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Application to track your expense under GNUstep LICENSE= GPLv2 USES= gnustep USE_GNUSTEP= back build WRKSRC= ${WRKDIR}/Expense PORTSCOUT= ignore:1 post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Expense.app/Expense .include Index: head/ftp/gnustep-ftp/Makefile =================================================================== --- head/ftp/gnustep-ftp/Makefile (revision 448471) +++ head/ftp/gnustep-ftp/Makefile (revision 448472) @@ -1,23 +1,23 @@ # $FreeBSD$ PORTNAME= ftp PORTVERSION= 0.5 -PORTREVISION= 2 +PORTREVISION= 3 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/waiho/Makefile =================================================================== --- head/ftp/waiho/Makefile (revision 448471) +++ head/ftp/waiho/Makefile (revision 448472) @@ -1,22 +1,22 @@ # $FreeBSD$ PORTNAME= waiho PORTVERSION= 0.2 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= ftp gnustep MASTER_SITES= http://www.roard.com/waiho/download/ DISTNAME= Waiho-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Simple FTP client for GNUstep LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USES= tar:tgz gnustep USE_GNUSTEP= back build post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Waiho.app/Waiho .include Index: head/games/fortunate/Makefile =================================================================== --- head/games/fortunate/Makefile (revision 448471) +++ head/games/fortunate/Makefile (revision 448472) @@ -1,15 +1,15 @@ # $FreeBSD$ PORTNAME= fortunate PORTVERSION= 3.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= games gnustep MASTER_SITES= GNUSTEP_CH MAINTAINER= ports@FreeBSD.org COMMENT= Graphical front-end to the command-line BSD fortune USES= gnustep USE_GNUSTEP= back build .include Index: head/games/gmastermind/Makefile =================================================================== --- head/games/gmastermind/Makefile (revision 448471) +++ head/games/gmastermind/Makefile (revision 448472) @@ -1,22 +1,22 @@ # $FreeBSD$ PORTNAME= gmastermind PORTVERSION= 0.6 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games gnustep MASTER_SITES= SAVANNAH/gap DISTNAME= GMastermind-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Well-known mastermind game LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING USES= gnustep USE_GNUSTEP= back build post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/GMastermind.app/GMastermind .include Index: head/games/gmines/Makefile =================================================================== --- head/games/gmines/Makefile (revision 448471) +++ head/games/gmines/Makefile (revision 448472) @@ -1,21 +1,21 @@ # $FreeBSD$ PORTNAME= gmines PORTVERSION= 0.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games gnustep MASTER_SITES= SAVANNAH/gap DISTNAME= GMines-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Well-known minesweeper game for GNUstep LICENSE= GPLv2+ USES= gnustep USE_GNUSTEP= back build post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/GMines.app/GMines .include Index: head/games/gnustep-ladder/Makefile =================================================================== --- head/games/gnustep-ladder/Makefile (revision 448471) +++ head/games/gnustep-ladder/Makefile (revision 448472) @@ -1,26 +1,26 @@ # Created by: gurkan@phys.ethz.ch # $FreeBSD$ PORTNAME= ladder PORTVERSION= 1.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= games gnustep MASTER_SITES= SAVANNAH/gap PKGNAMEPREFIX= gnustep- DISTNAME= Ladder-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= GNU Go frontend for GNUstep LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING.GPL RUN_DEPENDS= gnugo:games/gnugo USES= gnustep USE_GNUSTEP= back build post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Ladder.app/Ladder .include Index: head/games/gnustep-sudoku/Makefile =================================================================== --- head/games/gnustep-sudoku/Makefile (revision 448471) +++ head/games/gnustep-sudoku/Makefile (revision 448472) @@ -1,22 +1,22 @@ # $FreeBSD$ PORTNAME= sudoku PORTVERSION= 0.7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games gnustep MASTER_SITES= SAVANNAH/gap PKGNAMEPREFIX= gnustep- DISTNAME= Sudoku-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Sudoku solver and generator LICENSE= GPLv3+ USES= gnustep USE_GNUSTEP= back build post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Sudoku.app/Sudoku .include Index: head/games/gomoku/Makefile =================================================================== --- head/games/gomoku/Makefile (revision 448471) +++ head/games/gomoku/Makefile (revision 448472) @@ -1,22 +1,22 @@ # Created by: Thomas Gellekum # $FreeBSD$ PORTNAME= gomoku PORTVERSION= 1.2.9 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games gnustep MASTER_SITES= http://www.gnustep.it/nicola/Applications/Gomoku/ DISTNAME= Gomoku-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= GNUstep Gomoku game LICENSE= GPLv2+ USES= gnustep USE_GNUSTEP= back build post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Gomoku.app/Gomoku .include Index: head/games/grubik/Makefile =================================================================== --- head/games/grubik/Makefile (revision 448471) +++ head/games/grubik/Makefile (revision 448472) @@ -1,26 +1,24 @@ # $FreeBSD$ PORTNAME= grubik PORTVERSION= 0.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= games gnustep MASTER_SITES= http://debian.uni-essen.de/misc/GNUstep/Apps/Recreational/ DISTNAME= GRubik MAINTAINER= ports@FreeBSD.org COMMENT= Virtual 3D Rubiks cube for GNUstep LICENSE= GPLv2+ USES= tar:tgz gnustep USE_GNUSTEP= back build post-patch: ${RM} -r ${WRKSRC}/GRubik.app/ix86 - ${REINPLACE_CMD} -e 's|^//|# //|' \ - -e "/GNUSTEP_INSTALLATION_DIR/d" ${WRKSRC}/GNUmakefile post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/GRubik.app/GRubik .include Index: head/games/grubik/files/patch-GNUmakefile =================================================================== --- head/games/grubik/files/patch-GNUmakefile (nonexistent) +++ head/games/grubik/files/patch-GNUmakefile (revision 448472) @@ -0,0 +1,21 @@ +--- GNUmakefile.orig 2017-08-13 19:04:30 UTC ++++ GNUmakefile +@@ -1,8 +1,3 @@ +- +-GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT) +- +-GNUSTEP_MAKEFILES = $(GNUSTEP_SYSTEM_ROOT)/Makefiles +- + include $(GNUSTEP_MAKEFILES)/common.make + + # The application to be compiled +@@ -16,9 +11,6 @@ GRubik_OBJC_FILES = main.m \ + + SHARED_CFLAGS += -g + +-# The Resource files to be copied into the app's resources directory +-// GRubik_RESOURCE_FILES = Icons/* +- + -include GNUmakefile.preamble + + -include GNUmakefile.local Property changes on: head/games/grubik/files/patch-GNUmakefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/games/gshisen/Makefile =================================================================== --- head/games/gshisen/Makefile (revision 448471) +++ head/games/gshisen/Makefile (revision 448472) @@ -1,22 +1,22 @@ # Created by: Thomas Gellekum # $FreeBSD$ PORTNAME= gshisen PORTVERSION= 1.3.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games gnustep MASTER_SITES= SAVANNAH/gap DISTNAME= GShisen-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Shisen-sho puzzle game for GNUstep LICENSE= GPLv2+ USES= gnustep USE_GNUSTEP= back build post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/GShisen.app/GShisen .include Index: head/games/jigsaw/Makefile =================================================================== --- head/games/jigsaw/Makefile (revision 448471) +++ head/games/jigsaw/Makefile (revision 448472) @@ -1,21 +1,21 @@ # $FreeBSD$ PORTNAME= jigsaw PORTVERSION= 0.8 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games gnustep MASTER_SITES= SAVANNAH/gap DISTNAME= Jigsaw-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Simulates a jigsaw puzzle and illustrates the use of clipping paths LICENSE= GPLv2+ USES= gnustep USE_GNUSTEP= back build post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Jigsaw.app/Jigsaw .include Index: head/games/lapispuzzle/Makefile =================================================================== --- head/games/lapispuzzle/Makefile (revision 448471) +++ head/games/lapispuzzle/Makefile (revision 448472) @@ -1,25 +1,25 @@ # Created by: gurkan@phys.ethz.ch # $FreeBSD$ PORTNAME= lapispuzzle PORTVERSION= 1.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games gnustep MASTER_SITES= SAVANNAH/gap DISTNAME= LapisPuzzle-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Tetris-like game for GNUstep LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING USES= gnustep USE_GNUSTEP= back build WRKSRC= ${WRKDIR}/LapisPuzzle-${PORTVERSION} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/LapisPuzzle.app/LapisPuzzle .include Index: head/games/nextgo/Makefile =================================================================== --- head/games/nextgo/Makefile (revision 448471) +++ head/games/nextgo/Makefile (revision 448472) @@ -1,28 +1,28 @@ # $FreeBSD$ PORTNAME= nextgo PORTVERSION= 3.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= games gnustep MASTER_SITES= SAVANNAH/gap DISTNAME= NeXTGo-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Classic Go game for OPENSTEP/GNUstep LICENSE= GPLv1 LICENSE_FILE= ${WRKSRC}/COPYING USES= gnustep USE_GNUSTEP= back build post-patch: ${REINPLACE_CMD} -e 's|^GNUSTEP_INSTALLATION_DIR|#GNUSTEP_INSTALLATION_DIR|' \ ${WRKSRC}/GNUmakefile ${REINPLACE_CMD} -e 's|PSWait|myPSWait|' \ ${WRKSRC}/Board.m post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/NeXTGo.app/NeXTGo .include Index: head/games/nextgo/files/patch-GNUmakefile =================================================================== --- head/games/nextgo/files/patch-GNUmakefile (nonexistent) +++ head/games/nextgo/files/patch-GNUmakefile (revision 448472) @@ -0,0 +1,11 @@ +--- GNUmakefile.orig 2017-08-13 18:43:49 UTC ++++ GNUmakefile +@@ -28,8 +28,6 @@ + + #GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT) + +-GNUSTEP_MAKEFILES = $(GNUSTEP_SYSTEM_ROOT)/Library/Makefiles +- + NeXTGo_MAIN_MODEL_FILE = NeXTGo.gorm + + include $(GNUSTEP_MAKEFILES)/common.make Property changes on: head/games/nextgo/files/patch-GNUmakefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/games/nextgo/files/patch-smartgo.h =================================================================== --- head/games/nextgo/files/patch-smartgo.h (revision 448471) +++ head/games/nextgo/files/patch-smartgo.h (revision 448472) @@ -1,20 +1,20 @@ ---- smartgo.h.orig Sun Jan 12 05:01:52 2003 -+++ smartgo.h Sat Nov 18 17:18:57 2006 -@@ -122,7 +122,7 @@ +--- smartgo.h.orig 2003-01-12 04:01:52 UTC ++++ smartgo.h +@@ -122,7 +122,7 @@ typedef struct _node { extern node* parse_tree(char* inputBuffer); /* Routines from smartgoeval.c needed by other routines. */ -extern void evaluateNode(char *c, unsigned char b[][]); +extern void evaluateNode(char *c, unsigned char b[19][19]); /* Routines from smartgotree.c needed by other routines. */ -@@ -134,7 +134,7 @@ +@@ -134,7 +134,7 @@ extern node* findLast0(node* currentNode extern node* forwardOneVariant(node* currentNode); extern node* backOneVariant(node* currentNode); extern void clearNodeFlags(node* currentNode); -extern int evaluateSteps(node* currentNode, node* targetNode, unsigned char b[][]); +extern int evaluateSteps(node* currentNode, node* targetNode, unsigned char b[19][19]); extern void buildToNode(node* targetNode); extern node* stepForward(node* currentNode); extern node* stepBackward(node* currentNode); Index: head/games/oolite/Makefile =================================================================== --- head/games/oolite/Makefile (revision 448471) +++ head/games/oolite/Makefile (revision 448472) @@ -1,103 +1,103 @@ # Created by: Andriy Gapon # $FreeBSD$ PORTNAME= oolite PORTVERSION= 1.84 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games gnustep MASTER_SITES= https://github.com/OoliteProject/oolite/releases/download/1.84/ DISTNAME= ${PORTNAME}-source-${PORTVERSION} DIST_SUBDIR= oolite MAINTAINER= ports@FreeBSD.org COMMENT= Trade and combat space simulator, clone of Elite LICENSE= CC-BY-NC-SA-3.0 GPLv2 ZLIB LICENSE_COMB= multi LICENSE_FILE_CC-BY-NC-SA-3.0= ${WRKSRC}/Doc/LICENSE.TXT BUILD_DEPENDS= zip:archivers/zip \ ${LOCALBASE}/bin/unzip:archivers/unzip LIB_DEPENDS= libespeak.so:audio/espeak \ libnspr4.so:devel/nspr \ libvorbisfile.so:audio/libvorbis \ libpng.so:graphics/png \ libminizip.so:archivers/minizip USES= gnustep openal:al perl5 python:build tar:bzip2 USE_GL= gl glu USE_SDL= sdl USE_XORG= x11 USE_GNUSTEP= base build # Redefine DO_MAKE_BUILD, because current gnustep in USES overrides MAKEFILE # without possibility to change it, as it was done in the previous implementation DO_MAKE_BUILD= ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} Makefile ${_MAKE_JOBS} ${MAKE_ARGS:C,^${DESTDIRNAME}=.*,,g} ALL_TARGET= release-deployment USE_PERL5= build GNUSTEP_LOCAL_APPS= ${GNUSTEP_LOCAL_ROOT}/Applications SUB_FILES= oolite SUB_LIST= GNUSTEP_SYSTEM_TOOLS="${GNUSTEP_SYSTEM_TOOLS}" WRKSRC= ${WRKDIR}/${DISTNAME} RELEASEDIR= ${WRKSRC}/oolite.app DATADIR= ${GNUSTEP_LOCAL_APPS}/oolite.app PORTDATA= Resources PORTDOCS= *.pdf CHANGELOG.TXT contributors.txt PLIST_FILES+= bin/oolite %%DATADIR%%/oolite \ share/applications/oolite.desktop \ share/pixmaps/oolite-icon.png OPTIONS_DEFINE= DOCS BROKEN_aarch64= fails to configure: error: These compiler flags are invalid: -O BROKEN_armv6= fails to compile: your compiler does not follow the C++ specification for temporary object destruction order .include .if exists(${CC}) CCVERSION!= ${CC} --version COMPILER_VERSION= ${CCVERSION:M[0-9].[0-9]*:C/([0-9]).?/\1/g} COMPILER_IS_CLANG= ${CCVERSION:Mclang} # Check for LLVM/Clang v3.4.1 .if ${COMPILER_IS_CLANG} && ${COMPILER_VERSION} == 341 # Use compiler from ports, because of errors # for ${WRKSRC}/src/Core/Scripting/OOJavaScriptEngine.m file WITH_PORTS_CLANG= yes .endif .endif .if defined(WITH_PORTS_CLANG) BUILD_DEPENDS+= clang34:lang/clang34 CC= ${LOCALBASE}/bin/clang34 CXX= ${LOCALBASE}/bin/clang++34 CPP= ${LOCALBASE}/bin/clang-cpp34 .endif post-patch: .SILENT ${REINPLACE_CMD} -e 's/GNUSTEP_USER_ROOT/GNUSTEP_LOCAL_ROOT/ ; \ s/sdl-config/$${SDL_CONFIG}/ ; \ s|-lstdc++|`$${SDL_CONFIG} --libs` &| ; \ s|:src/Core/MiniZip|| ; \ s|-Isrc/Core/MiniZip|-I$${LOCALBASE}/include/minizip| ; \ s|-lz|-lminizip| ; \ /ioapi.c/d ; /unzip.c/d ; \ s|/usr/X11R6|$${LOCALBASE}|' \ ${WRKSRC}/GNUmakefile # Change value of the SAVEDIR define ${REINPLACE_CMD} -e 's|oolite-saves|\.oolite-saves|' \ ${WRKSRC}/src/Core/NSFileManagerOOExtensions.h do-install: (cd ${RELEASEDIR} && ${COPYTREE_SHARE} "${PORTDATA}" ${STAGEDIR}${DATADIR}) ${INSTALL_SCRIPT} ${WRKDIR}/oolite ${STAGEDIR}${PREFIX}/bin ${INSTALL_PROGRAM} ${RELEASEDIR}/oolite ${STAGEDIR}${DATADIR} ${INSTALL_DATA} ${WRKSRC}/installers/FreeDesktop/oolite.desktop \ ${STAGEDIR}${PREFIX}/share/applications ${INSTALL_DATA} ${WRKSRC}/installers/FreeDesktop/oolite-icon.png \ ${STAGEDIR}${PREFIX}/share/pixmaps (cd ${WRKSRC}/Doc && ${COPYTREE_SHARE} "${PORTDOCS}" ${STAGEDIR}${DOCSDIR}) .include Index: head/graphics/cenon/Makefile =================================================================== --- head/graphics/cenon/Makefile (revision 448471) +++ head/graphics/cenon/Makefile (revision 448472) @@ -1,42 +1,49 @@ # Created by: Alexey Dokuchaev # $FreeBSD$ PORTNAME= cenon -PORTVERSION= 4.0.2 -PORTREVISION= 3 +PORTVERSION= 4.0.3 CATEGORIES= graphics gnustep MASTER_SITES= http://www.cenon.zone/download/source/ DISTNAME= Cenon-${MAINVERSION} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} DIST_SUBDIR= ${PORTNAME} EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= theraven@FreeBSD.org COMMENT= Vector graphics tool for GNUstep USES= tar:bzip2 gnustep -USE_GNUSTEP= back build +USE_GNUSTEP= gui base build WRKSRC= ${WRKDIR}/Cenon -MAINVERSION= 4.0.2 +MAINVERSION= 4.0.5 FULLVERSION= 4.0.0 CENON_LIB_DIR= ${GNUSTEP_SYSTEM_ROOT}/Library/Cenon OPTIONS_DEFINE= FULL_LIBRARY FULL_LIBRARY_DESC= Install complete Cenon Library +# Work around the fact that GNUstep doesn't define a constant for a higher +# version of AppKit that it supports. +OBJCFLAGS+=-DNSAppKitVersionNumber10_8=1200 + .include DISTFILES+= CenonLibrary-${FULLVERSION}-1${EXTRACT_SUFX} post-patch: ${REINPLACE_CMD} -e 's|^GNUSTEP_INSTALLATION_DOMAIN|#GNUSTEP_INSTALLATION_DOMAIN|' \ ${WRKSRC}/GNUmakefile pre-install: ${MKDIR} ${STAGEDIR}${GNUSTEP_SYSTEM_ROOT}/Library/ ${TAR} -xyvf ${_DISTDIR}/CenonLibrary-${FULLVERSION}-1${EXTRACT_SUFX} \ -C ${STAGEDIR}${GNUSTEP_SYSTEM_ROOT}/Library/ \ --exclude COPYING --exclude '._*' + +post-stage: + ${RM} ${STAGEDIR}${GNUSTEP_SYSTEM_ROOT}/Library/README + ${RM} ${STAGEDIR}${GNUSTEP_SYSTEM_ROOT}/Library/._README .include Index: head/graphics/cenon/distinfo =================================================================== --- head/graphics/cenon/distinfo (revision 448471) +++ head/graphics/cenon/distinfo (revision 448472) @@ -1,4 +1,5 @@ -SHA256 (cenon/Cenon-4.0.2.tar.bz2) = d228ff779f3967c6324eb7a081132a3d5d2237f03a23adcdfd4cae2fa7b0eb2f -SIZE (cenon/Cenon-4.0.2.tar.bz2) = 4150615 +TIMESTAMP = 1495787886 +SHA256 (cenon/Cenon-4.0.5.tar.bz2) = 7c159d9de557f597e757d933ee2b055f04fd2b49371c28853b5285eb2894224c +SIZE (cenon/Cenon-4.0.5.tar.bz2) = 10710712 SHA256 (cenon/CenonLibrary-4.0.0-1.tar.bz2) = b329331a4b5b40d93eeeddd98f6922a53401b6e4f437538cd98392f8828cbb44 SIZE (cenon/CenonLibrary-4.0.0-1.tar.bz2) = 2131692 Index: head/graphics/cenon/files/patch-DocView.m =================================================================== --- head/graphics/cenon/files/patch-DocView.m (nonexistent) +++ head/graphics/cenon/files/patch-DocView.m (revision 448472) @@ -0,0 +1,13 @@ +--- DocView.m.orig 2017-05-26 08:51:18 UTC ++++ DocView.m +@@ -101,6 +101,10 @@ + - (void)joinSelection:(id)change messages:(BOOL)messages; + @end + ++@interface Dummy ++- (CGFloat)backingScaleFactor; ++@end ++ + NSString *e2PboardType = @"Cenon Graphic List"; + + static NSRect selectionRect = {{0.0, 0.0}, {0.0, 0.0}}; // shared rect for drawing the selection rect in -drawRect: Property changes on: head/graphics/cenon/files/patch-DocView.m ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/graphics/cenon/pkg-plist =================================================================== --- head/graphics/cenon/pkg-plist (revision 448471) +++ head/graphics/cenon/pkg-plist (revision 448472) @@ -1,594 +1,598 @@ GNUstep/System/Applications/Cenon.app/Cenon GNUstep/System/Applications/Cenon.app/Resources/Cenon.desktop GNUstep/System/Applications/Cenon.app/Resources/Cenon.tiff GNUstep/System/Applications/Cenon.app/Resources/CenonHead.tiff GNUstep/System/Applications/Cenon.app/Resources/Cenon_128x128.tiff GNUstep/System/Applications/Cenon.app/Resources/Cenon_48x48.tiff GNUstep/System/Applications/Cenon.app/Resources/CharConversion/Apple.dict GNUstep/System/Applications/Cenon.app/Resources/CharConversion/Microsoft.dict GNUstep/System/Applications/Cenon.app/Resources/CheckMark.tiff GNUstep/System/Applications/Cenon.app/Resources/CropMarks/leftup.cenon/document GNUstep/System/Applications/Cenon.app/Resources/CropMarks/leftup.cenon/output GNUstep/System/Applications/Cenon.app/Resources/CropMarks/middledown.cenon/document GNUstep/System/Applications/Cenon.app/Resources/CropMarks/middledown.cenon/output GNUstep/System/Applications/Cenon.app/Resources/CropMarks/rightup.cenon/document GNUstep/System/Applications/Cenon.app/Resources/CropMarks/rightup.cenon/output +GNUstep/System/Applications/Cenon.app/Resources/InspectorPanel.nib/._keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/Contour.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/Contour.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/Contour.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/Document.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/Document.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/Document.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/Document.nib/lupe.tiff GNUstep/System/Applications/Cenon.app/Resources/English.lproj/GridPanel.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/GridPanel.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/GridPanel.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPAccText.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPAccText.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPAccText.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPAllAcc.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPAllAcc.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPAllAcc.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPAllFilling.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPAllFilling.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPAllFilling.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPAllLayers.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPAllLayers.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPAllLayers.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPAllStrokeWidth.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPAllStrokeWidth.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPAllStrokeWidth.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPArc.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPArc.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPArc.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPCrosshairs.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPCrosshairs.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPCrosshairs.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPCurve.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPCurve.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPCurve.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPGroup.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPGroup.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPGroup.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPImage.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPImage.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPImage.nib/keyedobjects.nib +GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPLine3D.nib/data.classes +GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPLine3D.nib/objects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPLine.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPLine.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPLine.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPMark.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPMark.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPMark.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPPath.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPPath.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPPath.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPPolyLine.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPPolyLine.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPPolyLine.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPRectangle.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPRectangle.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPRectangle.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPSinking.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPSinking.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPSinking.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPSinking.nib/sinkingFine.tiff GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPSinking.nib/sinkingMedium.tiff GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPText.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPText.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPText.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPTextPath.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPTextPath.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPTextPath.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPThread.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPThread.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPThread.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPWeb.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPWeb.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IPWeb.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IntersectionPanel.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IntersectionPanel.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/IntersectionPanel.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/LayerDetails.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/LayerDetails.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/LayerDetails.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/Localizable.strings GNUstep/System/Applications/Cenon.app/Resources/English.lproj/Main.xib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/Operations.strings GNUstep/System/Applications/Cenon.app/Resources/English.lproj/PSFontInfo.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/PSFontInfo.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/PSFontInfo.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/PSInfo.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/PSInfo.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/PSInfo.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/PSSettings.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/PSSettings.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/PSSettings.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/PreferencesPanel.xib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/PrintPanelAccessory.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/PrintPanelAccessory.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/PrintPanelAccessory.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/ProjectSettingsPanel.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/ProjectSettingsPanel.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/ProjectSettingsPanel.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TPAlign.nib/alignHCenter.tiff GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TPAlign.nib/alignHLeft.tiff GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TPAlign.nib/alignHRight.tiff GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TPAlign.nib/alignVBottom.tiff GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TPAlign.nib/alignVCenter.tiff GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TPAlign.nib/alignVTop.tiff GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TPAlign.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TPAlign.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TPAlign.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TPMix.nib/designable.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TPMix.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TPMove.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TPMove.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TPMove.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TPRotate.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TPRotate.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TPRotate.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TPScale.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TPScale.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TPScale.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TilePanel.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TilePanel.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TilePanel.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TransformPanel.nib/buttonFilling.tiff GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TransformPanel.nib/buttonLayers.tiff GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TransformPanel.nib/buttonStroke.tiff GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TransformPanel.nib/buttonText.tiff GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TransformPanel.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TransformPanel.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/TransformPanel.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/Vectorizer.xib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/WorkingAreaPanel.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/WorkingAreaPanel.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/English.lproj/WorkingAreaPanel.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/Export.prefs/Export GNUstep/System/Applications/Cenon.app/Resources/Export.prefs/Resources/English.lproj/Export.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/Export.prefs/Resources/English.lproj/Export.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/Export.prefs/Resources/English.lproj/Export.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/Export.prefs/Resources/German.lproj/Export.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/Export.prefs/Resources/German.lproj/Export.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/Export.prefs/Resources/German.lproj/Export.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/Export.prefs/Resources/Info-gnustep.plist GNUstep/System/Applications/Cenon.app/Resources/Export.prefs/Resources/prefsExport.tiff GNUstep/System/Applications/Cenon.app/Resources/Export.prefs/stamp.make GNUstep/System/Applications/Cenon.app/Resources/General.prefs/General GNUstep/System/Applications/Cenon.app/Resources/General.prefs/Resources/English.lproj/General.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/General.prefs/Resources/English.lproj/General.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/General.prefs/Resources/English.lproj/General.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/General.prefs/Resources/English.lproj/Localizable.strings GNUstep/System/Applications/Cenon.app/Resources/General.prefs/Resources/German.lproj/General.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/General.prefs/Resources/German.lproj/General.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/General.prefs/Resources/German.lproj/General.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/General.prefs/Resources/German.lproj/Localizable.strings GNUstep/System/Applications/Cenon.app/Resources/General.prefs/Resources/Info-gnustep.plist GNUstep/System/Applications/Cenon.app/Resources/General.prefs/Resources/prefsGeneral.tiff GNUstep/System/Applications/Cenon.app/Resources/General.prefs/stamp.make GNUstep/System/Applications/Cenon.app/Resources/German.lproj/Contour.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/Contour.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/Contour.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/Document.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/Document.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/Document.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/Document.nib/lupe.tiff GNUstep/System/Applications/Cenon.app/Resources/German.lproj/GridPanel.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/GridPanel.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/GridPanel.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPAccText.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPAccText.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPAccText.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPAllAcc.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPAllAcc.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPAllAcc.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPAllFilling.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPAllFilling.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPAllFilling.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPAllLayers.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPAllLayers.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPAllLayers.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPAllStrokeWidth.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPAllStrokeWidth.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPAllStrokeWidth.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPArc.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPArc.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPArc.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPCrosshairs.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPCrosshairs.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPCrosshairs.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPCurve.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPCurve.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPCurve.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPGroup.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPGroup.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPGroup.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPImage.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPImage.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPImage.nib/keyedobjects.nib +GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPLine3D.nib/data.classes +GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPLine3D.nib/objects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPLine.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPLine.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPLine.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPMark.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPMark.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPMark.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPPath.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPPath.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPPath.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPPolyLine.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPPolyLine.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPPolyLine.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPRectangle.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPRectangle.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPRectangle.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPSinking.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPSinking.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPSinking.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPSinking.nib/sinkingFine.tiff GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPSinking.nib/sinkingMedium.tiff GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPText.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPText.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPText.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPTextPath.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPTextPath.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPTextPath.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPThread.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPThread.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPThread.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPWeb.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPWeb.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IPWeb.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IntersectionPanel.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IntersectionPanel.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/IntersectionPanel.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/LayerDetails.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/LayerDetails.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/LayerDetails.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/Localizable.strings GNUstep/System/Applications/Cenon.app/Resources/German.lproj/Main.xib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/Operations.strings GNUstep/System/Applications/Cenon.app/Resources/German.lproj/PSInfo.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/PSInfo.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/PSInfo.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/PSSettings.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/PSSettings.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/PSSettings.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/PreferencesPanel.xib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/PrintPanelAccessory.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/PrintPanelAccessory.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/PrintPanelAccessory.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/ProjectSettingsPanel.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/ProjectSettingsPanel.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/ProjectSettingsPanel.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TPAlign.nib/alignHCenter.tiff GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TPAlign.nib/alignHLeft.tiff GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TPAlign.nib/alignHRight.tiff GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TPAlign.nib/alignVBottom.tiff GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TPAlign.nib/alignVCenter.tiff GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TPAlign.nib/alignVTop.tiff GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TPAlign.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TPAlign.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TPAlign.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TPMix.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TPMix.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TPMix.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TPMove.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TPMove.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TPMove.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TPRotate.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TPRotate.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TPRotate.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TPScale.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TPScale.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TPScale.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TilePanel.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TilePanel.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TilePanel.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TransformPanel.nib/buttonFilling.tiff GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TransformPanel.nib/buttonLayers.tiff GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TransformPanel.nib/buttonStroke.tiff GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TransformPanel.nib/buttonText.tiff GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TransformPanel.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TransformPanel.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/TransformPanel.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/Vectorizer.xib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/WorkingAreaPanel.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/WorkingAreaPanel.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/German.lproj/WorkingAreaPanel.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/Import.prefs/Import GNUstep/System/Applications/Cenon.app/Resources/Import.prefs/Resources/English.lproj/Import.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/Import.prefs/Resources/English.lproj/Import.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/Import.prefs/Resources/English.lproj/Import.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/Import.prefs/Resources/English.lproj/Import.nib/typeDXF.tiff GNUstep/System/Applications/Cenon.app/Resources/Import.prefs/Resources/English.lproj/Import.nib/typeDrill.tiff GNUstep/System/Applications/Cenon.app/Resources/Import.prefs/Resources/English.lproj/Import.nib/typeGerber.tiff GNUstep/System/Applications/Cenon.app/Resources/Import.prefs/Resources/English.lproj/Import.nib/typeHPGL.tiff GNUstep/System/Applications/Cenon.app/Resources/Import.prefs/Resources/English.lproj/Import.nib/typePS.tiff GNUstep/System/Applications/Cenon.app/Resources/Import.prefs/Resources/German.lproj/Import.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/Import.prefs/Resources/German.lproj/Import.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/Import.prefs/Resources/German.lproj/Import.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/Import.prefs/Resources/German.lproj/Import.nib/typeDXF.tiff GNUstep/System/Applications/Cenon.app/Resources/Import.prefs/Resources/German.lproj/Import.nib/typeDrill.tiff GNUstep/System/Applications/Cenon.app/Resources/Import.prefs/Resources/German.lproj/Import.nib/typeGerber.tiff GNUstep/System/Applications/Cenon.app/Resources/Import.prefs/Resources/German.lproj/Import.nib/typeHPGL.tiff GNUstep/System/Applications/Cenon.app/Resources/Import.prefs/Resources/German.lproj/Import.nib/typePS.tiff GNUstep/System/Applications/Cenon.app/Resources/Import.prefs/Resources/Info-gnustep.plist GNUstep/System/Applications/Cenon.app/Resources/Import.prefs/Resources/prefsImport.tiff GNUstep/System/Applications/Cenon.app/Resources/Import.prefs/stamp.make GNUstep/System/Applications/Cenon.app/Resources/Info-gnustep.plist GNUstep/System/Applications/Cenon.app/Resources/Info.tiff GNUstep/System/Applications/Cenon.app/Resources/Info.xib GNUstep/System/Applications/Cenon.app/Resources/InspectorPanel.nib/buttonFilling.tiff GNUstep/System/Applications/Cenon.app/Resources/InspectorPanel.nib/buttonLayers.tiff GNUstep/System/Applications/Cenon.app/Resources/InspectorPanel.nib/buttonStroke.tiff GNUstep/System/Applications/Cenon.app/Resources/InspectorPanel.nib/buttonText.tiff GNUstep/System/Applications/Cenon.app/Resources/InspectorPanel.nib/classes.nib GNUstep/System/Applications/Cenon.app/Resources/InspectorPanel.nib/info.nib GNUstep/System/Applications/Cenon.app/Resources/InspectorPanel.nib/keyedobjects.nib GNUstep/System/Applications/Cenon.app/Resources/SinkingMetrics.plist -GNUstep/System/Applications/Cenon.app/Resources/ToolPanel.xib +GNUstep/System/Applications/Cenon.app/Resources/English.lproj/ToolPanel.xib +GNUstep/System/Applications/Cenon.app/Resources/German.lproj/ToolPanel.xib GNUstep/System/Applications/Cenon.app/Resources/alignHCenter.tiff GNUstep/System/Applications/Cenon.app/Resources/alignHLeft.tiff GNUstep/System/Applications/Cenon.app/Resources/alignHRight.tiff GNUstep/System/Applications/Cenon.app/Resources/alignTextHCenter.tiff GNUstep/System/Applications/Cenon.app/Resources/alignTextHLeft.tiff GNUstep/System/Applications/Cenon.app/Resources/alignTextHRight.tiff GNUstep/System/Applications/Cenon.app/Resources/alignTextVCenter.tiff GNUstep/System/Applications/Cenon.app/Resources/alignTextVTop.tiff GNUstep/System/Applications/Cenon.app/Resources/alignVBottom.tiff GNUstep/System/Applications/Cenon.app/Resources/alignVCenter.tiff GNUstep/System/Applications/Cenon.app/Resources/alignVTop.tiff GNUstep/System/Applications/Cenon.app/Resources/arrowDown.tiff GNUstep/System/Applications/Cenon.app/Resources/arrowDownH.tiff GNUstep/System/Applications/Cenon.app/Resources/arrowLeft.tiff GNUstep/System/Applications/Cenon.app/Resources/arrowLeftH.tiff GNUstep/System/Applications/Cenon.app/Resources/arrowRight.tiff GNUstep/System/Applications/Cenon.app/Resources/arrowRightH.tiff GNUstep/System/Applications/Cenon.app/Resources/arrowUp.tiff GNUstep/System/Applications/Cenon.app/Resources/arrowUpH.tiff GNUstep/System/Applications/Cenon.app/Resources/bucket.tiff GNUstep/System/Applications/Cenon.app/Resources/bucketEmpty.tiff GNUstep/System/Applications/Cenon.app/Resources/buttonFilling.tiff GNUstep/System/Applications/Cenon.app/Resources/buttonLayers.tiff GNUstep/System/Applications/Cenon.app/Resources/buttonStroke.tiff GNUstep/System/Applications/Cenon.app/Resources/buttonText.tiff GNUstep/System/Applications/Cenon.app/Resources/contourInside.tiff GNUstep/System/Applications/Cenon.app/Resources/contourNoside.tiff GNUstep/System/Applications/Cenon.app/Resources/contourOutside.tiff GNUstep/System/Applications/Cenon.app/Resources/contourPickOut.tiff GNUstep/System/Applications/Cenon.app/Resources/cursorCross.tiff GNUstep/System/Applications/Cenon.app/Resources/cursorCutter.tiff GNUstep/System/Applications/Cenon.app/Resources/cursorMagnify.tiff GNUstep/System/Applications/Cenon.app/Resources/cursorRotate.tiff GNUstep/System/Applications/Cenon.app/Resources/eye.tiff GNUstep/System/Applications/Cenon.app/Resources/eyeclosed.tiff GNUstep/System/Applications/Cenon.app/Resources/ipAcc.tiff GNUstep/System/Applications/Cenon.app/Resources/ipArc.tiff GNUstep/System/Applications/Cenon.app/Resources/ipCrosshairs.tiff GNUstep/System/Applications/Cenon.app/Resources/ipCurve.tiff GNUstep/System/Applications/Cenon.app/Resources/ipGroup.tiff GNUstep/System/Applications/Cenon.app/Resources/ipImage.tiff GNUstep/System/Applications/Cenon.app/Resources/ipLine.tiff GNUstep/System/Applications/Cenon.app/Resources/ipLine3D.tiff GNUstep/System/Applications/Cenon.app/Resources/ipMark.tiff GNUstep/System/Applications/Cenon.app/Resources/ipPath.tiff GNUstep/System/Applications/Cenon.app/Resources/ipPolyLine.tiff GNUstep/System/Applications/Cenon.app/Resources/ipRectangle.tiff GNUstep/System/Applications/Cenon.app/Resources/ipSinking.tiff GNUstep/System/Applications/Cenon.app/Resources/ipText.tiff GNUstep/System/Applications/Cenon.app/Resources/ipTextPath.tiff GNUstep/System/Applications/Cenon.app/Resources/ipThread.tiff GNUstep/System/Applications/Cenon.app/Resources/ipWeb.tiff GNUstep/System/Applications/Cenon.app/Resources/lupe.tiff GNUstep/System/Applications/Cenon.app/Resources/pencil.tiff GNUstep/System/Applications/Cenon.app/Resources/pencilBroken.tiff GNUstep/System/Applications/Cenon.app/Resources/psImport.prolog GNUstep/System/Applications/Cenon.app/Resources/psImportAI3.prolog GNUstep/System/Applications/Cenon.app/Resources/psImportAI3.trailer GNUstep/System/Applications/Cenon.app/Resources/psImportAI3_old.prolog GNUstep/System/Applications/Cenon.app/Resources/sinkingFine.tiff GNUstep/System/Applications/Cenon.app/Resources/sinkingMedium.tiff GNUstep/System/Applications/Cenon.app/Resources/sortColLLUR.tiff GNUstep/System/Applications/Cenon.app/Resources/sortColULLR.tiff GNUstep/System/Applications/Cenon.app/Resources/sortColURLL.tiff GNUstep/System/Applications/Cenon.app/Resources/sortRowLLUR.tiff GNUstep/System/Applications/Cenon.app/Resources/sortRowULLR.tiff GNUstep/System/Applications/Cenon.app/Resources/toolAddPt.tiff GNUstep/System/Applications/Cenon.app/Resources/toolArc.tiff GNUstep/System/Applications/Cenon.app/Resources/toolArc1.tiff GNUstep/System/Applications/Cenon.app/Resources/toolArrow.tiff GNUstep/System/Applications/Cenon.app/Resources/toolCurve.tiff GNUstep/System/Applications/Cenon.app/Resources/toolCutter.tiff GNUstep/System/Applications/Cenon.app/Resources/toolLine.tiff GNUstep/System/Applications/Cenon.app/Resources/toolMark.tiff GNUstep/System/Applications/Cenon.app/Resources/toolPolyLine.tiff GNUstep/System/Applications/Cenon.app/Resources/toolRectangle.tiff GNUstep/System/Applications/Cenon.app/Resources/toolRotate.tiff GNUstep/System/Applications/Cenon.app/Resources/toolSinking.tiff GNUstep/System/Applications/Cenon.app/Resources/toolText.tiff GNUstep/System/Applications/Cenon.app/Resources/toolThread.tiff GNUstep/System/Applications/Cenon.app/Resources/toolWeb.tiff GNUstep/System/Applications/Cenon.app/Resources/tpAlign.tiff GNUstep/System/Applications/Cenon.app/Resources/tpMix.tiff GNUstep/System/Applications/Cenon.app/Resources/tpMove.tiff GNUstep/System/Applications/Cenon.app/Resources/tpRotate.tiff GNUstep/System/Applications/Cenon.app/Resources/tpScale.tiff GNUstep/System/Applications/Cenon.app/Resources/typeAI.tiff GNUstep/System/Applications/Cenon.app/Resources/typeAI_128x128.tiff GNUstep/System/Applications/Cenon.app/Resources/typeAI_48x48.tiff GNUstep/System/Applications/Cenon.app/Resources/typeCenon.tiff GNUstep/System/Applications/Cenon.app/Resources/typeCenon_128x128.tiff GNUstep/System/Applications/Cenon.app/Resources/typeCenon_48x48.tiff GNUstep/System/Applications/Cenon.app/Resources/typeDIN_128x128.tiff GNUstep/System/Applications/Cenon.app/Resources/typeDIN_48x48.tiff GNUstep/System/Applications/Cenon.app/Resources/typeDXF.tiff GNUstep/System/Applications/Cenon.app/Resources/typeDXF_128x128.tiff GNUstep/System/Applications/Cenon.app/Resources/typeDXF_48x48.tiff GNUstep/System/Applications/Cenon.app/Resources/typeDrill.tiff GNUstep/System/Applications/Cenon.app/Resources/typeEPS.tiff GNUstep/System/Applications/Cenon.app/Resources/typeFont_128x128.tiff GNUstep/System/Applications/Cenon.app/Resources/typeFont_48x48.tiff GNUstep/System/Applications/Cenon.app/Resources/typeGerber.tiff GNUstep/System/Applications/Cenon.app/Resources/typeGerber_128x128.tiff GNUstep/System/Applications/Cenon.app/Resources/typeGerber_48x48.tiff GNUstep/System/Applications/Cenon.app/Resources/typeHPGL.tiff GNUstep/System/Applications/Cenon.app/Resources/typeHPGL_128x128.tiff GNUstep/System/Applications/Cenon.app/Resources/typeHPGL_48x48.tiff GNUstep/System/Applications/Cenon.app/Resources/typeICut.tiff GNUstep/System/Applications/Cenon.app/Resources/typeICut_128x128.tiff GNUstep/System/Applications/Cenon.app/Resources/typeICut_48x48.tiff GNUstep/System/Applications/Cenon.app/Resources/typePDF.tiff GNUstep/System/Applications/Cenon.app/Resources/typePS.tiff GNUstep/System/Applications/Cenon.app/stamp.make @group wheel @owner root GNUstep/System/Library/.dir.tiff GNUstep/System/Library/Cenon/.dir.tiff GNUstep/System/Library/Cenon/Devices/.dir.tiff GNUstep/System/Library/Cenon/Devices/din/.dir.tiff GNUstep/System/Library/Cenon/Devices/din/excellon.dev GNUstep/System/Library/Cenon/Devices/din/sm_1000.dev GNUstep/System/Library/Cenon/Devices/din/sm_3000.dev GNUstep/System/Library/Cenon/Devices/gerber/.dir.tiff GNUstep/System/Library/Cenon/Devices/gerber/_c_r_o.dev GNUstep/System/Library/Cenon/Devices/gerber/emma.dev GNUstep/System/Library/Cenon/Devices/gerber/emma.tab GNUstep/System/Library/Cenon/Devices/gerber/gerber.dev GNUstep/System/Library/Cenon/Devices/gerber/gerber.doc GNUstep/System/Library/Cenon/Devices/gerber/gerber.tab GNUstep/System/Library/Cenon/Devices/gerber/mill_01.dev GNUstep/System/Library/Cenon/Devices/gerber/mm_0001.dev GNUstep/System/Library/Cenon/Devices/hpgl/.dir.tiff GNUstep/System/Library/Cenon/Devices/hpgl/hpgl_8Pen.dev GNUstep/System/Library/Cenon/Devices/hpgl/hpgl_8Pen.strings GNUstep/System/Library/Cenon/Documentation/.dir.tiff GNUstep/System/Library/Cenon/Documentation/SinkingMetrics.cenon/document GNUstep/System/Library/Cenon/Examples/.dir.tiff GNUstep/System/Library/Cenon/Examples/AI-3/.dir.tiff GNUstep/System/Library/Cenon/Examples/AI-3/Apple.ai GNUstep/System/Library/Cenon/Examples/AI-3/Bat.ai GNUstep/System/Library/Cenon/Examples/AI-3/Ducks_30x20.ai GNUstep/System/Library/Cenon/Examples/AI-3/Heart.ai GNUstep/System/Library/Cenon/Examples/AI-3/HighTension.ai GNUstep/System/Library/Cenon/Examples/AI-3/Monimaus.ai GNUstep/System/Library/Cenon/Examples/AI-3/Mosquito_3mm.ai GNUstep/System/Library/Cenon/Examples/AI-3/PickOut/Eagle.ai GNUstep/System/Library/Cenon/Examples/AI-3/PickOut/Stempel.ai GNUstep/System/Library/Cenon/Examples/AI-3/PickOut/Times24pt.ai GNUstep/System/Library/Cenon/Examples/AI-3/Rose.ai GNUstep/System/Library/Cenon/Examples/AI-3/logopilot.ai GNUstep/System/Library/Cenon/Examples/AI-3/vhf_Logo.ai GNUstep/System/Library/Cenon/Examples/DXF/.dir.tiff GNUstep/System/Library/Cenon/Examples/DXF/bleistift.dxf GNUstep/System/Library/Cenon/Examples/DXF/columbia.dxf GNUstep/System/Library/Cenon/Examples/DXF/pleuel.dxf GNUstep/System/Library/Cenon/Examples/Gerber/.dir.tiff GNUstep/System/Library/Cenon/Examples/Gerber/cpu.ger GNUstep/System/Library/Cenon/Examples/HPGL/.dir.tiff GNUstep/System/Library/Cenon/Examples/HPGL/zztop.hgl GNUstep/System/Library/Cenon/Examples/Images/Medicine.tiff GNUstep/System/Library/Cenon/Examples/Images/Vamp.tiff GNUstep/System/Library/Cenon/Examples/PDF/Cenon.pdf GNUstep/System/Library/Cenon/Examples/PS/.dir.tiff GNUstep/System/Library/Cenon/Examples/PS/skala.eps GNUstep/System/Library/Cenon/Examples/SVG/AigaHeliport.svg GNUstep/System/Library/Cenon/Examples/SVG/Hibiskus.svg GNUstep/System/Library/Cenon/Examples/SVG/Verkehrszeichen.svg GNUstep/System/Library/Cenon/Examples/SVG/WappenGermany.svg GNUstep/System/Library/Cenon/Examples/SVG/WappenStuttgart.svg GNUstep/System/Library/Cenon/Examples/SVG/WappenWurmlingen.svg GNUstep/System/Library/Cenon/Projects/.dir.tiff GNUstep/System/Library/Cenon/Projects/Cenon.cenon/document GNUstep/System/Library/Cenon/Projects/Cenon.cenon/output GNUstep/System/Library/Cenon/Projects/DTP/.dir.tiff GNUstep/System/Library/Cenon/Projects/DTP/Advertising.cenon/CAM1525.jpg GNUstep/System/Library/Cenon/Projects/DTP/Advertising.cenon/Catalogue1.jpg GNUstep/System/Library/Cenon/Projects/DTP/Advertising.cenon/Catalogue2.jpg GNUstep/System/Library/Cenon/Projects/DTP/Advertising.cenon/Catalogue2_.tiff GNUstep/System/Library/Cenon/Projects/DTP/Advertising.cenon/Magazine.jpg GNUstep/System/Library/Cenon/Projects/DTP/Advertising.cenon/Remote.jpg GNUstep/System/Library/Cenon/Projects/DTP/Advertising.cenon/Spindle.jpg GNUstep/System/Library/Cenon/Projects/DTP/Advertising.cenon/Thread.jpg GNUstep/System/Library/Cenon/Projects/DTP/Advertising.cenon/Vacuum.jpg GNUstep/System/Library/Cenon/Projects/DTP/Advertising.cenon/document GNUstep/System/Library/Cenon/Projects/DTP/vhf-interservice.cenon/document GNUstep/System/Library/Cenon/Projects/DTP/vhf-interservice.cenon/output GNUstep/System/Library/Cenon/Projects/Ducks.cenon/document GNUstep/System/Library/Cenon/Projects/Ducks.cenon/output GNUstep/System/Library/Cenon/Projects/Models/.dir.tiff GNUstep/System/Library/Cenon/Projects/Models/Ant.cenon/document GNUstep/System/Library/Cenon/Projects/Models/Ant.cenon/output GNUstep/System/Library/Cenon/Projects/Models/Butterfly.cenon/document GNUstep/System/Library/Cenon/Projects/Models/Butterfly.cenon/output GNUstep/System/Library/Cenon/Projects/Models/Dino.cenon/document GNUstep/System/Library/Cenon/Projects/Models/Dino.cenon/output GNUstep/System/Library/Cenon/Projects/Models/Helicopter.cenon/document GNUstep/System/Library/Cenon/Projects/Models/Helicopter.cenon/output GNUstep/System/Library/Cenon/Projects/Models/Mosquito.cenon/document GNUstep/System/Library/Cenon/Projects/Models/Mosquito.cenon/output GNUstep/System/Library/Cenon/Projects/Models/Plane.cenon/document GNUstep/System/Library/Cenon/Projects/Models/Plane.cenon/output GNUstep/System/Library/Cenon/Projects/Models/Spider.cenon/document GNUstep/System/Library/Cenon/Projects/Models/Spider.cenon/output GNUstep/System/Library/Cenon/Projects/Models/plane_big.ai GNUstep/System/Library/Cenon/Projects/MultiPage.cenon/Dragon.tiff GNUstep/System/Library/Cenon/Projects/MultiPage.cenon/Inspector.tiff GNUstep/System/Library/Cenon/Projects/MultiPage.cenon/Inspector_t.tiff GNUstep/System/Library/Cenon/Projects/MultiPage.cenon/LayerDetails.tiff GNUstep/System/Library/Cenon/Projects/MultiPage.cenon/LayerDetails_t.tiff GNUstep/System/Library/Cenon/Projects/MultiPage.cenon/TemplateString.tiff GNUstep/System/Library/Cenon/Projects/MultiPage.cenon/document GNUstep/System/Library/Cenon/Projects/NoSmoking/.dir.tiff GNUstep/System/Library/Cenon/Projects/NoSmoking/NoSmoking.cenon/document GNUstep/System/Library/Cenon/Projects/NoSmoking/NoSmoking.cenon/output GNUstep/System/Library/Cenon/Projects/Shapes/.dir.tiff GNUstep/System/Library/Cenon/Projects/Shapes/Butterfly.cenon/document GNUstep/System/Library/Cenon/Projects/Shapes/Butterfly.cenon/output GNUstep/System/Library/Cenon/Projects/Shapes/Car.cenon/document GNUstep/System/Library/Cenon/Projects/Shapes/Car.cenon/output GNUstep/System/Library/Cenon/Projects/Shapes/Dino.cenon/document GNUstep/System/Library/Cenon/Projects/Shapes/Dino.cenon/output GNUstep/System/Library/Cenon/Projects/Shapes/Duck.cenon/document GNUstep/System/Library/Cenon/Projects/Shapes/Duck.cenon/output GNUstep/System/Library/Cenon/Projects/Shapes/Fish.cenon/document GNUstep/System/Library/Cenon/Projects/Shapes/Fish.cenon/output GNUstep/System/Library/Cenon/Projects/Shapes/Golf.cenon/document GNUstep/System/Library/Cenon/Projects/Shapes/Golf.cenon/output GNUstep/System/Library/Cenon/Projects/Shapes/Gorilla.cenon/document GNUstep/System/Library/Cenon/Projects/Shapes/Gorilla.cenon/output GNUstep/System/Library/Cenon/Projects/Shapes/HandVictory.cenon/document GNUstep/System/Library/Cenon/Projects/Shapes/HandVictory.cenon/output GNUstep/System/Library/Cenon/Projects/Shapes/Heart.cenon/document GNUstep/System/Library/Cenon/Projects/Shapes/Heart.cenon/output GNUstep/System/Library/Cenon/Projects/Shapes/Key.cenon/document GNUstep/System/Library/Cenon/Projects/Shapes/Key.cenon/output GNUstep/System/Library/Cenon/Projects/Shapes/Star.cenon/document GNUstep/System/Library/Cenon/Projects/Shapes/Star.cenon/output GNUstep/System/Library/Cenon/Projects/Shapes/ThumbUp.cenon/document GNUstep/System/Library/Cenon/Projects/Shapes/ThumbUp.cenon/output GNUstep/System/Library/Cenon/Projects/Shapes/Tree.cenon/document GNUstep/System/Library/Cenon/Projects/Shapes/Tree.cenon/output GNUstep/System/Library/Cenon/Projects/Teddy.cenon/document GNUstep/System/Library/Cenon/Projects/Teddy.cenon/output GNUstep/System/Library/Cenon/Projects/TurboDuck.cenon/document GNUstep/System/Library/Cenon/Projects/TurboDuck.cenon/output GNUstep/System/Library/Devices/.dir.tiff GNUstep/System/Library/Devices/din/.dir.tiff GNUstep/System/Library/Devices/din/excellon.dev GNUstep/System/Library/Devices/din/sm_1000.dev GNUstep/System/Library/Devices/din/sm_3000.dev GNUstep/System/Library/Devices/gerber/.dir.tiff GNUstep/System/Library/Devices/gerber/emma.dev GNUstep/System/Library/Devices/gerber/emma.tab GNUstep/System/Library/Devices/gerber/gerber.dev GNUstep/System/Library/Devices/gerber/gerber.doc GNUstep/System/Library/Devices/gerber/gerber.tab GNUstep/System/Library/Devices/gerber/mill_01.dev GNUstep/System/Library/Devices/gerber/mm_0001.dev GNUstep/System/Library/Devices/hpgl/.dir.tiff GNUstep/System/Library/Devices/hpgl/hpgl_8Pen.dev GNUstep/System/Library/Projects/.dir.tiff GNUstep/System/Library/Projects/Cenon.cenon/document -GNUstep/System/Library/Projects/Cenon.cenon/output -GNUstep/System/Library/README GNUstep/System/Tools/Cenon Index: head/graphics/fortytwo/Makefile =================================================================== --- head/graphics/fortytwo/Makefile (revision 448471) +++ head/graphics/fortytwo/Makefile (revision 448472) @@ -1,33 +1,33 @@ # $FreeBSD$ PORTNAME= fortytwo PORTVERSION= 0.2.0 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= graphics gnustep MASTER_SITES= SF/${PORTNAME}/FT%20%2842%29/${PORTVERSION} DISTFILES= FT-${PORTVERSION}-src.tgz \ FT-${PORTVERSION}-api-ref.tgz MAINTAINER= ports@FreeBSD.org COMMENT= Graph management system for GNUstep LICENSE= LGPL21 USES= bdb gnustep USE_GNUSTEP= back build LIB_DEPENDS= libEncore.so:devel/fortytwo-encore \ libBDB.so:databases/fortytwo-bdb DEFAULT_LIBVERSION= 0.1 USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} WRKSRC= ${WRKDIR}/FT-${PORTVERSION} DOCSDIR= ${GNUSTEP_PREFIX}/Local/Library/Documentation/FT ADDITIONAL_OBJCFLAGS+= -I${BDB_INCLUDE_DIR} ADDITIONAL_LDFLAGS+= -L${BDB_LIB_DIR} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Frameworks/FT.framework/Versions/0/libFT.so .include Index: head/graphics/gnustep-slideshow/Makefile =================================================================== --- head/graphics/gnustep-slideshow/Makefile (revision 448471) +++ head/graphics/gnustep-slideshow/Makefile (revision 448472) @@ -1,22 +1,22 @@ # $FreeBSD$ PORTNAME= slideshow PORTVERSION= 0.3.5 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= graphics gnustep MASTER_SITES= http://download.gna.org/gsimageapps/ PKGNAMEPREFIX= gnustep- DISTNAME= SlideShow-${PORTVERSION} MAINTAINER= theraven@FreeBSD.org COMMENT= SlideShow Viewer LICENSE= GPLv2 USES= tar:bzip2 gnustep USE_GNUSTEP= back build LIB_DEPENDS= libSlideShow.so:graphics/gnustep-slideshowkit OBJCFLAGS+= -Dsel_eq=sel_isEqual .include Index: head/graphics/gnustep-slideshowkit/Makefile =================================================================== --- head/graphics/gnustep-slideshowkit/Makefile (revision 448471) +++ head/graphics/gnustep-slideshowkit/Makefile (revision 448472) @@ -1,21 +1,21 @@ # $FreeBSD$ PORTNAME= slideshowkit PORTVERSION= 0.0.1 -PORTREVISION= 20050212 +PORTREVISION= 20050213 CATEGORIES= graphics gnustep MASTER_SITES= http://download.gna.org/gsimageapps/ PKGNAMEPREFIX= gnustep- -DISTNAME= SlideShowKit-${PORTVERSION} +DISTNAME= SlideShowKit-20050212 MAINTAINER= ports@FreeBSD.org COMMENT= SlideShow Framework USES= gnustep USE_GNUSTEP= back build USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Libraries/libSlideShow.so .include Index: head/graphics/graphos/Makefile =================================================================== --- head/graphics/graphos/Makefile (revision 448471) +++ head/graphics/graphos/Makefile (revision 448472) @@ -1,19 +1,18 @@ # $FreeBSD$ PORTNAME= graphos -PORTVERSION= 0.5 -PORTREVISION= 3 +PORTVERSION= 0.6 CATEGORIES= graphics gnustep MASTER_SITES= SAVANNAH/gap DISTNAME= Graphos-${PORTVERSION} MAINTAINER= theraven@FreeBSD.org COMMENT= Vector drawing application centered around bezier paths LICENSE= GPLv2 USES= gnustep -USE_GNUSTEP= back build +USE_GNUSTEP= build base gui USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} .include Index: head/graphics/graphos/distinfo =================================================================== --- head/graphics/graphos/distinfo (revision 448471) +++ head/graphics/graphos/distinfo (revision 448472) @@ -1,2 +1,3 @@ -SHA256 (Graphos-0.5.tar.gz) = 0195dd6481fd60d24dd95ea15c89683b8db6130b57681a6042c5cc9b4a482c08 -SIZE (Graphos-0.5.tar.gz) = 169743 +TIMESTAMP = 1495367600 +SHA256 (Graphos-0.6.tar.gz) = c400814806a84c0e8b33bfa6c2010f4b543bf069b2a6d3bcb893ecac2b0f6b7b +SIZE (Graphos-0.6.tar.gz) = 140416 Index: head/graphics/graphos/pkg-plist =================================================================== --- head/graphics/graphos/pkg-plist (revision 448471) +++ head/graphics/graphos/pkg-plist (revision 448472) @@ -1,39 +1,40 @@ GNUstep/System/Applications/Graphos.app/Graphos GNUstep/System/Applications/Graphos.app/Resources/GRDocument.gorm/data.classes GNUstep/System/Applications/Graphos.app/Resources/GRDocument.gorm/data.info GNUstep/System/Applications/Graphos.app/Resources/GRDocument.gorm/objects.gorm GNUstep/System/Applications/Graphos.app/Resources/Graphos.desktop GNUstep/System/Applications/Graphos.app/Resources/Info-gnustep.plist GNUstep/System/Applications/Graphos.app/Resources/LineCap1.tiff GNUstep/System/Applications/Graphos.app/Resources/LineCap2.tiff GNUstep/System/Applications/Graphos.app/Resources/LineCap3.tiff GNUstep/System/Applications/Graphos.app/Resources/LineJoin1.tiff GNUstep/System/Applications/Graphos.app/Resources/LineJoin2.tiff GNUstep/System/Applications/Graphos.app/Resources/LineJoin3.tiff GNUstep/System/Applications/Graphos.app/Resources/MainMenu.gorm/data.classes GNUstep/System/Applications/Graphos.app/Resources/MainMenu.gorm/data.info GNUstep/System/Applications/Graphos.app/Resources/MainMenu.gorm/objects.gorm GNUstep/System/Applications/Graphos.app/Resources/PropertiesEditor.gorm/data.classes GNUstep/System/Applications/Graphos.app/Resources/PropertiesEditor.gorm/data.info GNUstep/System/Applications/Graphos.app/Resources/PropertiesEditor.gorm/objects.gorm GNUstep/System/Applications/Graphos.app/Resources/bezier.tiff GNUstep/System/Applications/Graphos.app/Resources/blackarrow.tiff GNUstep/System/Applications/Graphos.app/Resources/circle.tiff GNUstep/System/Applications/Graphos.app/Resources/graphos_appicon_48.tif +GNUstep/System/Applications/Graphos.app/Resources/graphos_doc_icon_48.tif GNUstep/System/Applications/Graphos.app/Resources/hand.tiff GNUstep/System/Applications/Graphos.app/Resources/magnify.tiff GNUstep/System/Applications/Graphos.app/Resources/paint.tiff GNUstep/System/Applications/Graphos.app/Resources/pencil.tiff GNUstep/System/Applications/Graphos.app/Resources/rectangle.tiff GNUstep/System/Applications/Graphos.app/Resources/reduce.tiff GNUstep/System/Applications/Graphos.app/Resources/reflect.tiff GNUstep/System/Applications/Graphos.app/Resources/rotate.tiff GNUstep/System/Applications/Graphos.app/Resources/shissors.tiff GNUstep/System/Applications/Graphos.app/Resources/text.tiff GNUstep/System/Applications/Graphos.app/Resources/txtAlignCenter.tiff GNUstep/System/Applications/Graphos.app/Resources/txtAlignLeft.tiff GNUstep/System/Applications/Graphos.app/Resources/txtAlignRight.tiff GNUstep/System/Applications/Graphos.app/Resources/whitearrow.tiff GNUstep/System/Applications/Graphos.app/Resources/x.tiff GNUstep/System/Applications/Graphos.app/stamp.make GNUstep/System/Tools/Graphos Index: head/graphics/imageviewer/Makefile =================================================================== --- head/graphics/imageviewer/Makefile (revision 448471) +++ head/graphics/imageviewer/Makefile (revision 448472) @@ -1,24 +1,24 @@ # $FreeBSD$ PORTNAME= imageviewer PORTVERSION= 0.6.3 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= graphics gnustep MASTER_SITES= http://www.nice.ch/~phip/ \ LOCAL/dinoex DISTNAME= ImageViewer-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= GNUstep Image Viewer LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USES= gnustep USE_GNUSTEP= back build post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/ImageViewer.app/ImageViewer .include Index: head/graphics/laternamagica/Makefile =================================================================== --- head/graphics/laternamagica/Makefile (revision 448471) +++ head/graphics/laternamagica/Makefile (revision 448472) @@ -1,21 +1,21 @@ # $FreeBSD$ PORTNAME= laternamagica PORTVERSION= 0.4 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics gnustep MASTER_SITES= SAVANNAH/gap DISTNAME= LaternaMagica-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Image viewer and slideshow application LICENSE= GPLv2+ USES= gnustep USE_GNUSTEP= back build post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/LaternaMagica.app/LaternaMagica .include Index: head/graphics/pikopixel/Makefile =================================================================== --- head/graphics/pikopixel/Makefile (revision 448471) +++ head/graphics/pikopixel/Makefile (revision 448472) @@ -1,21 +1,21 @@ # Created by: theraven@FreeBSD.org # $FreeBSD$ PORTNAME= pikopixel -PORTVERSION= 0.9 +PORTVERSION= 1.0 CATEGORIES= graphics gnustep MASTER_SITES= http://twilightedge.com/downloads/ -DISTNAME= PikoPixel1.0b5.Sources +DISTNAME= PikoPixel.Sources.1.0-b8 WRKSRC_SUBDIR= PikoPixel MAINTAINER= theraven@FreeBSD.org COMMENT= Application for drawing and editing pixel-art images LICENSE= AGPLv3 LICENSE_FILE= ${WRKDIR}/${DISTNAME}/LICENSE_agpl-3.0.txt -USES= gnustep zip +USES= gnustep USE_GNUSTEP= gui build .include Index: head/graphics/pikopixel/distinfo =================================================================== --- head/graphics/pikopixel/distinfo (revision 448471) +++ head/graphics/pikopixel/distinfo (revision 448472) @@ -1,2 +1,3 @@ -SHA256 (PikoPixel1.0b5.Sources.zip) = 7924c185e52b1de7900461672fc8481628bd12ad46b5ce433a20fcd31d5dc019 -SIZE (PikoPixel1.0b5.Sources.zip) = 856367 +TIMESTAMP = 1502620401 +SHA256 (PikoPixel.Sources.1.0-b8.tar.gz) = b4985b7baec145af7027429bb8b6c8c936ff3797f1c8c6a0d9718ff2b5b45031 +SIZE (PikoPixel.Sources.1.0-b8.tar.gz) = 538896 Index: head/graphics/pikopixel/pkg-plist =================================================================== --- head/graphics/pikopixel/pkg-plist (revision 448471) +++ head/graphics/pikopixel/pkg-plist (revision 448472) @@ -1,190 +1,193 @@ GNUstep/System/Applications/PikoPixel.app/PikoPixel +GNUstep/System/Applications/PikoPixel.app/Resources/arrow_left_button.png +GNUstep/System/Applications/PikoPixel.app/Resources/arrow_outline_left_button.png +GNUstep/System/Applications/PikoPixel.app/Resources/arrow_outline_right_button.png +GNUstep/System/Applications/PikoPixel.app/Resources/arrow_right_button.png +GNUstep/System/Applications/PikoPixel.app/Resources/blend_mode_icon_linear.png +GNUstep/System/Applications/PikoPixel.app/Resources/blend_mode_icon_standard.png +GNUstep/System/Applications/PikoPixel.app/Resources/checkerboard_segment.png +GNUstep/System/Applications/PikoPixel.app/Resources/color_ramp_cursor.png GNUstep/System/Applications/PikoPixel.app/Resources/ColorPickerPopupPanel.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/ColorPickerPopupPanel.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/ColorPickerPopupPanel.nib/keyedobjects.nib +GNUstep/System/Applications/PikoPixel.app/Resources/diagonal_checkerboard_segment.png +GNUstep/System/Applications/PikoPixel.app/Resources/diagonal_lines_segment.png GNUstep/System/Applications/PikoPixel.app/Resources/DocumentBackgroundSettingsSheet.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentBackgroundSettingsSheet.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentBackgroundSettingsSheet.nib/keyedobjects.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentEditPatternPresetsSheet.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentEditPatternPresetsSheet.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentEditPatternPresetsSheet.nib/keyedobjects.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentEditSizePresetsSheet.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentEditSizePresetsSheet.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentEditSizePresetsSheet.nib/keyedobjects.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentFlattenedSaveNoticeSheet.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentFlattenedSaveNoticeSheet.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentFlattenedSaveNoticeSheet.nib/keyedobjects.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentGridSettingsSheet.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentGridSettingsSheet.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentGridSettingsSheet.nib/keyedobjects.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentResizeSheet.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentResizeSheet.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentResizeSheet.nib/keyedobjects.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentSamplerImagesSettingsSheet.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentSamplerImagesSettingsSheet.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentSamplerImagesSettingsSheet.nib/keyedobjects.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentScaleSheet.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentScaleSheet.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentScaleSheet.nib/keyedobjects.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentSizeSheet.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentSizeSheet.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentSizeSheet.nib/keyedobjects.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentWindow.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentWindow.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/DocumentWindow.nib/keyedobjects.nib +GNUstep/System/Applications/PikoPixel.app/Resources/eraser_button.png +GNUstep/System/Applications/PikoPixel.app/Resources/eraser_cursor.png +GNUstep/System/Applications/PikoPixel.app/Resources/eraser_tool_overlay_outline_pattern.png GNUstep/System/Applications/PikoPixel.app/Resources/ExportPanelAccessoryView.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/ExportPanelAccessoryView.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/ExportPanelAccessoryView.nib/keyedobjects.nib -GNUstep/System/Applications/PikoPixel.app/Resources/GNUstepAppIcon.tiff -GNUstep/System/Applications/PikoPixel.app/Resources/HotkeySettings.nib/classes.nib -GNUstep/System/Applications/PikoPixel.app/Resources/HotkeySettings.nib/info.nib -GNUstep/System/Applications/PikoPixel.app/Resources/HotkeySettings.nib/keyedobjects.nib +GNUstep/System/Applications/PikoPixel.app/Resources/eyedropper_button.png +GNUstep/System/Applications/PikoPixel.app/Resources/eyedropper_cursor.png +GNUstep/System/Applications/PikoPixel.app/Resources/freehand_select_button.png +GNUstep/System/Applications/PikoPixel.app/Resources/freehand_select_cursor.png +GNUstep/System/Applications/PikoPixel.app/Resources/GNUstepAppIcon.png +GNUstep/System/Applications/PikoPixel.app/Resources/gridpatternpreview_foreground.png +GNUstep/System/Applications/PikoPixel.app/Resources/gridtype_crosshairs_segment.png +GNUstep/System/Applications/PikoPixel.app/Resources/gridtype_dots_segment.png +GNUstep/System/Applications/PikoPixel.app/Resources/gridtype_largedots_segment.png +GNUstep/System/Applications/PikoPixel.app/Resources/gridtype_lines_segment.png GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_ar.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_be.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_bg.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_cs.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_da.plist -GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_de.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_de_AT.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_de_CH.plist +GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_de.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_el.plist -GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_en.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_en_AU.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_en_CA.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_en_GB.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_en_US.plist +GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_en.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_es.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_et.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_fa.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_fi.plist -GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_fr.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_fr_CA.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_fr_CH.plist +GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_fr.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_he.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_hr.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_hu.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_hy.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_is.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_it.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_lt.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_lv.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_mi.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_mk.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_mt.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_nb.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_ne.plist -GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_nl.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_nl_BE.plist +GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_nl.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_pl.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_ps.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_pt_BR.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_pt_PT.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_ro.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_ru.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_sk.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_sl.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_sr-Cyrl.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_sv.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_th.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_tr.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_uk.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_uz.plist GNUstep/System/Applications/PikoPixel.app/Resources/Hotkeys_vi.plist +GNUstep/System/Applications/PikoPixel.app/Resources/HotkeySettings.nib/classes.nib +GNUstep/System/Applications/PikoPixel.app/Resources/HotkeySettings.nib/info.nib +GNUstep/System/Applications/PikoPixel.app/Resources/HotkeySettings.nib/keyedobjects.nib GNUstep/System/Applications/PikoPixel.app/Resources/Info-gnustep.plist GNUstep/System/Applications/PikoPixel.app/Resources/InfoPlist.strings +GNUstep/System/Applications/PikoPixel.app/Resources/isometric_checkerboard_segment.png +GNUstep/System/Applications/PikoPixel.app/Resources/isometric_lines_segment.png GNUstep/System/Applications/PikoPixel.app/Resources/KeyboardNameToLocale.plist GNUstep/System/Applications/PikoPixel.app/Resources/LayerControlButtonImageViews.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/LayerControlButtonImageViews.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/LayerControlButtonImageViews.nib/keyedobjects.nib GNUstep/System/Applications/PikoPixel.app/Resources/LayerControlsPopupPanel.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/LayerControlsPopupPanel.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/LayerControlsPopupPanel.nib/keyedobjects.nib GNUstep/System/Applications/PikoPixel.app/Resources/LayersPanel.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/LayersPanel.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/LayersPanel.nib/keyedobjects.nib +GNUstep/System/Applications/PikoPixel.app/Resources/line_button.png +GNUstep/System/Applications/PikoPixel.app/Resources/line_cursor.png +GNUstep/System/Applications/PikoPixel.app/Resources/magnifier_button.png +GNUstep/System/Applications/PikoPixel.app/Resources/magnifier_cursor.png GNUstep/System/Applications/PikoPixel.app/Resources/MainMenu.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/MainMenu.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/MainMenu.nib/keyedobjects.nib +GNUstep/System/Applications/PikoPixel.app/Resources/marching_ants_pattern.png +GNUstep/System/Applications/PikoPixel.app/Resources/minus_button_overlay_small.png +GNUstep/System/Applications/PikoPixel.app/Resources/minus_button_overlay.png +GNUstep/System/Applications/PikoPixel.app/Resources/move_button.png +GNUstep/System/Applications/PikoPixel.app/Resources/move_cursor.png +GNUstep/System/Applications/PikoPixel.app/Resources/move_selection_outline_cursor.png GNUstep/System/Applications/PikoPixel.app/Resources/NavigatorPopupPanel.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/NavigatorPopupPanel.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/NavigatorPopupPanel.nib/keyedobjects.nib +GNUstep/System/Applications/PikoPixel.app/Resources/neko.png +GNUstep/System/Applications/PikoPixel.app/Resources/oval_button.png +GNUstep/System/Applications/PikoPixel.app/Resources/oval_cursor.png +GNUstep/System/Applications/PikoPixel.app/Resources/paintcan_button.png +GNUstep/System/Applications/PikoPixel.app/Resources/paintcan_cursor.png +GNUstep/System/Applications/PikoPixel.app/Resources/pencil_button.png +GNUstep/System/Applications/PikoPixel.app/Resources/pencil_cursor.png +GNUstep/System/Applications/PikoPixel.app/Resources/pencil_segment.png GNUstep/System/Applications/PikoPixel.app/Resources/PikoPixel.desktop +GNUstep/System/Applications/PikoPixel.app/Resources/plus_button_overlay_small.png +GNUstep/System/Applications/PikoPixel.app/Resources/plus_button_overlay.png GNUstep/System/Applications/PikoPixel.app/Resources/PreviewPanel.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/PreviewPanel.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/PreviewPanel.nib/keyedobjects.nib +GNUstep/System/Applications/PikoPixel.app/Resources/rect_button.png +GNUstep/System/Applications/PikoPixel.app/Resources/rect_cursor.png +GNUstep/System/Applications/PikoPixel.app/Resources/resize_control.png GNUstep/System/Applications/PikoPixel.app/Resources/SamplerImagePanel.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/SamplerImagePanel.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/SamplerImagePanel.nib/keyedobjects.nib GNUstep/System/Applications/PikoPixel.app/Resources/SamplerImagePopupPanel.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/SamplerImagePopupPanel.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/SamplerImagePopupPanel.nib/keyedobjects.nib GNUstep/System/Applications/PikoPixel.app/Resources/ScreencastPopupPanel.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/ScreencastPopupPanel.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/ScreencastPopupPanel.nib/keyedobjects.nib +GNUstep/System/Applications/PikoPixel.app/Resources/selection_rect_button.png +GNUstep/System/Applications/PikoPixel.app/Resources/selection_rect_cursor.png +GNUstep/System/Applications/PikoPixel.app/Resources/selection_tool_overlay_add_pattern.png +GNUstep/System/Applications/PikoPixel.app/Resources/selection_tool_overlay_subtract_pattern.png +GNUstep/System/Applications/PikoPixel.app/Resources/solid_segment.png +GNUstep/System/Applications/PikoPixel.app/Resources/target_draw_layer_icon.png +GNUstep/System/Applications/PikoPixel.app/Resources/target_enabled_layers_icon.png GNUstep/System/Applications/PikoPixel.app/Resources/ToolModifierTipsPanel.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/ToolModifierTipsPanel.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/ToolModifierTipsPanel.nib/keyedobjects.nib GNUstep/System/Applications/PikoPixel.app/Resources/ToolModifierTipsStrings.plist GNUstep/System/Applications/PikoPixel.app/Resources/ToolsPanel.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/ToolsPanel.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/ToolsPanel.nib/keyedobjects.nib GNUstep/System/Applications/PikoPixel.app/Resources/ToolsPopupPanel.nib/classes.nib GNUstep/System/Applications/PikoPixel.app/Resources/ToolsPopupPanel.nib/info.nib GNUstep/System/Applications/PikoPixel.app/Resources/ToolsPopupPanel.nib/keyedobjects.nib -GNUstep/System/Applications/PikoPixel.app/Resources/arrow_left_button.png -GNUstep/System/Applications/PikoPixel.app/Resources/arrow_outline_left_button.png -GNUstep/System/Applications/PikoPixel.app/Resources/arrow_outline_right_button.png -GNUstep/System/Applications/PikoPixel.app/Resources/arrow_right_button.png -GNUstep/System/Applications/PikoPixel.app/Resources/checkerboard_segment.png -GNUstep/System/Applications/PikoPixel.app/Resources/diagonal_checkerboard_segment.png -GNUstep/System/Applications/PikoPixel.app/Resources/diagonal_lines_segment.png -GNUstep/System/Applications/PikoPixel.app/Resources/eraser_button.png -GNUstep/System/Applications/PikoPixel.app/Resources/eraser_cursor.png -GNUstep/System/Applications/PikoPixel.app/Resources/eraser_tool_overlay_outline_pattern.png -GNUstep/System/Applications/PikoPixel.app/Resources/eyedropper_button.png -GNUstep/System/Applications/PikoPixel.app/Resources/eyedropper_cursor.png -GNUstep/System/Applications/PikoPixel.app/Resources/freehand_select_button.png -GNUstep/System/Applications/PikoPixel.app/Resources/freehand_select_cursor.png -GNUstep/System/Applications/PikoPixel.app/Resources/gridtype_crosshairs_segment.png -GNUstep/System/Applications/PikoPixel.app/Resources/gridtype_dots_segment.png -GNUstep/System/Applications/PikoPixel.app/Resources/gridtype_largedots_segment.png -GNUstep/System/Applications/PikoPixel.app/Resources/gridtype_lines_segment.png -GNUstep/System/Applications/PikoPixel.app/Resources/isometric_checkerboard_segment.png -GNUstep/System/Applications/PikoPixel.app/Resources/isometric_lines_segment.png -GNUstep/System/Applications/PikoPixel.app/Resources/layers_panel_background.png -GNUstep/System/Applications/PikoPixel.app/Resources/line_button.png -GNUstep/System/Applications/PikoPixel.app/Resources/line_cursor.png -GNUstep/System/Applications/PikoPixel.app/Resources/magnifier_button.png -GNUstep/System/Applications/PikoPixel.app/Resources/magnifier_cursor.png -GNUstep/System/Applications/PikoPixel.app/Resources/marching_ants_pattern.png -GNUstep/System/Applications/PikoPixel.app/Resources/minus_button_overlay.png -GNUstep/System/Applications/PikoPixel.app/Resources/minus_button_overlay_small.png -GNUstep/System/Applications/PikoPixel.app/Resources/move_button.png -GNUstep/System/Applications/PikoPixel.app/Resources/move_cursor.png -GNUstep/System/Applications/PikoPixel.app/Resources/move_selection_outline_cursor.png -GNUstep/System/Applications/PikoPixel.app/Resources/neko.png -GNUstep/System/Applications/PikoPixel.app/Resources/oval_button.png -GNUstep/System/Applications/PikoPixel.app/Resources/oval_cursor.png -GNUstep/System/Applications/PikoPixel.app/Resources/paintcan_button.png -GNUstep/System/Applications/PikoPixel.app/Resources/paintcan_cursor.png -GNUstep/System/Applications/PikoPixel.app/Resources/pencil_button.png -GNUstep/System/Applications/PikoPixel.app/Resources/pencil_cursor.png -GNUstep/System/Applications/PikoPixel.app/Resources/pencil_segment.png -GNUstep/System/Applications/PikoPixel.app/Resources/plus_button_overlay.png -GNUstep/System/Applications/PikoPixel.app/Resources/plus_button_overlay_small.png -GNUstep/System/Applications/PikoPixel.app/Resources/rect_button.png -GNUstep/System/Applications/PikoPixel.app/Resources/rect_cursor.png -GNUstep/System/Applications/PikoPixel.app/Resources/resize_control.png -GNUstep/System/Applications/PikoPixel.app/Resources/selection_rect_button.png -GNUstep/System/Applications/PikoPixel.app/Resources/selection_rect_cursor.png -GNUstep/System/Applications/PikoPixel.app/Resources/selection_tool_overlay_add_pattern.png -GNUstep/System/Applications/PikoPixel.app/Resources/selection_tool_overlay_subtract_pattern.png -GNUstep/System/Applications/PikoPixel.app/Resources/solid_segment.png -GNUstep/System/Applications/PikoPixel.app/Resources/target_draw_layer_icon.png -GNUstep/System/Applications/PikoPixel.app/Resources/target_enabled_layers_icon.png GNUstep/System/Applications/PikoPixel.app/Resources/view_draw_layer_icon.png GNUstep/System/Applications/PikoPixel.app/Resources/view_enabled_layers_icon.png GNUstep/System/Applications/PikoPixel.app/Resources/wand_button.png GNUstep/System/Applications/PikoPixel.app/Resources/wand_cursor.png GNUstep/System/Applications/PikoPixel.app/stamp.make GNUstep/System/Tools/PikoPixel Index: head/graphics/pixen/Makefile =================================================================== --- head/graphics/pixen/Makefile (revision 448471) +++ head/graphics/pixen/Makefile (revision 448472) @@ -1,24 +1,24 @@ # $FreeBSD$ PORTNAME= pixen PORTVERSION= 0.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= graphics gnustep MASTER_SITES= http://download.gna.org/gsimageapps/ DISTNAME= Pixen-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Graphics editing software for small-scale pictures for GNUstep LICENSE= MIT LICENSE_FILE= ${WRKSRC}/License.txt USES= tar:bzip2 gnustep USE_GNUSTEP= back build ADDITIONAL_OBJCFLAGS+= -Dlog2=logb post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Pixen.app/Pixen .include Index: head/graphics/preview/Makefile =================================================================== --- head/graphics/preview/Makefile (revision 448471) +++ head/graphics/preview/Makefile (revision 448472) @@ -1,25 +1,25 @@ # $FreeBSD$ PORTNAME= preview PORTVERSION= 0.8.5 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= graphics gnustep MASTER_SITES= http://download.gna.org/gsimageapps/ PKGNAMEPREFIX= gnustep- DISTNAME= Preview-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Simple image viewer LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING USES= gnustep USE_GNUSTEP= back build WRKSRC= ${WRKDIR}/Preview post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Preview.app/Preview .include Index: head/graphics/price/Makefile =================================================================== --- head/graphics/price/Makefile (revision 448471) +++ head/graphics/price/Makefile (revision 448472) @@ -1,35 +1,35 @@ # Created by: gurkan@phys.ethz.ch # $FreeBSD$ PORTNAME= price PORTVERSION= 1.3.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics gnustep MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} DISTNAME= PRICE-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Image filtering and manipulation using GNUstep LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gnustep USE_GNUSTEP= back build DATADIR= ${GNUSTEP_SYSTEM_ROOT}/Applications/PRICE.app PORTDATA= * PLIST_FILES= ${GNUSTEP_SYSTEM_TOOLS}/PRICE \ share/applications/PRICE.desktop post-build: ${SED} -i '' -e '/^Categories/s/=/&Graphics;/' \ ${WRKSRC}/PRICE.app/Resources/PRICE.desktop post-install: ${STRIP_CMD} ${STAGEDIR}${DATADIR}/PRICE ${LN} -sf ${DATADIR}/Resources/PRICE.desktop \ ${STAGEDIR}${PREFIX}/share/applications .include Index: head/japanese/jishyo/Makefile =================================================================== --- head/japanese/jishyo/Makefile (revision 448471) +++ head/japanese/jishyo/Makefile (revision 448472) @@ -1,24 +1,24 @@ # Created by: gurkan@phys.ethz.ch # $FreeBSD$ PORTNAME= jishyo PORTVERSION= 0.1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= japanese gnustep MASTER_SITES= http://www.eskimo.com/~pburns/Dictionaries/files/ DISTNAME= Jishyo-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= English to Japanese dictionary for GNUstep LICENSE= GPLv2+ PORTSCOUT= skipv:0.2 USES= gnustep USE_GNUSTEP= back build post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Jishyo.app/Jishyo .include Index: head/lang/gnustep-base/Makefile =================================================================== --- head/lang/gnustep-base/Makefile (revision 448471) +++ head/lang/gnustep-base/Makefile (revision 448472) @@ -1,79 +1,76 @@ # Created by: Thomas Gellekum # $FreeBSD$ PORTNAME= gnustep-base -PORTVERSION= 1.24.8 -PORTREVISION= 6 +PORTVERSION= 1.25.0 CATEGORIES= lang devel gnustep MASTER_SITES= GNUSTEP/core MAINTAINER= theraven@FreeBSD.org COMMENT= GNUstep Foundation library LICENSE= GPLv3 LGPL3 LICENSE_COMB= multi LIB_DEPENDS+= libffi.so:devel/libffi LIB_DEPENDS+= libxml2.so:textproc/libxml2 LIB_DEPENDS+= libxslt.so:textproc/libxslt LIB_DEPENDS+= libgmp.so:math/gmp LIB_DEPENDS+= libgcrypt.so:security/libgcrypt RUN_DEPENDS+= ${LOCALBASE}/GNUstep/System/Library/Makefiles/GNUstep.sh:devel/gnustep-make GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-procfs --disable-mixedabi +CONFIGURE_ARGS= --disable-procfs --disable-mixedabi --with-installation-domain=SYSTEM 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}" ETCDIR= ${LOCALBASE}/etc STAGEHEADER= ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Headers PLIST_SUB+= BASEVERSION=${PORTVERSION:R} OPTIONS_DEFINE= ICU OPTIONS_RADIO= SSL ZEROCONF OPTIONS_RADIO_SSL= GNUTLS OPENSSL OPTIONS_RADIO_ZEROCONF= AVAHI MDNS OPTIONS_DEFAULT= ICU GNUTLS AVAHI OPTIONS_SUB= yes ZEROCONF_DESC= Zeroconf (Bonjour) support AVAHI_DESC= Zeroconf via Avahi (preferred) MDNS_DESC= Zeroconf via mDNSResponder ICU_LIB_DEPENDS= libicuuc.so:devel/icu ICU_CONFIGURE_OFF= --disable-icu GNUTLS_LIB_DEPENDS= libgnutls.so:security/gnutls GNUTLS_CONFIGURE_ENABLE=tls OPENSSL_USES= ssl OPENSSL_CONFIGURE_OFF= --disable-openssl .include .if ${PORT_OPTIONS:MAVAHI} CONFIGURE_ARGS+= --with-zeroconf-api=avahi LIB_DEPENDS+= libavahi-client.so:net/avahi-app .elif ${PORT_OPTIONS:MMDNS} CONFIGURE_ARGS+= --with-zeroconf-api=mdns LIB_DEPENDS+= libdns_sd.so:net/mDNSResponder .else CONFIGURE_ARGS+= --disable-zeroconf .endif post-extract: @${REINPLACE_CMD} -e "s|/usr/local/|${LOCALBASE}/| ; \ s|HAVE_TLS|HAVE_GNUTLS|" ${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 448471) +++ head/lang/gnustep-base/distinfo (revision 448472) @@ -1,2 +1,3 @@ -SHA256 (gnustep-base-1.24.8.tar.gz) = 5b2a7042bc5001e97ac090143244a4344a6cba72cee53f3840e2492d3db443cb -SIZE (gnustep-base-1.24.8.tar.gz) = 3515290 +TIMESTAMP = 1495189059 +SHA256 (gnustep-base-1.25.0.tar.gz) = f5159a7d70e06b9dfb96c5f8ac572e3a5e6cf8de7bafb056bc9b2e0c4f93c347 +SIZE (gnustep-base-1.25.0.tar.gz) = 3528599 Index: head/lang/gnustep-base/pkg-plist =================================================================== --- head/lang/gnustep-base/pkg-plist (revision 448471) +++ head/lang/gnustep-base/pkg-plist (revision 448472) @@ -1,852 +1,856 @@ 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/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/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/NSHashTable+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/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/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_Nelson 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/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/Punta_Arenas 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/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/Atyrau 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/Barnaul 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/Famagusta 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/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/Tomsk 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/Yangon 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/Astrakhan 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/Kirov 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/Saratov 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/Ulyanovsk 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/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 %%OPENSSL%%GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/SSL.bundle/Resources/Info-gnustep.plist %%OPENSSL%%GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/SSL.bundle/SSL %%OPENSSL%%GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/SSL.bundle/stamp.make 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/gscheme/Makefile =================================================================== --- head/lang/gscheme/Makefile (revision 448471) +++ head/lang/gscheme/Makefile (revision 448472) @@ -1,29 +1,29 @@ # $FreeBSD$ PORTNAME= gscheme PORTVERSION= 0.6 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= lang gnustep MASTER_SITES= http://www.gnustep.it/marko/GScheme/ \ LOCAL/dinoex DISTNAME= GScheme EXTRACT_SUFX= .tgz DIST_SUBDIR= repacked MAINTAINER= ports@FreeBSD.org COMMENT= GNUstep-aware scheme interpreter LICENSE= GPLv2+ USES= gnustep USE_GNUSTEP= back build post-patch: @${REINPLACE_CMD} -e 's|setMark:|setMarkScheme:|' \ ${WRKSRC}/SchemeTypes.h ${WRKSRC}/SchemeTypes.m post-install: ${RM} ${STAGEDIR}${GNUSTEP_PREFIX}/System/Applications/GScheme.app/Resources/library.scm~ ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/GScheme.app/GScheme .include Index: head/mail/addresses/Makefile =================================================================== --- head/mail/addresses/Makefile (revision 448471) +++ head/mail/addresses/Makefile (revision 448472) @@ -1,20 +1,20 @@ # Created by: Miguel Mendez # $FreeBSD$ PORTNAME= addresses PORTVERSION= 0.4.8 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= mail gnustep MASTER_SITES= SAVANNAH/gap DISTNAME= Addresses-${PORTVERSION} MAINTAINER= theraven@FreeBSD.org COMMENT= Versatile addressbook for GNUstep LICENSE= LGPL21 USES= gnustep USE_GNUSTEP= back build USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} .include Index: head/mail/addresses-goodies/Makefile =================================================================== --- head/mail/addresses-goodies/Makefile (revision 448471) +++ head/mail/addresses-goodies/Makefile (revision 448472) @@ -1,36 +1,36 @@ # $FreeBSD$ PORTNAME= addresses PORTVERSION= 0.4.8 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= mail gnustep MASTER_SITES= SAVANNAH/gap PKGNAMESUFFIX= -goodies${PKGNAMESUFFIX2} DISTNAME= Addresses-${PORTVERSION} MAINTAINER= theraven@FreeBSD.org COMMENT= Goodies for addressbook for GNUstep LICENSE= LGPL21 USES= gnustep USE_GNUSTEP= back build LIB_DEPENDS= libInspector.so:deskutils/gworkspace \ libAddresses.so:mail/addresses USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} WRKSRC= ${WRKDIR}/Addresses-${PORTVERSION}/Goodies post-patch: ${REINPLACE_CMD} -e 's|LDAPAddressBook||' \ -e 's|VCFViewer||' \ ${WRKSRC}/GNUmakefile ${REINPLACE_CMD} -e 's|^GNUSTEP_INSTALLATION_DIR|#GNUSTEP_INSTALLATION_DIR|' \ -e 's|Library/GWorkspace|Library/Bundles|' \ -e 's|-lGWorkspace|-lInspector|' \ ${WRKSRC}/VCFViewer/GNUmakefile ${REINPLACE_CMD} -e 's| Index: head/mail/gnumail/Makefile =================================================================== --- head/mail/gnumail/Makefile (revision 448471) +++ head/mail/gnumail/Makefile (revision 448472) @@ -1,23 +1,23 @@ # Created by: Thomas Gellekum # $FreeBSD$ PORTNAME= gnumail PORTVERSION= 1.2.2 -PORTREVISION= 2 +PORTREVISION= 3 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:mail/pantomime \ libAddresses.so:mail/addresses USE_LDCONFIG= ${GNUSTEP_SYSTEM_LIBRARIES} .include Index: head/mail/pantomime/Makefile =================================================================== --- head/mail/pantomime/Makefile (revision 448471) +++ head/mail/pantomime/Makefile (revision 448472) @@ -1,24 +1,25 @@ # Created by: Thomas Gellekum # $FreeBSD$ PORTNAME= pantomime PORTVERSION= 1.2.2 +PORTREVISION= 1 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 # 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' USES= gnustep iconv ssl USE_GNUSTEP= back build USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} DEFAULT_LIBVERSION= 1.2 .include Index: head/math/edenmath/Makefile =================================================================== --- head/math/edenmath/Makefile (revision 448471) +++ head/math/edenmath/Makefile (revision 448472) @@ -1,26 +1,26 @@ # Created by: gurkan@phys.ethz.ch # $FreeBSD$ PORTNAME= edenmath PORTVERSION= 1.1.1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= math gnustep MASTER_SITES= http://www.eskimo.com/~pburns/EdenMath/files/ DISTNAME= EdenMath_GNUstep-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Scientific calculator for GNUstep LICENSE= GPLv2 USES= gnustep USE_GNUSTEP= back build post-patch: ${REINPLACE_CMD} -e 's|^GNUSTEP_INSTALLATION_DIR|#GNUSTEP_INSTALLATION_DIR|' \ ${WRKSRC}/GNUmakefile post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/EdenMath.app/EdenMath .include Index: head/misc/gnustep-examples/Makefile =================================================================== --- head/misc/gnustep-examples/Makefile (revision 448471) +++ head/misc/gnustep-examples/Makefile (revision 448472) @@ -1,79 +1,79 @@ # $FreeBSD$ PORTNAME= gnustep-examples PORTVERSION= 1.4.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= misc gnustep MASTER_SITES= GNUSTEP/usr-apps MAINTAINER= ports@FreeBSD.org USES= gnustep USE_GNUSTEP= back build l_GNUSTEP_MAKE_DIRS= . gui/Finger gui/GFractal gui/HostAddress gui/MyGL post-patch: ${REINPLACE_CMD} -e 's|^//|#|' \ ${WRKSRC}/gui/GFractal/GNUmakefile do-build: .for i in ${l_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 ${l_GNUSTEP_MAKE_DIRS} @(cd ${INSTALL_WRKSRC}/${i}; . ${GNUSTEP_MAKEFILES}/GNUstep.sh; \ ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) .endfor ${STRIP_CMD} \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Calculator.app/Calculator \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/CurrencyConverter.app/CurrencyConverter \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Finger.app/Finger \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/GFractal.app/GFractal \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/GSTest.app/GSTest \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/HostAddress.app/HostAddress \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Ink.app/Ink \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/MyGL.app/MyGL \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/NSBrowserTest.app/NSBrowserTest \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/NSImageTest.app/NSImageTest \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/NSPanelTest.app/NSPanelTest \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/NSScreenTest.app/NSScreenTest \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/md5Digest.app/md5Digest \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/Composite-test.bundle/Composite-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/CoordinateCheck-test.bundle/CoordinateCheck-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/GSHbox-test.bundle/GSHbox-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/Image-test.bundle/Image-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/ImageSelection-test.bundle/ImageSelection-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/KeyboardInput-test.bundle/KeyboardInput-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/NSAnimation-test.bundle/NSAnimation-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/NSBox-test.bundle/NSBox-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/NSButton-test.bundle/NSButton-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/NSColorList-test.bundle/NSColorList-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/NSColorWell-test.bundle/NSColorWell-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/NSForm-test.bundle/NSForm-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/NSOpenPanel-test.bundle/NSOpenPanel-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/NSOutlineView-test.bundle/NSOutlineView-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/NSProgressIndicator-test.bundle/NSProgressIndicator-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/NSSavePanel-test.bundle/NSSavePanel-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/NSScrollView-test.bundle/NSScrollView-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/NSSecureTextField-test.bundle/NSSecureTextField-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/NSSlider-test.bundle/NSSlider-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/NSSplitView-test.bundle/NSSplitView-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/NSTableView-test.bundle/NSTableView-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/NSTextView-test.bundle/NSTextView-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/NSViewAnimation-test.bundle/NSViewAnimation-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/NSWindow-test.bundle/NSWindow-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/NSWindowStyleMask-test.bundle/NSWindowStyleMask-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/PixelExactDrawing-test.bundle/PixelExactDrawing-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/StringDrawing-test.bundle/StringDrawing-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/TextSystem-test.bundle/TextSystem-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/ApplicationSupport/GSTest/Transparency-test.bundle/Transparency-test \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Services/example.service/example .include Index: head/multimedia/poe/Makefile =================================================================== --- head/multimedia/poe/Makefile (revision 448471) +++ head/multimedia/poe/Makefile (revision 448472) @@ -1,29 +1,29 @@ # $FreeBSD$ PORTNAME= poe PORTVERSION= 0.5.1 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= multimedia gnustep MASTER_SITES= http://www.eskimo.com/~pburns/Poe/files/ DISTNAME= Poe-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Vorbis comment editor for GNUstep LICENSE= GPLv2+ LIB_DEPENDS= libvorbis.so:audio/libvorbis USES= gnustep USE_GNUSTEP= back build PORTSCOUT= skipv:0.5.2 post-patch: ${REINPLACE_CMD} -e 's|-lvorbisfile$$|-lvorbisfile -logg|' \ ${WRKSRC}/GNUmakefile post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Poe.app/Poe .include Index: head/net/remotedesk/Makefile =================================================================== --- head/net/remotedesk/Makefile (revision 448471) +++ head/net/remotedesk/Makefile (revision 448472) @@ -1,27 +1,27 @@ # $FreeBSD$ PORTNAME= remotedesk PORTVERSION= 0.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= net gnustep MASTER_SITES= SAVANNAH/gap DISTNAME= RemoteDesk-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Graphical interface to rdesktop LICENSE= GPLv2+ RUN_DEPENDS= rdesktop:net/rdesktop USES= gnustep USE_GNUSTEP= back build post-patch: ${REINPLACE_CMD} -e 's|^GNUSTEP_INSTALLATION_DIR|#GNUSTEP_INSTALLATION_DIR|' \ ${WRKSRC}/GNUmakefile post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/RemoteDesk.app/RemoteDesk .include Index: head/net/zillion/Makefile =================================================================== --- head/net/zillion/Makefile (revision 448471) +++ head/net/zillion/Makefile (revision 448472) @@ -1,29 +1,29 @@ # $FreeBSD$ PORTNAME= zillion PORTVERSION= 0.1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= net gnustep MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} DISTNAME= ${PORTNAME}-0_1 MAINTAINER= ports@FreeBSD.org COMMENT= Distributed computing project LICENSE= BSD USES= gnustep USE_GNUSTEP= back build WRKSRC= ${WRKDIR}/${PORTNAME} post-patch: ${REINPLACE_CMD} -e 's|^CC=|# CC=|' ${WRKSRC}/GNUmakefile post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Bundles/simpleZillionJob.bundle/simpleZillionJob ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Tools/zillion ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Tools/zillionClient ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Tools/zillionLoader .include Index: head/news/lusernet/Makefile =================================================================== --- head/news/lusernet/Makefile (revision 448471) +++ head/news/lusernet/Makefile (revision 448472) @@ -1,22 +1,22 @@ # $FreeBSD$ PORTNAME= lusernet PORTVERSION= 0.4.2 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= news gnustep MASTER_SITES= LOCAL/dinoex DISTNAME= LuserNET-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= GNUstep news reader LICENSE= GPLv2 USES= gnustep USE_GNUSTEP= back build LIB_DEPENDS= libPantomime.so:mail/pantomime post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/LuserNET.app/LuserNET .include Index: head/print/gspdf/Makefile =================================================================== --- head/print/gspdf/Makefile (revision 448471) +++ head/print/gspdf/Makefile (revision 448472) @@ -1,20 +1,20 @@ # $FreeBSD$ PORTNAME= gspdf PORTVERSION= 0.5 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= print gnustep MASTER_SITES= SAVANNAH/gap DISTNAME= GSPdf-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Postscript and Pdf Viewer for GNUstep USES= ghostscript gnustep USE_GNUSTEP= back build post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/GSPdf.app/GSPdf .include Index: head/science/fisicalab/Makefile =================================================================== --- head/science/fisicalab/Makefile (revision 448471) +++ head/science/fisicalab/Makefile (revision 448472) @@ -1,20 +1,20 @@ # $FreeBSD$ PORTNAME= fisicalab PORTVERSION= 0.3.3 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= science gnustep MASTER_SITES= SAVANNAH MAINTAINER= theraven@FreeBSD.org COMMENT= Physics simulation program for educational use LICENSE= GPLv3 LIB_DEPENDS+= libgsl.so:math/gsl USES= gnustep GNU_CONFIGURE= yes USE_GNUSTEP= build gui .include Index: head/science/gtamsanalyzer/Makefile =================================================================== --- head/science/gtamsanalyzer/Makefile (revision 448471) +++ head/science/gtamsanalyzer/Makefile (revision 448472) @@ -1,29 +1,29 @@ # Created by: gurkan@phys.ethz.ch # $FreeBSD$ PORTNAME= gtamsanalyzer PORTVERSION= 0.42 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= science gnustep MASTER_SITES= SF/tamsys/gnustep%20tams/GTAMSAnalyzer%2${PORTVERSION} DISTNAME= GTAMSAnalyzer.src.${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Qualitative Research Software for the Free World for GNUstep LICENSE= GPLv2 USES= gnustep USE_GNUSTEP= back build WRKSRC= ${WRKDIR}/${DISTNAME}/Source post-patch: ${RM} "${WRKSRC}/obj" @${REINPLACE_CMD} '/^GNUSTEP_INSTALLATION_DIR/ s|=|=$$(DESTDIR)|' \ ${WRKSRC}/GNUmakefile post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/GTAMSAnalyzer.app/GTAMSAnalyzer .include Index: head/science/paje/Makefile =================================================================== --- head/science/paje/Makefile (revision 448471) +++ head/science/paje/Makefile (revision 448472) @@ -1,44 +1,43 @@ # Created by: gurkan@phys.ethz.ch # $FreeBSD$ PORTNAME= paje PORTVERSION= 1.97 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= science gnustep MASTER_SITES= SF/${PORTNAME}/Releases DISTNAME= Paje_${PORTVERSION} EXTRACT_SUFX= .tar.gz.gz MAINTAINER= ports@FreeBSD.org COMMENT= Generic visualization tool for GNUstep (Gantt chart and more) LICENSE= LGPL21 USES= gnustep -USE_GNUSTEP= back build +USE_GNUSTEP= gui base back build WRKSRC= ${WRKDIR}/${DISTNAME} -MAKE_ENV+= GNUSTEP_INSTALLATION_DIR=${GNUSTEP_SYSTEM_ROOT} post-patch: ${REINPLACE_CMD} -e 's|^GNUSTEP_INSTALLATION_DOMAIN|#GNUSTEP_INSTALLATION_DOMAIN|' \ ${WRKSRC}/GNUmakefile post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Paje.app/Paje \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Bundles/Paje/AggregatingFilter.bundle/AggregatingFilter \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Bundles/Paje/ContainerFilter.bundle/ContainerFilter \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Bundles/Paje/EntityTypeFilter.bundle/EntityTypeFilter \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Bundles/Paje/FieldFilter.bundle/FieldFilter \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Bundles/Paje/FileReader.bundle/FileReader \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Bundles/Paje/General.bundle/General \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Bundles/Paje/ImbricationFilter.bundle/ImbricationFilter \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Bundles/Paje/OrderFilter.bundle/OrderFilter \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Bundles/Paje/PajeEventDecoder.bundle/PajeEventDecoder \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Bundles/Paje/PajeSimulator.bundle/PajeSimulator \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Bundles/Paje/ReductionFilter.bundle/ReductionFilter \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Bundles/Paje/SpaceTimeViewer.bundle/SpaceTimeViewer \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Bundles/Paje/StatViewer.bundle/StatViewer \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Bundles/Paje/StorageController.bundle/StorageController .include Index: head/science/paje/files/patch-DrawView+Finding.m =================================================================== --- head/science/paje/files/patch-DrawView+Finding.m (revision 448471) +++ head/science/paje/files/patch-DrawView+Finding.m (nonexistent) @@ -1,12 +0,0 @@ ---- SpaceTimeViewer/DrawView+Finding.m.orig 2006-10-29 20:52:48.000000000 +0100 -+++ SpaceTimeViewer/DrawView+Finding.m -@@ -24,7 +24,9 @@ - #include "DrawView.h" - - #include -+#if !defined(__FreeBSD__) && !defined(__DragonFly__) - #include -+#endif - - - // returns a rectangle that is the same as rect but has positive height and width Property changes on: head/science/paje/files/patch-DrawView+Finding.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/science/paje/files/patch-DrawView+Drawing.m =================================================================== --- head/science/paje/files/patch-DrawView+Drawing.m (revision 448471) +++ head/science/paje/files/patch-DrawView+Drawing.m (nonexistent) @@ -1,14 +0,0 @@ ---- SpaceTimeViewer/DrawView+Drawing.m.orig Mon Jan 9 02:13:30 2006 -+++ SpaceTimeViewer/DrawView+Drawing.m -@@ -23,7 +23,11 @@ - - #include "DrawView.h" - #ifdef GNUSTEP -+# if !defined(__FreeBSD__) && !defined(__DragonFly__) - #include -+# else -+#include -+# endif - #endif - - @implementation DrawView (Drawing) Property changes on: head/science/paje/files/patch-DrawView+Drawing.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/science/paje/files/patch-NSArray+Additions.m =================================================================== --- head/science/paje/files/patch-NSArray+Additions.m (revision 448471) +++ head/science/paje/files/patch-NSArray+Additions.m (nonexistent) @@ -1,10 +0,0 @@ ---- General/NSArray+Additions.m.orig 2006-01-24 14:10:07.000000000 +0100 -+++ General/NSArray+Additions.m 2008-05-03 08:13:11.000000000 +0200 -@@ -19,6 +19,7 @@ - */ - - #include "NSArray+Additions.h" -+#include "Foundation/NSEnumerator.h" - #include "Macros.h" - - // Enumerator of objects in a range of indexes of an array Property changes on: head/science/paje/files/patch-NSArray+Additions.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/science/paje/files/patch-AggregatingFilter_GNUmakefile =================================================================== --- head/science/paje/files/patch-AggregatingFilter_GNUmakefile (nonexistent) +++ head/science/paje/files/patch-AggregatingFilter_GNUmakefile (revision 448472) @@ -0,0 +1,18 @@ +--- AggregatingFilter/GNUmakefile.orig 2007-02-15 13:56:33 UTC ++++ AggregatingFilter/GNUmakefile +@@ -1,8 +1,4 @@ +-ifeq "$(GNUSTEP_SYSTEM_ROOT)" "" +- include Makefile +-else +- +-BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Bundles/Paje ++BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Bundles/Paje + + include $(GNUSTEP_MAKEFILES)/common.make + +@@ -38,5 +34,3 @@ h.template + -include GNUmakefile.preamble + include $(GNUSTEP_MAKEFILES)/bundle.make + -include GNUmakefile.postamble +- +-endif Property changes on: head/science/paje/files/patch-AggregatingFilter_GNUmakefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/science/paje/files/patch-ContainerFilter_GNUmakefile =================================================================== --- head/science/paje/files/patch-ContainerFilter_GNUmakefile (nonexistent) +++ head/science/paje/files/patch-ContainerFilter_GNUmakefile (revision 448472) @@ -0,0 +1,8 @@ +--- ContainerFilter/GNUmakefile.orig 2005-05-01 00:09:07 UTC ++++ ContainerFilter/GNUmakefile +@@ -1,4 +1,4 @@ +-BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Bundles/Paje ++BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Bundles/Paje + + include $(GNUSTEP_MAKEFILES)/common.make + Property changes on: head/science/paje/files/patch-ContainerFilter_GNUmakefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/science/paje/files/patch-EntityTypeFilter_GNUmakefile =================================================================== --- head/science/paje/files/patch-EntityTypeFilter_GNUmakefile (nonexistent) +++ head/science/paje/files/patch-EntityTypeFilter_GNUmakefile (revision 448472) @@ -0,0 +1,8 @@ +--- EntityTypeFilter/GNUmakefile.orig 2005-05-01 00:09:07 UTC ++++ EntityTypeFilter/GNUmakefile +@@ -1,4 +1,4 @@ +-BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Bundles/Paje ++BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Bundles/Paje + + include $(GNUSTEP_MAKEFILES)/common.make + Property changes on: head/science/paje/files/patch-EntityTypeFilter_GNUmakefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/science/paje/files/patch-FieldFilter_GNUmakefile =================================================================== --- head/science/paje/files/patch-FieldFilter_GNUmakefile (nonexistent) +++ head/science/paje/files/patch-FieldFilter_GNUmakefile (revision 448472) @@ -0,0 +1,8 @@ +--- FieldFilter/GNUmakefile.orig 2005-05-01 00:09:07 UTC ++++ FieldFilter/GNUmakefile +@@ -1,4 +1,4 @@ +-BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Bundles/Paje ++BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Bundles/Paje + + include $(GNUSTEP_MAKEFILES)/common.make + Property changes on: head/science/paje/files/patch-FieldFilter_GNUmakefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/science/paje/files/patch-FileReader_GNUmakefile =================================================================== --- head/science/paje/files/patch-FileReader_GNUmakefile (nonexistent) +++ head/science/paje/files/patch-FileReader_GNUmakefile (revision 448472) @@ -0,0 +1,11 @@ +--- FileReader/GNUmakefile.orig 2005-05-07 16:34:58 UTC ++++ FileReader/GNUmakefile +@@ -24,7 +24,7 @@ include $(GNUSTEP_MAKEFILES)/common.make + PACKAGE_NAME=FileReader + BUNDLE_NAME=FileReader + BUNDLE_EXTENSION=.bundle +-BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Bundles/Paje ++BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Bundles/Paje + FileReader_PRINCIPAL_CLASS=PajeFileReader + + Property changes on: head/science/paje/files/patch-FileReader_GNUmakefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/science/paje/files/patch-General_GNUmakefile =================================================================== --- head/science/paje/files/patch-General_GNUmakefile (nonexistent) +++ head/science/paje/files/patch-General_GNUmakefile (revision 448472) @@ -0,0 +1,8 @@ +--- General/GNUmakefile.orig 2006-10-30 21:46:08 UTC ++++ General/GNUmakefile +@@ -1,4 +1,4 @@ +-BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Bundles/Paje ++BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Bundles/Paje + + include $(GNUSTEP_MAKEFILES)/common.make + Property changes on: head/science/paje/files/patch-General_GNUmakefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/science/paje/files/patch-General_NSArray+Additions.m =================================================================== --- head/science/paje/files/patch-General_NSArray+Additions.m (nonexistent) +++ head/science/paje/files/patch-General_NSArray+Additions.m (revision 448472) @@ -0,0 +1,10 @@ +--- General/NSArray+Additions.m.orig 2007-02-14 23:28:57 UTC ++++ General/NSArray+Additions.m +@@ -19,6 +19,7 @@ + */ + + #include "NSArray+Additions.h" ++#include "Foundation/NSEnumerator.h" + #include "Macros.h" + + // Enumerator of objects in a range of indexes of an array Property changes on: head/science/paje/files/patch-General_NSArray+Additions.m ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/science/paje/files/patch-ImbricationFilter_GNUmakefile =================================================================== --- head/science/paje/files/patch-ImbricationFilter_GNUmakefile (nonexistent) +++ head/science/paje/files/patch-ImbricationFilter_GNUmakefile (revision 448472) @@ -0,0 +1,8 @@ +--- ImbricationFilter/GNUmakefile.orig 2005-05-01 00:09:07 UTC ++++ ImbricationFilter/GNUmakefile +@@ -1,4 +1,4 @@ +-BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Bundles/Paje ++BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Bundles/Paje + + include $(GNUSTEP_MAKEFILES)/common.make + Property changes on: head/science/paje/files/patch-ImbricationFilter_GNUmakefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/science/paje/files/patch-OrderFilter_GNUmakefile =================================================================== --- head/science/paje/files/patch-OrderFilter_GNUmakefile (nonexistent) +++ head/science/paje/files/patch-OrderFilter_GNUmakefile (revision 448472) @@ -0,0 +1,8 @@ +--- OrderFilter/GNUmakefile.orig 2005-05-01 00:09:07 UTC ++++ OrderFilter/GNUmakefile +@@ -1,4 +1,4 @@ +-BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Bundles/Paje ++BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Bundles/Paje + + include $(GNUSTEP_MAKEFILES)/common.make + Property changes on: head/science/paje/files/patch-OrderFilter_GNUmakefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/science/paje/files/patch-PajeEventDecoder_GNUmakefile =================================================================== --- head/science/paje/files/patch-PajeEventDecoder_GNUmakefile (nonexistent) +++ head/science/paje/files/patch-PajeEventDecoder_GNUmakefile (revision 448472) @@ -0,0 +1,11 @@ +--- PajeEventDecoder/GNUmakefile.orig 2004-12-13 22:15:43 UTC ++++ PajeEventDecoder/GNUmakefile +@@ -24,7 +24,7 @@ include $(GNUSTEP_MAKEFILES)/common.make + PACKAGE_NAME=PajeEventDecoder + BUNDLE_NAME=PajeEventDecoder + BUNDLE_EXTENSION=.bundle +-BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Bundles/Paje ++BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Bundles/Paje + PajeEventDecoder_PRINCIPAL_CLASS=PajeEventDecoder + + Property changes on: head/science/paje/files/patch-PajeEventDecoder_GNUmakefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/science/paje/files/patch-PajeSimulator_GNUmakefile =================================================================== --- head/science/paje/files/patch-PajeSimulator_GNUmakefile (nonexistent) +++ head/science/paje/files/patch-PajeSimulator_GNUmakefile (revision 448472) @@ -0,0 +1,11 @@ +--- PajeSimulator/GNUmakefile.orig 2006-10-30 02:45:37 UTC ++++ PajeSimulator/GNUmakefile +@@ -24,7 +24,7 @@ include $(GNUSTEP_MAKEFILES)/common.make + PACKAGE_NAME=PajeSimulator + BUNDLE_NAME=PajeSimulator + BUNDLE_EXTENSION=.bundle +-BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Bundles/Paje ++BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Bundles/Paje + PajeSimulator_PRINCIPAL_CLASS=PajeSimul + + Property changes on: head/science/paje/files/patch-PajeSimulator_GNUmakefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/science/paje/files/patch-ReductionFilter_GNUmakefile =================================================================== --- head/science/paje/files/patch-ReductionFilter_GNUmakefile (nonexistent) +++ head/science/paje/files/patch-ReductionFilter_GNUmakefile (revision 448472) @@ -0,0 +1,8 @@ +--- ReductionFilter/GNUmakefile.orig 2006-10-30 02:45:37 UTC ++++ ReductionFilter/GNUmakefile +@@ -1,4 +1,4 @@ +-BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Bundles/Paje ++BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Bundles/Paje + + include $(GNUSTEP_MAKEFILES)/common.make + Property changes on: head/science/paje/files/patch-ReductionFilter_GNUmakefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/science/paje/files/patch-SpaceTimeViewer_DrawView+Drawing.m =================================================================== --- head/science/paje/files/patch-SpaceTimeViewer_DrawView+Drawing.m (nonexistent) +++ head/science/paje/files/patch-SpaceTimeViewer_DrawView+Drawing.m (revision 448472) @@ -0,0 +1,14 @@ +--- SpaceTimeViewer/DrawView+Drawing.m.orig 2007-02-16 13:23:30 UTC ++++ SpaceTimeViewer/DrawView+Drawing.m +@@ -23,7 +23,11 @@ + + #include "DrawView.h" + #ifdef GNUSTEP ++# if !defined(__FreeBSD__) && !defined(__DragonFly__) + #include ++# else ++#include ++# endif + #endif + + #include "../General/Association.h" Property changes on: head/science/paje/files/patch-SpaceTimeViewer_DrawView+Drawing.m ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/science/paje/files/patch-SpaceTimeViewer_DrawView+Finding.m =================================================================== --- head/science/paje/files/patch-SpaceTimeViewer_DrawView+Finding.m (nonexistent) +++ head/science/paje/files/patch-SpaceTimeViewer_DrawView+Finding.m (revision 448472) @@ -0,0 +1,12 @@ +--- SpaceTimeViewer/DrawView+Finding.m.orig 2006-10-29 19:52:48 UTC ++++ SpaceTimeViewer/DrawView+Finding.m +@@ -24,7 +24,9 @@ + #include "DrawView.h" + + #include ++#if !defined(__FreeBSD__) && !defined(__DragonFly__) + #include ++#endif + + + // returns a rectangle that is the same as rect but has positive height and width Property changes on: head/science/paje/files/patch-SpaceTimeViewer_DrawView+Finding.m ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/science/paje/files/patch-SpaceTimeViewer_GNUmakefile =================================================================== --- head/science/paje/files/patch-SpaceTimeViewer_GNUmakefile (nonexistent) +++ head/science/paje/files/patch-SpaceTimeViewer_GNUmakefile (revision 448472) @@ -0,0 +1,8 @@ +--- SpaceTimeViewer/GNUmakefile.orig 2005-06-29 21:08:47 UTC ++++ SpaceTimeViewer/GNUmakefile +@@ -1,4 +1,4 @@ +-BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Bundles/Paje ++BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Bundles/Paje + + include $(GNUSTEP_MAKEFILES)/common.make + Property changes on: head/science/paje/files/patch-SpaceTimeViewer_GNUmakefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/science/paje/files/patch-StatViewer_GNUmakefile =================================================================== --- head/science/paje/files/patch-StatViewer_GNUmakefile (nonexistent) +++ head/science/paje/files/patch-StatViewer_GNUmakefile (revision 448472) @@ -0,0 +1,8 @@ +--- StatViewer/GNUmakefile.orig 2005-12-26 19:46:02 UTC ++++ StatViewer/GNUmakefile +@@ -1,4 +1,4 @@ +-BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Bundles/Paje ++BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Bundles/Paje + + include $(GNUSTEP_MAKEFILES)/common.make + Property changes on: head/science/paje/files/patch-StatViewer_GNUmakefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/science/paje/files/patch-StorageController_GNUmakefile =================================================================== --- head/science/paje/files/patch-StorageController_GNUmakefile (nonexistent) +++ head/science/paje/files/patch-StorageController_GNUmakefile (revision 448472) @@ -0,0 +1,17 @@ +--- StorageController/GNUmakefile.orig 2006-10-30 21:46:08 UTC ++++ StorageController/GNUmakefile +@@ -1,8 +1,4 @@ +-ifeq "$(GNUSTEP_SYSTEM_ROOT)" "" +- include Makefile +-else +- +-BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Bundles/Paje ++BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Bundles/Paje + + include $(GNUSTEP_MAKEFILES)/common.make + +@@ -27,4 +23,3 @@ h.template + include $(GNUSTEP_MAKEFILES)/bundle.make + -include GNUmakefile.postamble + +-endif Property changes on: head/science/paje/files/patch-StorageController_GNUmakefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/batmon/Makefile =================================================================== --- head/sysutils/batmon/Makefile (revision 448471) +++ head/sysutils/batmon/Makefile (revision 448472) @@ -1,23 +1,24 @@ # $FreeBSD$ PORTNAME= batmon PORTVERSION= 0.8 +PORTREVISION= 1 CATEGORIES= sysutils gnustep MASTER_SITES= SAVANNAH/gap MAINTAINER= ports@FreeBSD.org COMMENT= GNUstep battery monitor for laptops LICENSE= GPLv2+ USES= gnustep USE_GNUSTEP= back build post-patch: ${REINPLACE_CMD} -e 's|^GNUSTEP_INSTALLATION_DIR|#GNUSTEP_INSTALLATION_DIR|' \ ${WRKSRC}/GNUmakefile post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/batmon.app/batmon .include Index: head/sysutils/timemon/Makefile =================================================================== --- head/sysutils/timemon/Makefile (revision 448471) +++ head/sysutils/timemon/Makefile (revision 448472) @@ -1,24 +1,25 @@ # Created by: gurkan@phys.ethz.ch # $FreeBSD$ PORTNAME= timemon PORTVERSION= 4.2 +PORTREVISION= 1 CATEGORIES= sysutils gnustep MASTER_SITES= SAVANNAH/gap DISTNAME= TimeMon-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= CPU time usage monitor for GNUstep NO_CDROM= distribute without fee USES= gnustep USE_GNUSTEP= back build post-patch: ${RM} ${WRKSRC}/shared_obj/*.* post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/TimeMon.app/TimeMon .include Index: head/textproc/duncan/Makefile =================================================================== --- head/textproc/duncan/Makefile (revision 448471) +++ head/textproc/duncan/Makefile (revision 448472) @@ -1,28 +1,29 @@ # Created by: gurkan@phys.ethz.ch # $FreeBSD$ PORTNAME= duncan PORTVERSION= 0.2 +PORTREVISION= 1 CATEGORIES= textproc gnustep MASTER_SITES= http://www.eskimo.com/~pburns/Dictionaries/files/ DISTNAME= Duncan-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= English to Thai dictionary for GNUstep LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USES= gnustep USE_GNUSTEP= back build WRKSRC= ${WRKDIR}/Duncan post-patch: ${REINPLACE_CMD} -e 's|^GNUSTEP_INSTALLATION_DIR|#GNUSTEP_INSTALLATION_DIR|' \ ${WRKSRC}/GNUmakefile post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Duncan.app/Duncan .include Index: head/textproc/easydiff/Makefile =================================================================== --- head/textproc/easydiff/Makefile (revision 448471) +++ head/textproc/easydiff/Makefile (revision 448472) @@ -1,21 +1,21 @@ # $FreeBSD$ PORTNAME= easydiff PORTVERSION= 0.4.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= textproc gnustep MASTER_SITES= GNUSTEP/usr-apps DISTNAME= EasyDiff-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= GNUstep graphical diff LICENSE= GPLv2+ # COPYING has GPLv3 USES= gnustep USE_GNUSTEP= back build post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/EasyDiff.app/EasyDiff .include Index: head/textproc/latex-service/Makefile =================================================================== --- head/textproc/latex-service/Makefile (revision 448471) +++ head/textproc/latex-service/Makefile (revision 448472) @@ -1,22 +1,22 @@ # $FreeBSD$ PORTNAME= latex PORTVERSION= 0.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= textproc gnustep MASTER_SITES= http://www.roard.com/latexservice/download/ PKGNAMESUFFIX= -service${PKGNAMESUFFIX2} DISTNAME= LaTeXService-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= LaTeX service for GNUstep LICENSE= GPLv2 USES= tar:tgz gnustep USE_GNUSTEP= back build post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Services/LaTeX.service/LaTeX .include Index: head/textproc/localize/Makefile =================================================================== --- head/textproc/localize/Makefile (revision 448471) +++ head/textproc/localize/Makefile (revision 448472) @@ -1,23 +1,23 @@ # $FreeBSD$ PORTNAME= localize PORTVERSION= 0.0.1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= textproc gnustep MASTER_SITES= http://www.eskimo.com/~pburns/Localize/files/ DISTNAME= Localize-20040424 MAINTAINER= ports@FreeBSD.org COMMENT= Application to aid in the translation of .strings files LICENSE= GPLv2 USES= gnustep USE_GNUSTEP= back build WRKSRC= ${WRKDIR}/Localize post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Localize.app/Localize .include Index: head/textproc/popup/Makefile =================================================================== --- head/textproc/popup/Makefile (revision 448471) +++ head/textproc/popup/Makefile (revision 448472) @@ -1,21 +1,21 @@ # $FreeBSD$ PORTNAME= popup PORTVERSION= 0.5 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= textproc gnustep MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/Popup-${PORTVERSION}pre1 DISTNAME= Popup-${PORTVERSION}pre1 MAINTAINER= ports@FreeBSD.org COMMENT= Interactive learning aid for pairs of words LICENSE= GPLv2+ USES= gnustep USE_GNUSTEP= back build post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Popup.app/Popup .include Index: head/www/grr/Makefile =================================================================== --- head/www/grr/Makefile (revision 448471) +++ head/www/grr/Makefile (revision 448472) @@ -1,34 +1,34 @@ # $FreeBSD$ PORTNAME= grr PORTVERSION= 1.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= www gnustep MASTER_SITES= SAVANNAH/gap DISTNAME= Grr-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Rss reader for GNUstep LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libRSSKit.so:www/rsskit USES= gnustep USE_GNUSTEP= back build post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Grr.app/Grr \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Grr.app/Resources/ArticleOperations.grrc/ArticleOperations \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Grr.app/Resources/ArticleTable.grrc/ArticleTable \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Grr.app/Resources/ArticleView.grrc/ArticleView \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Grr.app/Resources/DatabaseOperations.grrc/DatabaseOperations \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Grr.app/Resources/DatabaseTreeView.grrc/DatabaseTreeView \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Grr.app/Resources/Fonts.grrc/Fonts \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Grr.app/Resources/Proxy.grrc/Proxy \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Grr.app/Resources/Searching.grrc/Searching \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Grr.app/Resources/SubscriptionPanel.grrc/SubscriptionPanel \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Grr.app/Resources/TreeDatabase.grrdb/TreeDatabase .include Index: head/www/rsskit/Makefile =================================================================== --- head/www/rsskit/Makefile (revision 448471) +++ head/www/rsskit/Makefile (revision 448472) @@ -1,23 +1,23 @@ # $FreeBSD$ PORTNAME= rsskit PORTVERSION= 0.4 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= www gnustep MASTER_SITES= SAVANNAH/gap DISTNAME= RSSKit-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Etoile Project RSSKit framework LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING USES= gnustep USE_GNUSTEP= back build USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Frameworks/RSSKit.framework/Versions/0/libRSSKit.so .include Index: head/www/sogo2/Makefile =================================================================== --- head/www/sogo2/Makefile (revision 448471) +++ head/www/sogo2/Makefile (revision 448472) @@ -1,65 +1,66 @@ # Created by: Euan Thoms # $FreeBSD$ PORTNAME= sogo2 PORTVERSION= 2.3.22 +PORTREVISION= 1 CATEGORIES= www gnustep MASTER_SITES= http://www.sogo.nu/files/downloads/SOGo/Sources/ DISTNAME= SOGo-${PORTVERSION} MAINTAINER= euan@potensol.com COMMENT= Groupware server with a focus on scalability and open standards LICENSE= GPLv2 LIB_DEPENDS= libmemcached.so:databases/libmemcached \ libcurl.so:ftp/curl \ libDOM.so:devel/sope2 OPTIONS_DEFINE= ACTIVESYNC OPTIONS_SUB= yes ACTIVESYNC_DESC= Enable support for ActiveSync protocol ACTIVESYNC_LIB_DEPENDS= libwbxml2.so:textproc/wbxml2 USERS= sogod GROUPS= sogod USES= gnustep ssl objc USE_GNUSTEP= base build USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES}/sogo CONFLICTS?= sogo2-activesync-[0-9]* sogo3-activesync-[0-9]* USE_RC_SUBR= sogod SUB_LIST+= GNUSTEP_LOCAL_TOOLS=${GNUSTEP_LOCAL_TOOLS} \ GNUSTEP_MAKEFILES=${GNUSTEP_MAKEFILES} ETCDIR= ${PREFIX}/etc/${PORTNAME:S/2//} CONFIGURE_ARGS= --disable-debug --enable-strip post-patch: @${GREP} -rlF '/etc/sogo' ${WRKSRC} \ | ${XARGS} ${REINPLACE_CMD} 's#/etc/sogo#${PREFIX}/etc/sogo#g' @${REINPLACE_CMD} -e 's|/usr/lib/GNUstep|${GNUSTEP_LOCAL_ROOT}/Library|' ${WRKSRC}/Apache/SOGo.conf @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/configure post-patch-ACTIVESYNC-on: @${REINPLACE_CMD} -e 's/Tools/Tools ActiveSync/' ${WRKSRC}/GNUmakefile do-configure: cd ${WRKSRC} ; . ${GNUSTEP_MAKEFILES}/GNUstep.sh ; ./configure ${CONFIGURE_ARGS} post-install: ${MKDIR} ${STAGEDIR}/var/spool/sogo ${MKDIR} ${STAGEDIR}${ETCDIR} ${INSTALL_DATA} ${WRKSRC}/Scripts/sogo.conf ${STAGEDIR}${ETCDIR}/sogo.conf.sample ${INSTALL_DATA} ${WRKSRC}/Apache/SOGo.conf ${STAGEDIR}${ETCDIR}/SOGo-Apache.conf.sample ${INSTALL_DATA} ${WRKSRC}/Apache/SOGo-apple-ab.conf ${STAGEDIR}${ETCDIR}/SOGo-apple-ab.Apache.conf.sample ${INSTALL_DATA} ${FILESDIR}/expire-autoreply.creds.sample ${STAGEDIR}${ETCDIR}/ ${INSTALL_DATA} ${FILESDIR}/ealarms-notify.creds.sample ${STAGEDIR}${ETCDIR}/ ${INSTALL_DATA} ${FILESDIR}/cron-ealarms-notify.sample ${STAGEDIR}${PREFIX}/GNUstep/Local/Tools/Admin/ ${INSTALL_DATA} ${FILESDIR}/cron-expire-autoreply.sample ${STAGEDIR}${PREFIX}/GNUstep/Local/Tools/Admin/ .include Index: head/www/sogo3/Makefile =================================================================== --- head/www/sogo3/Makefile (revision 448471) +++ head/www/sogo3/Makefile (revision 448472) @@ -1,65 +1,66 @@ # Created by: Euan Thoms # $FreeBSD$ PORTNAME= sogo3 PORTVERSION= 3.2.10 +PORTREVISION= 1 CATEGORIES= www gnustep MASTER_SITES= http://www.sogo.nu/files/downloads/SOGo/Sources/ DISTNAME= SOGo-${PORTVERSION} MAINTAINER= euan@potensol.com COMMENT= Groupware server with a focus on scalability and open standards LICENSE= GPLv2 LIB_DEPENDS= libmemcached.so:databases/libmemcached \ libcurl.so:ftp/curl \ libDOM.so:devel/sope3 RUN_DEPENDS= zip:archivers/zip OPTIONS_DEFINE= ACTIVESYNC OPTIONS_SUB= yes ACTIVESYNC_DESC= Enable support for ActiveSync protocol ACTIVESYNC_LIB_DEPENDS= libwbxml2.so:textproc/wbxml2 USERS= sogod GROUPS= sogod USES= gnustep ssl objc USE_GNUSTEP= base build USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES}/sogo CONFLICTS?= sogo[2-3]-activesync-[0-9]* sogo2-[0-9]* USE_RC_SUBR= sogod SUB_LIST+= GNUSTEP_LOCAL_TOOLS=${GNUSTEP_LOCAL_TOOLS} \ GNUSTEP_MAKEFILES=${GNUSTEP_MAKEFILES} ETCDIR= ${PREFIX}/etc/${PORTNAME:S/3//} CONFIGURE_ARGS= --disable-debug --enable-strip post-patch: @${GREP} -rlF '/etc/sogo' ${WRKSRC} \ | ${XARGS} ${REINPLACE_CMD} 's#/etc/sogo#${PREFIX}/etc/sogo#g' @${REINPLACE_CMD} -e 's|/usr/|/usr/local/|g' ${WRKSRC}/Apache/SOGo.conf post-patch-ACTIVESYNC-on: @${REINPLACE_CMD} -e 's/Tools/Tools ActiveSync/' ${WRKSRC}/GNUmakefile do-configure: cd ${WRKSRC} ; . ${GNUSTEP_MAKEFILES}/GNUstep.sh ; ./configure ${CONFIGURE_ARGS} post-install: ${MKDIR} ${STAGEDIR}/var/spool/sogo ${MKDIR} ${STAGEDIR}${ETCDIR} ${INSTALL_DATA} ${WRKSRC}/Scripts/sogo.conf ${STAGEDIR}${ETCDIR}/sogo.conf.sample ${INSTALL_DATA} ${WRKSRC}/Apache/SOGo.conf ${STAGEDIR}${ETCDIR}/SOGo-Apache.conf.sample ${INSTALL_DATA} ${WRKSRC}/Apache/SOGo-apple-ab.conf ${STAGEDIR}${ETCDIR}/SOGo-apple-ab.Apache.conf.sample ${INSTALL_DATA} ${FILESDIR}/expire-autoreply.creds.sample ${STAGEDIR}${ETCDIR}/ ${INSTALL_DATA} ${FILESDIR}/ealarms-notify.creds.sample ${STAGEDIR}${ETCDIR}/ ${INSTALL_DATA} ${FILESDIR}/cron-ealarms-notify.sample ${STAGEDIR}${PREFIX}/GNUstep/Local/Tools/Admin/ ${INSTALL_DATA} ${FILESDIR}/cron-expire-autoreply.sample ${STAGEDIR}${PREFIX}/GNUstep/Local/Tools/Admin/ .include Index: head/x11/gnustep-app/Makefile =================================================================== --- head/x11/gnustep-app/Makefile (revision 448471) +++ head/x11/gnustep-app/Makefile (revision 448472) @@ -1,87 +1,87 @@ # Created by: dirk.meyer@dinoex.sub.org # $FreeBSD$ PORTNAME= gnustep-app PORTVERSION= 2.0.0 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= x11 gnustep MAINTAINER= theraven@FreeBSD.org COMMENT= Metaport for GNUstep applications USES= metaport gnustep USE_GNUSTEP= back base gui RUN_DEPENDS= aclock>0:x11-clocks/aclock \ addresses>0:mail/addresses \ addresses-goodies>0:mail/addresses-goodies \ affiche>0:deskutils/affiche \ appwrapper>0:deskutils/appwrapper \ batmon>0:sysutils/batmon \ biococoa>0:biology/biococoa \ camera>0:graphics/camera \ camerakit>0:graphics/camerakit \ cartotheque>0:deskutils/cartotheque \ cddb-bundle>0:audio/cddb-bundle \ gnustep-cdplayer>0:audio/gnustep-cdplayer \ cenon>0:graphics/cenon \ duncan>0:textproc/duncan \ easydiff>0:textproc/easydiff \ edenmath>0:math/edenmath \ expense>0:finance/expense \ fortunate>0:games/fortunate \ fortytwo-bdb>0:databases/fortytwo-bdb \ fortytwo-encore>0:devel/fortytwo-encore \ fortytwo>0:graphics/fortytwo \ freetar>0:archivers/freetar \ gmastermind>0:games/gmastermind \ gmines>0:games/gmines \ gnumail>0:mail/gnumail \ gnustep-ftp>0:ftp/gnustep-ftp \ gnustep-ladder>0:games/gnustep-ladder \ gnustep-slideshowkit>0:graphics/gnustep-slideshowkit \ gnustep-slideshow>0:graphics/gnustep-slideshow \ gnustep-sudoku>0:games/gnustep-sudoku \ gnustep-wrapper>0:deskutils/gnustep-wrapper \ gorm>0:devel/gorm \ grubik>0:games/grubik \ gscheme>0:lang/gscheme \ gshisen>0:games/gshisen \ gskrab>0:x11/gskrab \ gspdf>0:print/gspdf \ gtamsanalyzer>0:science/gtamsanalyzer \ gworkspace-gwmetadata>0:deskutils/gworkspace-gwmetadata \ gworkspace>0:deskutils/gworkspace \ helpviewer>0:deskutils/helpviewer \ highlighterkit>0:devel/highlighterkit \ imageviewer>0:graphics/imageviewer \ innerspace>0:x11/innerspace \ jigsaw>0:games/jigsaw \ ja-jishyo>0:japanese/jishyo \ lapispuzzle>0:games/lapispuzzle \ laternamagica>0:graphics/laternamagica \ latex-service>0:textproc/latex-service \ localize>0:textproc/localize \ lusernet>0:news/lusernet \ mpdcon>0:audio/mpdcon \ nextgo>0:games/nextgo \ paje>0:science/paje \ pantomime>0:mail/pantomime \ pixen>0:graphics/pixen \ plopfolio>0:deskutils/plopfolio \ poe>0:multimedia/poe \ popup>0:textproc/popup \ gnustep-preview>0:graphics/preview \ price>0:graphics/price \ remotedesk>0:net/remotedesk \ simpleagenda>0:deskutils/simpleagenda \ systempreferences>0:deskutils/systempreferences \ terminal.app>0:x11/terminal.app \ timemon>0:sysutils/timemon \ toolboxkit>0:deskutils/toolboxkit \ waiho>0:ftp/waiho \ wizardkit>0:devel/wizardkit \ zillion>0:net/zillion \ zipper>0:archivers/zipper .include Index: head/x11/gskrab/Makefile =================================================================== --- head/x11/gskrab/Makefile (revision 448471) +++ head/x11/gskrab/Makefile (revision 448472) @@ -1,29 +1,29 @@ # $FreeBSD$ PORTNAME= gskrab PORTVERSION= 0.0.1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= x11 gnustep MASTER_SITES= http://organact.mine.nu/~wolfgang/gskrab/ DISTNAME= GSKrab-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= GNUstep Keyboard Grabber LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING USES= gnustep USE_GNUSTEP= back build USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} ADDITIONAL_LIB_DIRS+= -L${WRKSRC}/GSKrabFramework/GSKrab.framework/Versions/Current post-patch: @${REINPLACE_CMD} -e "/GNUSTEP_INSTALLATION_DIR/d" ${WRKSRC}/GNUmakefile post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Tools/gsks \ ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Frameworks/GSKrab.framework/Versions/0/libGSKrab.so .include Index: head/x11/innerspace/Makefile =================================================================== --- head/x11/innerspace/Makefile (revision 448471) +++ head/x11/innerspace/Makefile (revision 448472) @@ -1,29 +1,29 @@ # $FreeBSD$ PORTNAME= innerspace PORTVERSION= 0.2.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= x11 gnustep MASTER_SITES= SAVANNAH/gap DISTNAME= InnerSpace-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= GNUstep screensaver LICENSE= GPLv2 USES= gnustep USE_GNUSTEP= back build post-patch: ${REINPLACE_CMD} -e 's|^GNUSTEP_INSTALLATION_DIR|#GNUSTEP_INSTALLATION_DIR|' \ ${WRKSRC}/GNUmakefile post-install: ${STRIP_CMD} \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/InnerSpace.app/Resources/NickSpace.InnerSpace/NickSpace \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/InnerSpace.app/Resources/Black.InnerSpace/Black \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/InnerSpace.app/Resources/Boxes.InnerSpace/Boxes \ ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/InnerSpace.app/InnerSpace .include Index: head/x11/innerspace/files/patch-NickSpaceView.m =================================================================== --- head/x11/innerspace/files/patch-NickSpaceView.m (revision 448471) +++ head/x11/innerspace/files/patch-NickSpaceView.m (nonexistent) @@ -1,11 +0,0 @@ ---- NickSpace.bproj/NickSpaceView.m.orig 2005-06-27 18:53:04.000000000 -0500 -+++ NickSpace.bproj/NickSpaceView.m -@@ -1,6 +1,8 @@ - #import "NickSpaceView.h" - #import -+#if !defined(__FreeBSD__) && !defined(__DragonFly__) - #import -+#endif - #import - #import - Property changes on: head/x11/innerspace/files/patch-NickSpaceView.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/x11/innerspace/files/patch-Black.bproj_GNUmakefile =================================================================== --- head/x11/innerspace/files/patch-Black.bproj_GNUmakefile (nonexistent) +++ head/x11/innerspace/files/patch-Black.bproj_GNUmakefile (revision 448472) @@ -0,0 +1,11 @@ +--- Black.bproj/GNUmakefile.orig 2017-08-13 17:29:20 UTC ++++ Black.bproj/GNUmakefile +@@ -18,8 +18,6 @@ + # If not, write to the Free Software Foundation, + # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +-GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT) +- + # Black_MAIN_MODEL_FILE = Black.gmodel + Black_PRINCIPAL_CLASS = BlackView + Property changes on: head/x11/innerspace/files/patch-Black.bproj_GNUmakefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/innerspace/files/patch-Boxes.bproj_GNUmakefile =================================================================== --- head/x11/innerspace/files/patch-Boxes.bproj_GNUmakefile (nonexistent) +++ head/x11/innerspace/files/patch-Boxes.bproj_GNUmakefile (revision 448472) @@ -0,0 +1,11 @@ +--- Boxes.bproj/GNUmakefile.orig 2017-08-13 17:28:44 UTC ++++ Boxes.bproj/GNUmakefile +@@ -26,8 +26,6 @@ + # If not, write to the Free Software Foundation, + # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +-GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT) +- + + # Boxes_MAIN_MODEL_FILE = Boxes.gorm + Boxes_PRINCIPAL_CLASS = BoxesView Property changes on: head/x11/innerspace/files/patch-Boxes.bproj_GNUmakefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/innerspace/files/patch-NickSpace.bproj_GNUmakefile =================================================================== --- head/x11/innerspace/files/patch-NickSpace.bproj_GNUmakefile (nonexistent) +++ head/x11/innerspace/files/patch-NickSpace.bproj_GNUmakefile (revision 448472) @@ -0,0 +1,11 @@ +--- NickSpace.bproj/GNUmakefile.orig 2017-08-13 17:29:06 UTC ++++ NickSpace.bproj/GNUmakefile +@@ -26,8 +26,6 @@ + # If not, write to the Free Software Foundation, + # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +-GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT) +- + NickSpace_MAIN_MODEL_FILE = NickSpace.gorm + + include $(GNUSTEP_MAKEFILES)/common.make Property changes on: head/x11/innerspace/files/patch-NickSpace.bproj_GNUmakefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/innerspace/files/patch-NickSpace.bproj_NickSpaceView.m =================================================================== --- head/x11/innerspace/files/patch-NickSpace.bproj_NickSpaceView.m (nonexistent) +++ head/x11/innerspace/files/patch-NickSpace.bproj_NickSpaceView.m (revision 448472) @@ -0,0 +1,11 @@ +--- NickSpace.bproj/NickSpaceView.m.orig 2005-06-27 23:53:04 UTC ++++ NickSpace.bproj/NickSpaceView.m +@@ -1,6 +1,8 @@ + #import "NickSpaceView.h" + #import ++#if !defined(__FreeBSD__) && !defined(__DragonFly__) + #import ++#endif + #import + #import + Property changes on: head/x11/innerspace/files/patch-NickSpace.bproj_NickSpaceView.m ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/x11/terminal.app/files/patch-main.m =================================================================== --- head/x11/terminal.app/files/patch-main.m (revision 448471) +++ head/x11/terminal.app/files/patch-main.m (nonexistent) @@ -1,13 +0,0 @@ ---- main.m.orig 2009-11-20 21:06:38.000000000 +0100 -+++ main.m 2010-05-24 09:20:30.000000000 +0200 -@@ -186,8 +186,8 @@ - [m addItemWithTitle: _(@"Close") - action: @selector(performClose:) - keyEquivalent: @"w"]; -- [m addItemWithTitle: _(@"Miniaturize all") -- action: @selector(miniaturizeAll:) -+ [m addItemWithTitle: _(@"Miniaturize Window") -+ action: @selector(miniaturize:) - keyEquivalent: @"m"]; - [menu setSubmenu: m forItem: [menu addItemWithTitle: _(@"Windows")]]; - [NSApp setWindowsMenu: m]; Property changes on: head/x11/terminal.app/files/patch-main.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/x11/terminal.app/files/patch-TerminalView.m =================================================================== --- head/x11/terminal.app/files/patch-TerminalView.m (revision 448471) +++ head/x11/terminal.app/files/patch-TerminalView.m (nonexistent) @@ -1,28 +0,0 @@ ---- TerminalView.m.orig 2012-03-06 17:54:33.000000000 -0500 -+++ TerminalView.m -@@ -33,7 +33,7 @@ activated */ - # include - # include - #define TCSETS TIOCSETA --#elif defined(__FreeBSD__) -+#elif defined(__FreeBSD__) || defined(__DragonFly__) - # include - # include - # include -@@ -52,7 +52,7 @@ activated */ - #include - #include - #include --#ifndef __FreeBSD__ -+#if !defined(__FreeBSD__) && !defined(__DragonFly__) - #if !(defined (__NetBSD__)) && !(defined (__SOLARIS__)) && !(defined(__OpenBSD__)) - # include - #endif -@@ -73,6 +73,7 @@ activated */ - #include - #include - #include -+#include - - #include "TerminalView.h" - Property changes on: head/x11/terminal.app/files/patch-TerminalView.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/x11/terminal.app/Makefile =================================================================== --- head/x11/terminal.app/Makefile (revision 448471) +++ head/x11/terminal.app/Makefile (revision 448472) @@ -1,25 +1,24 @@ # Created by: gurkan@phys.ethz.ch # $FreeBSD$ PORTNAME= terminal.app -PORTVERSION= 0.9.8 -PORTREVISION= 3 +PORTVERSION= 0.9.9 CATEGORIES= x11 gnustep MASTER_SITES= SAVANNAH/gap DISTNAME= Terminal-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= theraven@FreeBSD.org COMMENT= Terminal Emulator for GNUstep LICENSE= GPLv2 # only LICENSE_FILE= ${WRKSRC}/COPYING USES= gnustep iconv USE_GNUSTEP= back build MAKE_ARGS+= Terminal_TOOL_LIBS='${ICONV_LIB} -lutil' post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Terminal.app/Terminal .include Index: head/x11/terminal.app/distinfo =================================================================== --- head/x11/terminal.app/distinfo (revision 448471) +++ head/x11/terminal.app/distinfo (revision 448472) @@ -1,2 +1,3 @@ -SHA256 (Terminal-0.9.8.tar.gz) = 488428fcc8c25eb3d0b29419f12f48d1dc893dbf89aa71a80743fba31e18eace -SIZE (Terminal-0.9.8.tar.gz) = 110520 +TIMESTAMP = 1502622027 +SHA256 (Terminal-0.9.9.tar.gz) = 27f81bbecdbd10cde8c080012cde4973bec20e551c58c29f353733cf03c220e9 +SIZE (Terminal-0.9.9.tar.gz) = 88762 Index: head/x11-clocks/aclock/Makefile =================================================================== --- head/x11-clocks/aclock/Makefile (revision 448471) +++ head/x11-clocks/aclock/Makefile (revision 448472) @@ -1,25 +1,25 @@ # Created by: gurkan@phys.ethz.ch # $FreeBSD$ PORTNAME= aclock PORTVERSION= 0.4.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= x11-clocks gnustep MASTER_SITES= SAVANNAH/gap DISTNAME= AClock-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Analog Clock for GNUstep LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING USES= gnustep USE_GNUSTEP= back build WRKSRC= ${WRKDIR}/${DISTNAME} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/AClock.app/AClock .include Index: head/x11-toolkits/gnustep-back/Makefile =================================================================== --- head/x11-toolkits/gnustep-back/Makefile (revision 448471) +++ head/x11-toolkits/gnustep-back/Makefile (revision 448472) @@ -1,50 +1,49 @@ # $FreeBSD$ PORTNAME= gnustep-back -PORTVERSION= 0.24.1 -PORTREVISION= 1 +PORTVERSION= 0.25.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:graphics/giflib \ libtiff.so:graphics/tiff \ libXft.so:x11-fonts/libXft \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libcairo.so: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" 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 448471) +++ head/x11-toolkits/gnustep-back/distinfo (revision 448472) @@ -1,2 +1,3 @@ -SHA256 (gnustep-back-0.24.1.tar.gz) = e255628e0f9be9b10359bb1be6690c50a0929bc383e6996966076492af02457e -SIZE (gnustep-back-0.24.1.tar.gz) = 966529 +TIMESTAMP = 1495189160 +SHA256 (gnustep-back-0.25.1.tar.gz) = ea563b7d6e4bd8b13856306c94bfe06b0909b71e62ab70dccf1c208f4889e2bf +SIZE (gnustep-back-0.25.1.tar.gz) = 974775 Index: head/x11-toolkits/gnustep-gui/Makefile =================================================================== --- head/x11-toolkits/gnustep-gui/Makefile (revision 448471) +++ head/x11-toolkits/gnustep-gui/Makefile (revision 448472) @@ -1,69 +1,68 @@ # Created by: Thomas Gellekum # $FreeBSD$ PORTNAME= gnustep-gui -PORTVERSION= 0.24.1 -PORTREVISION= 6 +PORTVERSION= 0.25.1 CATEGORIES= x11-toolkits gnustep MASTER_SITES= GNUSTEP/core MAINTAINER= theraven@FreeBSD.org COMMENT= GNUstep GUI library LICENSE= GPLv3 LGPL3 LICENSE_COMB= multi LIB_DEPENDS+= libtiff.so:graphics/tiff LIB_DEPENDS+= libpng.so:graphics/png LIB_DEPENDS+= libgif.so:graphics/giflib LIB_DEPENDS+= libicui18n.so:devel/icu LIB_DEPENDS+= libsndfile.so:audio/libsndfile LIB_DEPENDS+= libao.so:audio/libao -BUILD_DEPENDS+= ${LOCALBASE}/lib/libflite.a:audio/flite +LIB_DEPENDS+= libflite.so:audio/flite BROKEN_armv6= fails to package: chmod: GSSpeechServer.desktop: No such file or directory OPTIONS_DEFINE= DOCS CUPS ASPELL OPTIONS_DEFAULT= CUPS OPTIONS_SUB= yes DOCS_BUILD_DEPENDS= texi2html:textproc/texi2html \ texi2pdf:print/texinfo 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}" PLIST_SUB+= BASEVERSION=${PORTVERSION:C/[.][0-9]*$//1} CUPS_CONFIGURE_ENABLE= cups CUPS_LIB_DEPENDS+= libcups.so:print/cups ASPELL_LIB_DEPENDS= libaspell.so: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 448471) +++ head/x11-toolkits/gnustep-gui/distinfo (revision 448472) @@ -1,2 +1,3 @@ -SHA256 (gnustep-gui-0.24.1.tar.gz) = a749573c99d668b83230cc40b8b215b13d62e795615799a873981406cf2bb728 -SIZE (gnustep-gui-0.24.1.tar.gz) = 2837611 +TIMESTAMP = 1495189097 +SHA256 (gnustep-gui-0.25.1.tar.gz) = 3aacb277976014cfd4394084066187430100657dea234da91d9ae5015e747c66 +SIZE (gnustep-gui-0.25.1.tar.gz) = 2888779 Index: head/x11-toolkits/gnustep-gui/files/patch-Headers__AppKit__NSTableView.h =================================================================== --- head/x11-toolkits/gnustep-gui/files/patch-Headers__AppKit__NSTableView.h (revision 448471) +++ head/x11-toolkits/gnustep-gui/files/patch-Headers__AppKit__NSTableView.h (nonexistent) @@ -1,11 +0,0 @@ ---- 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 ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/x11-toolkits/gnustep-gui/pkg-plist =================================================================== --- head/x11-toolkits/gnustep-gui/pkg-plist (revision 448471) +++ head/x11-toolkits/gnustep-gui/pkg-plist (revision 448472) @@ -1,813 +1,859 @@ %%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 %%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/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 @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/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/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/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/Documentation/Developer/Gui/ProgrammingManual/AppKit/Affine-Transformations.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/Application-Makefiles.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/Basic-Controls.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/Browsers.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/Images-and-Imageviews.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/Interface-Files.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/Introduction.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/Matrix-Controls.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/Outlets-and-Actions.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/Tableviews.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/The-view-concept.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/applicationmakefiles.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/basicconcepts.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/browsercontrols.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/conceptindex.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/controls.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/dataexchange.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/eventhandling.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/fdl.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/gnustepapplications.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/images.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/index.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/interfacefiles.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/matrix.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/outlineviews.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/tableview.html +GNUstep/System/Library/Documentation/Developer/Gui/ProgrammingManual/AppKit/theviewconcept.html +GNUstep/System/Library/Documentation/man/man1/GSSpeechServer.1.gz +GNUstep/System/Library/Documentation/man/man1/say.1.gz +GNUstep/System/Library/Headers/AppKit/GSXibKeyedUnarchiver.h +GNUstep/System/Library/Headers/AppKit/NSAnimationContext.h +GNUstep/System/Library/Headers/GNUstepGUI/GSXibKeyedUnarchiver.h +GNUstep/System/Library/Headers/gnustep/gui/GSXibKeyedUnarchiver.h +GNUstep/System/Library/Images/NSAdvanced.tiff +GNUstep/System/Library/Images/NSCaution.tiff +GNUstep/System/Library/Images/NSColorPanel.tiff +GNUstep/System/Library/Images/NSFontPanel.tiff +GNUstep/System/Library/Images/NSInfo.tiff +GNUstep/System/Library/Images/NSPreferencesGeneral.tiff +GNUstep/System/Library/Images/NSUserAccounts.tiff +GNUstep/System/Library/Images/common_ApplicationFolder.tiff +GNUstep/System/Library/Images/common_MultipleSelection.tiff +GNUstep/System/Library/Images/common_RecyclerEmpty.tiff +GNUstep/System/Library/Images/common_RecyclerFull.tiff +GNUstep/System/Library/Images/common_VideoFolder.tiff +GNUstep/System/Library/Libraries/gnustep-gui/Versions/%%BASEVERSION%%/Resources/Korean.lproj/Localizable.strings