Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 Jul 2015 13:50:29 +0000 (UTC)
From:      David Chisnall <theraven@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r391062 - in head: Mk/Uses databases/sqlclient deskutils/charmap deskutils/gworkspace deskutils/gworkspace-gwmetadata devel/gnustep-make devel/gorm devel/performance ftp/gnustep-ftp lan...
Message-ID:  <201507011350.t61DoT31036864@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: theraven
Date: Wed Jul  1 13:50:28 2015
New Revision: 391062
URL: https://svnweb.freebsd.org/changeset/ports/391062

Log:
  Update GNUstep ports to their latest versions.
  Also fix a few bits of generic infrastructure along the way.
  
  Approved by:	bapt (mentor)
  Differential Revision:	https://reviews.freebsd.org/D2961

Added:
  head/x11-toolkits/gnustep-gui/files/patch-Headers__AppKit__NSTableView.h   (contents, props changed)
Deleted:
  head/lang/libobjc2/files/
Modified:
  head/Mk/Uses/gnustep.mk
  head/Mk/Uses/iconv.mk
  head/Mk/Uses/objc.mk
  head/databases/sqlclient/Makefile
  head/databases/sqlclient/distinfo
  head/databases/sqlclient/pkg-plist
  head/deskutils/charmap/Makefile
  head/deskutils/gworkspace-gwmetadata/Makefile
  head/deskutils/gworkspace-gwmetadata/distinfo
  head/deskutils/gworkspace/Makefile
  head/deskutils/gworkspace/distinfo
  head/deskutils/gworkspace/pkg-plist
  head/devel/gnustep-make/Makefile
  head/devel/gnustep-make/distinfo
  head/devel/gnustep-make/pkg-plist
  head/devel/gorm/Makefile
  head/devel/gorm/distinfo
  head/devel/gorm/pkg-plist
  head/devel/performance/Makefile
  head/devel/performance/distinfo
  head/devel/performance/pkg-plist
  head/ftp/gnustep-ftp/Makefile
  head/ftp/gnustep-ftp/distinfo
  head/ftp/gnustep-ftp/pkg-plist
  head/lang/gnustep-base/Makefile
  head/lang/gnustep-base/distinfo
  head/lang/gnustep-base/pkg-plist
  head/lang/libobjc2/Makefile
  head/lang/libobjc2/distinfo
  head/mail/gnumail/Makefile
  head/mail/gnumail/distinfo
  head/mail/gnumail/pkg-plist
  head/mail/pantomime/Makefile
  head/mail/pantomime/distinfo
  head/mail/pantomime/pkg-plist
  head/misc/gnustep-examples/Makefile
  head/x11-toolkits/gnustep-back/Makefile
  head/x11-toolkits/gnustep-back/distinfo
  head/x11-toolkits/gnustep-gui/Makefile
  head/x11-toolkits/gnustep-gui/distinfo
  head/x11-toolkits/gnustep-gui/pkg-plist
  head/x11/terminal.app/Makefile

Modified: head/Mk/Uses/gnustep.mk
==============================================================================
--- head/Mk/Uses/gnustep.mk	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/Mk/Uses/gnustep.mk	Wed Jul  1 13:50:28 2015	(r391062)
@@ -33,9 +33,13 @@ GNUSTEP_LOCAL_TOOLS=		${GNUSTEP_LOCAL_RO
 LIB_DIRS+=	${GNUSTEP_SYSTEM_LIBRARIES} \
 		${GNUSTEP_LOCAL_LIBRARIES}
 
-.for a in FLAGS CFLAGS CPPFLAGS OBJCFLAGS INCLUDE_DIRS LDFLAGS LIB_DIRS
+.for a in CFLAGS CPPFLAGS CXXFLAGS OBJCCFLAGS OBJCFLAGS LDFLAGS
+MAKE_ENV+=	ADDITIONAL_${a}="${ADDITIONAL_${a}} ${${a}}"
+.endfor
+.for a in FLAGS INCLUDE_DIRS LIB_DIRS
 MAKE_ENV+=	ADDITIONAL_${a}="${ADDITIONAL_${a}}"
 .endfor
+MAKE_ARGS+=messages=yes
 
 MAKEFILE=	GNUmakefile
 #MAKE_ENV+=	GNUSTEP_CONFIG_FILE=${PORTSDIR}/devel/gnustep-make/files/GNUstep.conf

Modified: head/Mk/Uses/iconv.mk
==============================================================================
--- head/Mk/Uses/iconv.mk	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/Mk/Uses/iconv.mk	Wed Jul  1 13:50:28 2015	(r391062)
@@ -44,6 +44,7 @@ BUILD_DEPENDS+=	libiconv>=1.14_8:${PORTS
 CPPFLAGS+=	-DLIBICONV_PLUG
 CFLAGS+=	-DLIBICONV_PLUG
 CXXFLAGS+=	-DLIBICONV_PLUG
+OBJCFLAGS+=	-DLIBICONV_PLUG
 .endif
 
 .endif

Modified: head/Mk/Uses/objc.mk
==============================================================================
--- head/Mk/Uses/objc.mk	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/Mk/Uses/objc.mk	Wed Jul  1 13:50:28 2015	(r391062)
@@ -10,8 +10,9 @@
 .if !defined(_INCLUDE_USES_OBJC_MK)
 _INCLUDE_USES_OBJC_MK=	yes
 
-.if !empty(objc_ARGS)
-IGNORE=	USES=objc takes no arguments
+objc_ARGS?=
+.if !empty(objc_ARGS) && ! ${objc_ARGS:Mcompiler}
+IGNORE=	USES=objc only accepts no arguments or 'compiler'
 .endif
 
 _CCVERSION!=	${CC} --version
@@ -56,9 +57,11 @@ LDFLAGS+=	-B${LOCALBASE}/bin
 .endif
 .endif
 
+.if ! ${objc_ARGS:Mcompiler}
 LIB_DEPENDS+=	libobjc.so.4.6:${PORTSDIR}/lang/libobjc2
 OBJCFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
+.endif
 CONFIGURE_ENV+=	OBJC="${CC}" OBJCFLAGS="${OBJCFLAGS}"
 MAKE_ENV+=	OBJC="${CC}" OBJCFLAGS="${OBJCFLAGS}"
 

Modified: head/databases/sqlclient/Makefile
==============================================================================
--- head/databases/sqlclient/Makefile	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/databases/sqlclient/Makefile	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,8 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	sqlclient
-PORTVERSION=	1.7.0
-PORTREVISION=	2
+PORTVERSION=	1.8.1
 CATEGORIES=	databases gnustep
 MASTER_SITES=	GNUSTEP/libs
 DISTNAME=	SQLClient-${PORTVERSION}

Modified: head/databases/sqlclient/distinfo
==============================================================================
--- head/databases/sqlclient/distinfo	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/databases/sqlclient/distinfo	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,2 +1,2 @@
-SHA256 (SQLClient-1.7.0.tar.gz) = 8f9c9491f774fce3bf369e407c8f22091c597baddc1a4b0bfe8ccb251bb79462
-SIZE (SQLClient-1.7.0.tar.gz) = 164218
+SHA256 (SQLClient-1.8.1.tar.gz) = c6cb9d0033b496b52b698f1f80007b6acd215441683cf1a1c22f67a96198074f
+SIZE (SQLClient-1.8.1.tar.gz) = 148622

Modified: head/databases/sqlclient/pkg-plist
==============================================================================
--- head/databases/sqlclient/pkg-plist	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/databases/sqlclient/pkg-plist	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,27 +1,29 @@
-GNUstep/Local/Library/Bundles/SQLClient/ECPG.bundle/ECPG
-GNUstep/Local/Library/Bundles/SQLClient/ECPG.bundle/Resources/Info-gnustep.plist
-GNUstep/Local/Library/Bundles/SQLClient/ECPG.bundle/stamp.make
-GNUstep/Local/Library/Bundles/SQLClient/ECPG_libs.bundle/ECPG_libs
-GNUstep/Local/Library/Bundles/SQLClient/ECPG_libs.bundle/Resources/Info-gnustep.plist
-GNUstep/Local/Library/Bundles/SQLClient/ECPG_libs.bundle/stamp.make
-GNUstep/Local/Library/Bundles/SQLClient/MySQL.bundle/MySQL
-GNUstep/Local/Library/Bundles/SQLClient/MySQL.bundle/Resources/Info-gnustep.plist
-GNUstep/Local/Library/Bundles/SQLClient/MySQL.bundle/stamp.make
-GNUstep/Local/Library/Bundles/SQLClient/MySQL_libs.bundle/MySQL_libs
-GNUstep/Local/Library/Bundles/SQLClient/MySQL_libs.bundle/Resources/Info-gnustep.plist
-GNUstep/Local/Library/Bundles/SQLClient/MySQL_libs.bundle/stamp.make
-GNUstep/Local/Library/Bundles/SQLClient/Postgres.bundle/Postgres
-GNUstep/Local/Library/Bundles/SQLClient/Postgres.bundle/Resources/Info-gnustep.plist
-GNUstep/Local/Library/Bundles/SQLClient/Postgres.bundle/stamp.make
-GNUstep/Local/Library/Bundles/SQLClient/Postgres_libs.bundle/Postgres_libs
-GNUstep/Local/Library/Bundles/SQLClient/Postgres_libs.bundle/Resources/Info-gnustep.plist
-GNUstep/Local/Library/Bundles/SQLClient/Postgres_libs.bundle/stamp.make
-GNUstep/Local/Library/Bundles/SQLClient/SQLite.bundle/Resources/Info-gnustep.plist
-GNUstep/Local/Library/Bundles/SQLClient/SQLite.bundle/SQLite
-GNUstep/Local/Library/Bundles/SQLClient/SQLite.bundle/stamp.make
-GNUstep/Local/Library/Bundles/SQLClient/SQLite_libs.bundle/Resources/Info-gnustep.plist
-GNUstep/Local/Library/Bundles/SQLClient/SQLite_libs.bundle/SQLite_libs
-GNUstep/Local/Library/Bundles/SQLClient/SQLite_libs.bundle/stamp.make
+GNUstep/Local/Library/Bundles/SQLClient1.8/ECPG.bundle/ECPG
+GNUstep/Local/Library/Bundles/SQLClient1.8/ECPG.bundle/Resources/Info-gnustep.plist
+GNUstep/Local/Library/Bundles/SQLClient1.8/ECPG.bundle/stamp.make
+GNUstep/Local/Library/Bundles/SQLClient1.8/ECPG_libs.bundle/ECPG_libs
+GNUstep/Local/Library/Bundles/SQLClient1.8/ECPG_libs.bundle/Resources/Info-gnustep.plist
+GNUstep/Local/Library/Bundles/SQLClient1.8/ECPG_libs.bundle/stamp.make
+GNUstep/Local/Library/Bundles/SQLClient1.8/MySQL.bundle/MySQL
+GNUstep/Local/Library/Bundles/SQLClient1.8/MySQL.bundle/Resources/Info-gnustep.plist
+GNUstep/Local/Library/Bundles/SQLClient1.8/MySQL.bundle/stamp.make
+GNUstep/Local/Library/Bundles/SQLClient1.8/MySQL_libs.bundle/MySQL_libs
+GNUstep/Local/Library/Bundles/SQLClient1.8/MySQL_libs.bundle/Resources/Info-gnustep.plist
+GNUstep/Local/Library/Bundles/SQLClient1.8/MySQL_libs.bundle/stamp.make
+GNUstep/Local/Library/Bundles/SQLClient1.8/Postgres.bundle/Postgres
+GNUstep/Local/Library/Bundles/SQLClient1.8/Postgres.bundle/Resources/Info-gnustep.plist
+GNUstep/Local/Library/Bundles/SQLClient1.8/Postgres.bundle/stamp.make
+GNUstep/Local/Library/Bundles/SQLClient1.8/Postgres_libs.bundle/Postgres_libs
+GNUstep/Local/Library/Bundles/SQLClient1.8/Postgres_libs.bundle/Resources/Info-gnustep.plist
+GNUstep/Local/Library/Bundles/SQLClient1.8/Postgres_libs.bundle/stamp.make
+GNUstep/Local/Library/Bundles/SQLClient1.8/SQLite.bundle/Resources/Info-gnustep.plist
+GNUstep/Local/Library/Bundles/SQLClient1.8/SQLite.bundle/SQLite
+GNUstep/Local/Library/Bundles/SQLClient1.8/SQLite.bundle/stamp.make
+GNUstep/Local/Library/Bundles/SQLClient1.8/SQLite_libs.bundle/Resources/Info-gnustep.plist
+GNUstep/Local/Library/Bundles/SQLClient1.8/SQLite_libs.bundle/SQLite_libs
+GNUstep/Local/Library/Bundles/SQLClient1.8/SQLite_libs.bundle/stamp.make
+GNUstep/Local/Library/Libraries/libSQLClient.so.1.8
+GNUstep/Local/Library/Libraries/libSQLClient.so.1.8.0
 GNUstep/Local/Library/Documentation/SQLClient/OrderedSymbolDeclarations.plist
 GNUstep/Local/Library/Documentation/SQLClient/SQLClient.gsdoc
 GNUstep/Local/Library/Documentation/SQLClient/SQLClient.html
@@ -29,5 +31,3 @@ GNUstep/Local/Library/Documentation/SQLC
 GNUstep/Local/Library/Documentation/SQLClient/dependencies
 GNUstep/Local/Library/Headers/SQLClient/SQLClient.h
 GNUstep/Local/Library/Libraries/libSQLClient.so
-GNUstep/Local/Library/Libraries/libSQLClient.so.1.7
-GNUstep/Local/Library/Libraries/libSQLClient.so.1.7.0

Modified: head/deskutils/charmap/Makefile
==============================================================================
--- head/deskutils/charmap/Makefile	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/deskutils/charmap/Makefile	Wed Jul  1 13:50:28 2015	(r391062)
@@ -12,7 +12,6 @@ COMMENT=	Character map for GNUstep
 
 LICENSE=	GPLv2
 
-BROKEN=		Newer version does not work with recent objective C
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
 USES=		gnustep
 USE_GNUSTEP=	back build

Modified: head/deskutils/gworkspace-gwmetadata/Makefile
==============================================================================
--- head/deskutils/gworkspace-gwmetadata/Makefile	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/deskutils/gworkspace-gwmetadata/Makefile	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,8 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	gworkspace
-PORTVERSION=	0.9.2
-PORTREVISION=	4
+PORTVERSION=	0.9.3
 CATEGORIES=	deskutils gnustep
 #MASTER_SITES=	http://www.gnustep.it/enrico/gworkspace/
 MASTER_SITES=	GNUSTEP/usr-apps

Modified: head/deskutils/gworkspace-gwmetadata/distinfo
==============================================================================
--- head/deskutils/gworkspace-gwmetadata/distinfo	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/deskutils/gworkspace-gwmetadata/distinfo	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,2 +1,2 @@
-SHA256 (gworkspace-0.9.2.tar.gz) = 5239ef983fd4358e152fcfb5cd1f6c30366d04357c26c74719eb05da849af4fb
-SIZE (gworkspace-0.9.2.tar.gz) = 4289262
+SHA256 (gworkspace-0.9.3.tar.gz) = 238343a8c4e447debec75ff49f4657f74a4256a49862899214a2c80616c79049
+SIZE (gworkspace-0.9.3.tar.gz) = 3833838

Modified: head/deskutils/gworkspace/Makefile
==============================================================================
--- head/deskutils/gworkspace/Makefile	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/deskutils/gworkspace/Makefile	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,8 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	gworkspace
-PORTVERSION=	0.9.2
-PORTREVISION=	2
+PORTVERSION=	0.9.3
 CATEGORIES=	deskutils gnustep
 #MASTER_SITES=	http://www.gnustep.it/enrico/gworkspace/
 MASTER_SITES=	GNUSTEP/usr-apps

Modified: head/deskutils/gworkspace/distinfo
==============================================================================
--- head/deskutils/gworkspace/distinfo	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/deskutils/gworkspace/distinfo	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,2 +1,2 @@
-SHA256 (gworkspace-0.9.2.tar.gz) = 5239ef983fd4358e152fcfb5cd1f6c30366d04357c26c74719eb05da849af4fb
-SIZE (gworkspace-0.9.2.tar.gz) = 4289262
+SHA256 (gworkspace-0.9.3.tar.gz) = 238343a8c4e447debec75ff49f4657f74a4256a49862899214a2c80616c79049
+SIZE (gworkspace-0.9.3.tar.gz) = 3833838

Modified: head/deskutils/gworkspace/pkg-plist
==============================================================================
--- head/deskutils/gworkspace/pkg-plist	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/deskutils/gworkspace/pkg-plist	Wed Jul  1 13:50:28 2015	(r391062)
@@ -66,9 +66,6 @@ GNUstep/System/Applications/GWorkspace.a
 GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/RunExternal.rtfd/Run-panel.tiff
 GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/RunExternal.rtfd/TXT.rtf
 GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/RunExternal.rtfd/dummy.tiff
-GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/SViewer.rtfd/TXT.rtf
-GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/SViewer.rtfd/dummy.tiff
-GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/SViewer.rtfd/spatial.tiff
 GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/TabbedShelf.rtfd/TXT.rtf
 GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/TabbedShelf.rtfd/TabbedShelf-develop.tiff
 GNUstep/System/Applications/GWorkspace.app/Resources/English.lproj/Help/TabbedShelf.rtfd/dummy.tiff
@@ -178,7 +175,6 @@ GNUstep/System/Applications/GWorkspace.a
 GNUstep/System/Applications/GWorkspace.app/Resources/SmallCellHighlight.tiff
 GNUstep/System/Applications/GWorkspace.app/Resources/SmallCellHighlightSmall.tiff
 GNUstep/System/Applications/GWorkspace.app/Resources/Spanish.lproj/Localizable.strings
-GNUstep/System/Applications/GWorkspace.app/Resources/Spanish.lproj/Localizable.strings~
 GNUstep/System/Applications/GWorkspace.app/Resources/TileHighlight.tiff
 GNUstep/System/Applications/GWorkspace.app/Resources/Weekday-0.tiff
 GNUstep/System/Applications/GWorkspace.app/Resources/Weekday-1.tiff

Modified: head/devel/gnustep-make/Makefile
==============================================================================
--- head/devel/gnustep-make/Makefile	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/devel/gnustep-make/Makefile	Wed Jul  1 13:50:28 2015	(r391062)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	gnustep-make
-PORTVERSION=	2.6.6
-PORTREVISION=	4
+PORTVERSION=	2.6.7
 CATEGORIES=	devel gnustep
 MASTER_SITES=	GNUSTEP/core
 

Modified: head/devel/gnustep-make/distinfo
==============================================================================
--- head/devel/gnustep-make/distinfo	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/devel/gnustep-make/distinfo	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,2 +1,2 @@
-SHA256 (gnustep-make-2.6.6.tar.gz) = bcef14d875ff70b26dfc9e892f33bd3665e3d5d9b12eca0c4f2aae133aca981d
-SIZE (gnustep-make-2.6.6.tar.gz) = 576589
+SHA256 (gnustep-make-2.6.7.tar.gz) = 112b57737c3dcc66c78a5c88925ae1d672673d256d9935598e98bcd687d051e4
+SIZE (gnustep-make-2.6.7.tar.gz) = 583730

Modified: head/devel/gnustep-make/pkg-plist
==============================================================================
--- head/devel/gnustep-make/pkg-plist	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/devel/gnustep-make/pkg-plist	Wed Jul  1 13:50:28 2015	(r391062)
@@ -2,6 +2,7 @@ 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
@@ -85,6 +86,7 @@ GNUstep/System/Library/Makefiles/aggrega
 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
@@ -96,7 +98,6 @@ GNUstep/System/Library/Makefiles/config.
 GNUstep/System/Library/Makefiles/config.sub
 GNUstep/System/Library/Makefiles/cpu.sh
 GNUstep/System/Library/Makefiles/ctool.make
-GNUstep/System/Library/Makefiles/deb-equivs-control.template
 GNUstep/System/Library/Makefiles/documentation.make
 GNUstep/System/Library/Makefiles/empty.make
 GNUstep/System/Library/Makefiles/executable.template

Modified: head/devel/gorm/Makefile
==============================================================================
--- head/devel/gorm/Makefile	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/devel/gorm/Makefile	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,8 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	gorm
-PORTVERSION=	1.2.20
-PORTREVISION=	2
+PORTVERSION=	1.2.22
 CATEGORIES=	devel gnustep
 MASTER_SITES=	GNUSTEP/dev-apps
 

Modified: head/devel/gorm/distinfo
==============================================================================
--- head/devel/gorm/distinfo	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/devel/gorm/distinfo	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,2 +1,2 @@
-SHA256 (gorm-1.2.20.tar.gz) = 1428bee51999e1915017a1d283a6ad73a94cabdddb7a0d5ad0e9f79bec92d6c0
-SIZE (gorm-1.2.20.tar.gz) = 691424
+SHA256 (gorm-1.2.22.tar.gz) = b15aca762a41a233535cdcadf3e0ce8cfcfbb48c31857eef246ca5d68bb105d7
+SIZE (gorm-1.2.22.tar.gz) = 695453

Modified: head/devel/gorm/pkg-plist
==============================================================================
--- head/devel/gorm/pkg-plist	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/devel/gorm/pkg-plist	Wed Jul  1 13:50:28 2015	(r391062)
@@ -352,7 +352,6 @@ GNUstep/System/Library/Headers/GormObjCH
 GNUstep/System/Library/Headers/GormObjCHeaderParser/OCIVarDecl.h
 GNUstep/System/Library/Headers/GormObjCHeaderParser/OCMethod.h
 GNUstep/System/Library/Headers/GormObjCHeaderParser/ParserFunctions.h
-GNUstep/System/Library/Headers/GormPrefs/GormColorsPref.h
 GNUstep/System/Library/Headers/GormPrefs/GormGeneralPref.h
 GNUstep/System/Library/Headers/GormPrefs/GormGuidelinePref.h
 GNUstep/System/Library/Headers/GormPrefs/GormHeadersPref.h
@@ -386,12 +385,12 @@ GNUstep/System/Library/Libraries/libGorm
 GNUstep/System/Library/Libraries/libGorm.so.1
 GNUstep/System/Library/Libraries/libGorm.so.1.1.0
 GNUstep/System/Library/Libraries/libGormCore.so
+GNUstep/System/Library/Libraries/libGormCore.so.%%VERSION%%
 GNUstep/System/Library/Libraries/libGormCore.so.1
-GNUstep/System/Library/Libraries/libGormCore.so.1.2.20
 GNUstep/System/Library/Libraries/libGormObjCHeaderParser.so
 GNUstep/System/Library/Libraries/libGormObjCHeaderParser.so.1
 GNUstep/System/Library/Libraries/libGormObjCHeaderParser.so.1.1.0
 GNUstep/System/Library/Libraries/libGormPrefs.so
+GNUstep/System/Library/Libraries/libGormPrefs.so.%%VERSION%%
 GNUstep/System/Library/Libraries/libGormPrefs.so.1
-GNUstep/System/Library/Libraries/libGormPrefs.so.1.2.20
 GNUstep/System/Tools/Gorm

Modified: head/devel/performance/Makefile
==============================================================================
--- head/devel/performance/Makefile	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/devel/performance/Makefile	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,8 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	performance
-PORTVERSION=	0.4.0
-PORTREVISION=	1
+PORTVERSION=	0.5.0
 CATEGORIES=	devel gnustep
 MASTER_SITES=	GNUSTEP/libs
 DISTNAME=	Performance-${PORTVERSION}

Modified: head/devel/performance/distinfo
==============================================================================
--- head/devel/performance/distinfo	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/devel/performance/distinfo	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,2 +1,2 @@
-SHA256 (Performance-0.4.0.tar.gz) = e55c1a8d9e6f1e3ba146490d1b0cf7b84e124410a50070ab3b27ecfc4aab6a1c
-SIZE (Performance-0.4.0.tar.gz) = 48527
+SHA256 (Performance-0.5.0.tar.gz) = 305fe21705a9774becb58f076542919da38c36867d946b69f735fecfa5bc8459
+SIZE (Performance-0.5.0.tar.gz) = 50569

Modified: head/devel/performance/pkg-plist
==============================================================================
--- head/devel/performance/pkg-plist	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/devel/performance/pkg-plist	Wed Jul  1 13:50:28 2015	(r391062)
@@ -14,6 +14,8 @@ GNUstep/Local/Library/Documentation/Perf
 GNUstep/Local/Library/Documentation/Performance/GSThroughput.html
 GNUstep/Local/Library/Documentation/Performance/GSTicker.gsdoc
 GNUstep/Local/Library/Documentation/Performance/GSTicker.html
+GNUstep/Local/Library/Documentation/Performance/GSUniqued.gsdoc
+GNUstep/Local/Library/Documentation/Performance/GSUniqued.html
 GNUstep/Local/Library/Documentation/Performance/OrderedSymbolDeclarations.plist
 GNUstep/Local/Library/Documentation/Performance/Performance.igsdoc
 GNUstep/Local/Library/Documentation/Performance/dependencies
@@ -25,6 +27,7 @@ GNUstep/Local/Library/Headers/Performanc
 GNUstep/Local/Library/Headers/Performance/GSThreadPool.h
 GNUstep/Local/Library/Headers/Performance/GSThroughput.h
 GNUstep/Local/Library/Headers/Performance/GSTicker.h
+GNUstep/Local/Library/Headers/Performance/GSUniqued.h
 GNUstep/Local/Library/Libraries/libPerformance.so
-GNUstep/Local/Library/Libraries/libPerformance.so.0.4
-GNUstep/Local/Library/Libraries/libPerformance.so.0.4.0
+GNUstep/Local/Library/Libraries/libPerformance.so.%%VERSION%%
+GNUstep/Local/Library/Libraries/libPerformance.so.0.5

Modified: head/ftp/gnustep-ftp/Makefile
==============================================================================
--- head/ftp/gnustep-ftp/Makefile	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/ftp/gnustep-ftp/Makefile	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,8 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	ftp
-PORTVERSION=	0.4
-PORTREVISION=	2
+PORTVERSION=	0.5
 CATEGORIES=	ftp gnustep
 MASTER_SITES=	SAVANNAH/gap
 PKGNAMEPREFIX=	gnustep-

Modified: head/ftp/gnustep-ftp/distinfo
==============================================================================
--- head/ftp/gnustep-ftp/distinfo	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/ftp/gnustep-ftp/distinfo	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,2 +1,2 @@
-SHA256 (FTP-0.4.tar.gz) = 62a742e7b526ca1581ca641f6f444974c69640c1703b269c5b6cce6bfe15520c
-SIZE (FTP-0.4.tar.gz) = 123290
+SHA256 (FTP-0.5.tar.gz) = 159b297df1d797f6a4af2aa353380eeecc99078db27ecc5172e90c5bc3f06073
+SIZE (FTP-0.5.tar.gz) = 132587

Modified: head/ftp/gnustep-ftp/pkg-plist
==============================================================================
--- head/ftp/gnustep-ftp/pkg-plist	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/ftp/gnustep-ftp/pkg-plist	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,3 +1,4 @@
+
 GNUstep/Local/Applications/FTP.app/FTP
 GNUstep/Local/Applications/FTP.app/Resources/FTP.desktop
 GNUstep/Local/Applications/FTP.app/Resources/FTP.gorm/arrow_left.tiff
@@ -6,6 +7,10 @@ GNUstep/Local/Applications/FTP.app/Resou
 GNUstep/Local/Applications/FTP.app/Resources/FTP.gorm/data.info
 GNUstep/Local/Applications/FTP.app/Resources/FTP.gorm/objects.gorm
 GNUstep/Local/Applications/FTP.app/Resources/FTP_icon_gs.tif
+GNUstep/Local/Applications/FTP.app/Resources/GetName.gorm/FTP_icon_gs.tif
+GNUstep/Local/Applications/FTP.app/Resources/GetName.gorm/data.classes
+GNUstep/Local/Applications/FTP.app/Resources/GetName.gorm/data.info
+GNUstep/Local/Applications/FTP.app/Resources/GetName.gorm/objects.gorm
 GNUstep/Local/Applications/FTP.app/Resources/Info-gnustep.plist
 GNUstep/Local/Applications/FTP.app/Resources/arrow_left.tiff
 GNUstep/Local/Applications/FTP.app/Resources/arrow_right.tiff

Modified: head/lang/gnustep-base/Makefile
==============================================================================
--- head/lang/gnustep-base/Makefile	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/lang/gnustep-base/Makefile	Wed Jul  1 13:50:28 2015	(r391062)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	gnustep-base
-PORTVERSION=	1.24.6
-PORTREVISION=	7
+PORTVERSION=	1.24.8
 CATEGORIES=	lang devel gnustep
 MASTER_SITES=	GNUSTEP/core
 

Modified: head/lang/gnustep-base/distinfo
==============================================================================
--- head/lang/gnustep-base/distinfo	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/lang/gnustep-base/distinfo	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,2 +1,2 @@
-SHA256 (gnustep-base-1.24.6.tar.gz) = b6d7bed40c52330928a1e27f8c7b5f8fcf24ede2113542546dcf157a9366d72a
-SIZE (gnustep-base-1.24.6.tar.gz) = 3502981
+SHA256 (gnustep-base-1.24.8.tar.gz) = 5b2a7042bc5001e97ac090143244a4344a6cba72cee53f3840e2492d3db443cb
+SIZE (gnustep-base-1.24.8.tar.gz) = 3515290

Modified: head/lang/gnustep-base/pkg-plist
==============================================================================
--- head/lang/gnustep-base/pkg-plist	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/lang/gnustep-base/pkg-plist	Wed Jul  1 13:50:28 2015	(r391062)
@@ -6,12 +6,15 @@ GNUstep/System/Library/DTDs/gsdoc-1_0_1.
 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
@@ -122,10 +125,11 @@ GNUstep/System/Library/Headers/Foundatio
 GNUstep/System/Library/Headers/Foundation/NSURLProtocol.h
 GNUstep/System/Library/Headers/Foundation/NSURLRequest.h
 GNUstep/System/Library/Headers/Foundation/NSURLResponse.h
+GNUstep/System/Library/Headers/Foundation/NSUUID.h
 GNUstep/System/Library/Headers/Foundation/NSUndoManager.h
 GNUstep/System/Library/Headers/Foundation/NSUserDefaults.h
+GNUstep/System/Library/Headers/Foundation/NSUserNotification.h
 GNUstep/System/Library/Headers/Foundation/NSUtilities.h
-GNUstep/System/Library/Headers/Foundation/NSUUID.h
 GNUstep/System/Library/Headers/Foundation/NSValue.h
 GNUstep/System/Library/Headers/Foundation/NSValueTransformer.h
 GNUstep/System/Library/Headers/Foundation/NSXMLDTD.h
@@ -147,7 +151,6 @@ GNUstep/System/Library/Headers/GNUstepBa
 GNUstep/System/Library/Headers/GNUstepBase/GSLocale.h
 GNUstep/System/Library/Headers/GNUstepBase/GSLock.h
 GNUstep/System/Library/Headers/GNUstepBase/GSMime.h
-GNUstep/System/Library/Headers/GNUstepBase/NSNetServices+GNUstepBase.h
 GNUstep/System/Library/Headers/GNUstepBase/GSObjCRuntime.h
 GNUstep/System/Library/Headers/GNUstepBase/GSUnion.h
 GNUstep/System/Library/Headers/GNUstepBase/GSVersionMacros.h
@@ -161,6 +164,7 @@ GNUstep/System/Library/Headers/GNUstepBa
 GNUstep/System/Library/Headers/GNUstepBase/NSFileHandle+GNUstepBase.h
 GNUstep/System/Library/Headers/GNUstepBase/NSLock+GNUstepBase.h
 GNUstep/System/Library/Headers/GNUstepBase/NSMutableString+GNUstepBase.h
+GNUstep/System/Library/Headers/GNUstepBase/NSNetServices+GNUstepBase.h
 GNUstep/System/Library/Headers/GNUstepBase/NSNumber+GNUstepBase.h
 GNUstep/System/Library/Headers/GNUstepBase/NSObject+GNUstepBase.h
 GNUstep/System/Library/Headers/GNUstepBase/NSProcessInfo+GNUstepBase.h
@@ -179,6 +183,7 @@ GNUstep/System/Library/Headers/gnustep/u
 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
@@ -207,11 +212,6 @@ GNUstep/System/Library/Libraries/gnustep
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/create-abbrevs.m
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/create-regions.m
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/nstimezone.m
-GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/GSTLS/ca-certificates.crt
-GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Creston
-GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Khandyga
-GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Ust-Nera
-GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Europe/Busingen
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/regions
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Abidjan
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Africa/Accra
@@ -280,8 +280,8 @@ GNUstep/System/Library/Libraries/gnustep
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Argentina/La_Rioja
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Argentina/Mendoza
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Argentina/Rio_Gallegos
-GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Argentina/San_Juan
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Argentina/Salta
+GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Argentina/San_Juan
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Argentina/San_Luis
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Argentina/Tucuman
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Argentina/Ushuaia
@@ -311,6 +311,7 @@ GNUstep/System/Library/Libraries/gnustep
 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
@@ -386,8 +387,8 @@ GNUstep/System/Library/Libraries/gnustep
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/North_Dakota/Beulah
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/North_Dakota/Center
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/North_Dakota/New_Salem
-GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Panama
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Ojinaga
+GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Panama
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Pangnirtung
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Paramaribo
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/America/Phoenix
@@ -433,13 +434,14 @@ GNUstep/System/Library/Libraries/gnustep
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/Casey
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/Davis
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/DumontDUrville
-GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/Mawson
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/Macquarie
+GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/Mawson
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/McMurdo
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/Palmer
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/Rothera
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/South_Pole
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/Syowa
+GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/Troll
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Antarctica/Vostok
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Arctic/Longyearbyen
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Aden
@@ -458,6 +460,7 @@ GNUstep/System/Library/Libraries/gnustep
 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
@@ -485,6 +488,7 @@ GNUstep/System/Library/Libraries/gnustep
 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
@@ -508,15 +512,13 @@ GNUstep/System/Library/Libraries/gnustep
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Qyzylorda
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Rangoon
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Riyadh
-GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Riyadh87
-GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Riyadh88
-GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Riyadh89
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Saigon
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Sakhalin
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Samarkand
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Seoul
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Shanghai
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Singapore
+GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Srednekolymsk
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Taipei
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Tashkent
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Asia/Tbilisi
@@ -529,6 +531,7 @@ GNUstep/System/Library/Libraries/gnustep
 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
@@ -637,6 +640,7 @@ GNUstep/System/Library/Libraries/gnustep
 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
@@ -746,9 +750,6 @@ GNUstep/System/Library/Libraries/gnustep
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Mexico/BajaNorte
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Mexico/BajaSur
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Mexico/General
-GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Mideast/Riyadh87
-GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Mideast/Riyadh88
-GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Mideast/Riyadh89
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/NZ
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/NZ-CHAT
 GNUstep/System/Library/Libraries/gnustep-base/Versions/%%BASEVERSION%%/Resources/NSTimeZones/zones/Navajo
@@ -756,6 +757,7 @@ GNUstep/System/Library/Libraries/gnustep
 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

Modified: head/lang/libobjc2/Makefile
==============================================================================
--- head/lang/libobjc2/Makefile	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/lang/libobjc2/Makefile	Wed Jul  1 13:50:28 2015	(r391062)
@@ -5,30 +5,21 @@ PORTNAME=	libobjc2
 PORTVERSION=	1.7
 PORTREVISION=	1
 CATEGORIES=	lang devel gnustep
-MASTER_SITES=	http://download.gna.org/gnustep/
+USE_GITHUB=	yes
+GH_ACCOUNT=	gnustep
+GH_PROJECT=	libobjc2
+GH_TAGNAME=	857edd9
 
 MAINTAINER=	theraven@FreeBSD.org
 COMMENT=	Replacement Objective-C runtime supporting modern Objective-C features
 
 SSP_UNSAFE=	yes
 
-USES=		cmake tar:bzip2
+USES=		cmake objc:compiler
 BROKEN_powerpc=		Does not compile on powerpc: Unsupported relocation type 10
 
 .include <bsd.port.options.mk>
 
-_CLANG!=	if [ -f /usr/bin/clang ] ; then  /usr/bin/clang --version | head -1 | \
-		${SED} -e 's/.*clang version \([0-9]\)\.\([0-9]\).*/\1\2/' ; else ${ECHO} 0 ; fi
-
-.if ${_CLANG} < 34
-BUILD_DEPENDS+=	${LOCALBASE}/bin/clang34:${PORTSDIR}/lang/clang34
-CC=		${LOCALBASE}/bin/clang34
-CXX=	${LOCALBASE}/bin/clang++34
-.else
-CC=		/usr/bin/clang
-CXX=	/usr/bin/clang++
-.endif
-
 SHLIB_MAJOR=	4
 SHLIB_MINOR=	6
 

Modified: head/lang/libobjc2/distinfo
==============================================================================
--- head/lang/libobjc2/distinfo	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/lang/libobjc2/distinfo	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,2 +1,2 @@
-SHA256 (libobjc2-1.7.tar.bz2) = 3a1b4af6ff6f3d8e57bfb27401d1b249670ac2e92ba54ad5683ff3d4439d3cc1
-SIZE (libobjc2-1.7.tar.bz2) = 132662
+SHA256 (gnustep-libobjc2-1.7-857edd9_GH0.tar.gz) = c69add3a57465d56e406b4307d6e734232a13a31336cdfefebe3c29abb9d25e8
+SIZE (gnustep-libobjc2-1.7-857edd9_GH0.tar.gz) = 173442

Modified: head/mail/gnumail/Makefile
==============================================================================
--- head/mail/gnumail/Makefile	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/mail/gnumail/Makefile	Wed Jul  1 13:50:28 2015	(r391062)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	gnumail
-PORTVERSION=	1.2.0
-PORTREVISION=	6
+PORTVERSION=	1.2.2
 CATEGORIES=	mail gnustep
 MASTER_SITES=	http://download.gna.org/gnustep-nonfsf/
 DISTNAME=	GNUMail-${PORTVERSION}

Modified: head/mail/gnumail/distinfo
==============================================================================
--- head/mail/gnumail/distinfo	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/mail/gnumail/distinfo	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,2 +1,2 @@
-SHA256 (GNUMail-1.2.0.tar.gz) = 792512276b253d79362736fb0cb7d614d5a980ea356d03d6adec4d0dd0f6ef2c
-SIZE (GNUMail-1.2.0.tar.gz) = 1380032
+SHA256 (GNUMail-1.2.2.tar.gz) = 31a0c34c3afe20afb6b8ebc41002d2f9dbc2134ceda2032e67e64cb7d884d8af
+SIZE (GNUMail-1.2.2.tar.gz) = 1397764

Modified: head/mail/gnumail/pkg-plist
==============================================================================
--- head/mail/gnumail/pkg-plist	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/mail/gnumail/pkg-plist	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,3 +1,4 @@
+@dir GNUstep/Local/Library/Frameworks/GNUMail.framework/Versions/%%MAJORVERSION%%/Headers
 GNUstep/Local/Applications/GNUMail.app/GNUMail
 GNUstep/Local/Applications/GNUMail.app/Resources/AddressBook_32.tiff
 GNUstep/Local/Applications/GNUMail.app/Resources/AddressManager_32.tiff
@@ -176,6 +177,27 @@ GNUstep/Local/Library/ApplicationSupport
 GNUstep/Local/Library/ApplicationSupport/GNUMail/Compose.prefs/Resources/Info-gnustep.plist
 GNUstep/Local/Library/ApplicationSupport/GNUMail/Compose.prefs/Resources/MailIcon_create.tiff
 GNUstep/Local/Library/ApplicationSupport/GNUMail/Compose.prefs/stamp.make
+GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Emoticon
+GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/Info-gnustep.plist
+GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face1.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face10.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face11.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face13.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face14.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face15.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face19.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face2.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face3.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face4.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face5.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face6.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face8.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/Resources/emoticon-face9.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/Emoticon.bundle/stamp.make
+GNUstep/Local/Library/ApplicationSupport/GNUMail/Face.bundle/Face
+GNUstep/Local/Library/ApplicationSupport/GNUMail/Face.bundle/Resources/Info-gnustep.plist
+GNUstep/Local/Library/ApplicationSupport/GNUMail/Face.bundle/Resources/stamp.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/Face.bundle/stamp.make
 GNUstep/Local/Library/ApplicationSupport/GNUMail/Filtering.prefs/Filtering
 GNUstep/Local/Library/ApplicationSupport/GNUMail/Filtering.prefs/Resources/Filtering.tiff
 GNUstep/Local/Library/ApplicationSupport/GNUMail/Filtering.prefs/Resources/Info-gnustep.plist
@@ -191,6 +213,21 @@ GNUstep/Local/Library/ApplicationSupport
 GNUstep/Local/Library/ApplicationSupport/GNUMail/MIME.prefs/Resources/Info-gnustep.plist
 GNUstep/Local/Library/ApplicationSupport/GNUMail/MIME.prefs/Resources/mime.tiff
 GNUstep/Local/Library/ApplicationSupport/GNUMail/MIME.prefs/stamp.make
+GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/PGP
+GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/Info-gnustep.plist
+GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/clear_20.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/clear_48.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/encrypted_20.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/encrypted_48.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/encrypted_80.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/pgp-mail.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/signed+encrypted_80.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/signed_20.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/signed_48.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/signed_80.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/unsigned_20.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/Resources/unsigned_48.tiff
+GNUstep/Local/Library/ApplicationSupport/GNUMail/PGP.bundle/stamp.make
 GNUstep/Local/Library/ApplicationSupport/GNUMail/Receiving.prefs/Receiving
 GNUstep/Local/Library/ApplicationSupport/GNUMail/Receiving.prefs/Resources/Info-gnustep.plist
 GNUstep/Local/Library/ApplicationSupport/GNUMail/Receiving.prefs/Resources/MailIcon_retrieve.tiff
@@ -222,4 +259,3 @@ GNUstep/Local/Library/Libraries/libGNUMa
 GNUstep/Local/Library/Libraries/libGNUMail.so.%%MAJORVERSION%%
 GNUstep/Local/Library/Libraries/libGNUMail.so.%%VERSION%%
 GNUstep/Local/Tools/GNUMail
-@dir GNUstep/Local/Library/Frameworks/GNUMail.framework/Versions/%%MAJORVERSION%%/Headers

Modified: head/mail/pantomime/Makefile
==============================================================================
--- head/mail/pantomime/Makefile	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/mail/pantomime/Makefile	Wed Jul  1 13:50:28 2015	(r391062)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	pantomime
-PORTVERSION=	1.2.0
-PORTREVISION=	6
+PORTVERSION=	1.2.2
 CATEGORIES=	mail gnustep
 MASTER_SITES=	http://download.gna.org/gnustep-nonfsf/
 DISTNAME=	Pantomime-${PORTVERSION}
@@ -13,7 +12,12 @@ COMMENT=	Mail/MIME handling library for 
 
 LICENSE=	LGPL21
 
-USES=		gnustep
+# The use of libiconv shouldn't be necessary, but a build dependency installs
+# it and we end up picking up the header.
+MAKE_ARGS+=	LIBRARIES_DEPEND_UPON='${ICONV_LIB} -lssl'
+MAKE_ENV+=	GNUSTEP_INSTALLATION_DOMAIN=SYSTEM
+USES=		gnustep iconv
+USE_OPENSSL=	yes
 USE_GNUSTEP=	back build
 USE_LDCONFIG=	${GNUSTEP_LOCAL_LIBRARIES}
 

Modified: head/mail/pantomime/distinfo
==============================================================================
--- head/mail/pantomime/distinfo	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/mail/pantomime/distinfo	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,2 +1,2 @@
-SHA256 (Pantomime-1.2.0.tar.gz) = c6484634dd0611d07108e7e006a2c6bdbe3e72b23de7473440df9a559f6b6218
-SIZE (Pantomime-1.2.0.tar.gz) = 466206
+SHA256 (Pantomime-1.2.2.tar.gz) = f87b6b362b56c2b22667e614432f222604e318e61340a13b30c8277b180a3be8
+SIZE (Pantomime-1.2.2.tar.gz) = 468276

Modified: head/mail/pantomime/pkg-plist
==============================================================================
--- head/mail/pantomime/pkg-plist	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/mail/pantomime/pkg-plist	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,88 +1,88 @@
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Headers
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Pantomime
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Resources
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWCacheManager.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWCharset.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWConnection.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWConstants.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWContainer.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWDNSManager.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWFlags.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWFolder.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWFolderInformation.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWIMAPCacheManager.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWIMAPFolder.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWIMAPMessage.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWIMAPStore.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_1.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_10.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_11.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_13.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_14.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_15.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_2.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_3.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_4.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_5.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_6.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_7.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_8.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_9.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWInternetAddress.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWKOI8_R.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWKOI8_U.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalCacheManager.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalFolder+maildir.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalFolder+mbox.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalFolder.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalMessage.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalStore.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWMD5.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWMIMEMultipart.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWMIMEUtility.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWMessage.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPOP3CacheManager.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPOP3CacheObject.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPOP3Folder.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPOP3Message.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPOP3Store.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWParser.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPart.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWRegEx.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWSMTP.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWSendmail.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWService.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWStore.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWTCPConnection.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWTransport.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWURLName.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWUUFile.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWVirtualFolder.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWWINDOWS_1250.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWWINDOWS_1251.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWWINDOWS_1252.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWWINDOWS_1253.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWWINDOWS_1254.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/NSData+Extensions.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/NSFileManager+Extensions.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/NSScanner+Extensions.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/NSString+Extensions.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/Pantomime.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/io.h
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Pantomime
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Resources/English.lproj/Localizable.strings
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Resources/English.lproj/InfoPlist.strings
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Resources/German.lproj/InfoPlist.strings
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Resources/German.lproj/Localizable.strings
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Resources/Info-gnustep.plist
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/libPantomime.so
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/libPantomime.so.%%LIBVERSION%%
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/libPantomime.so.%%VERSION%%
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/Current
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/Resources/English.lproj/Localizable.strings
-GNUstep/Local/Library/Frameworks/Pantomime.framework/Versions/Resources/German.lproj/Localizable.strings
-GNUstep/Local/Library/Frameworks/Pantomime.framework/libPantomime.so
-GNUstep/Local/Library/Headers/Pantomime
-GNUstep/Local/Library/Libraries/libPantomime.so
-GNUstep/Local/Library/Libraries/libPantomime.so.%%LIBVERSION%%
-GNUstep/Local/Library/Libraries/libPantomime.so.%%VERSION%%
+GNUstep/System/Library/Frameworks/Pantomime.framework/Headers
+GNUstep/System/Library/Frameworks/Pantomime.framework/Pantomime
+GNUstep/System/Library/Frameworks/Pantomime.framework/Resources
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWCacheManager.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWCharset.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWConnection.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWConstants.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWContainer.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWDNSManager.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWFlags.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWFolder.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWFolderInformation.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWIMAPCacheManager.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWIMAPFolder.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWIMAPMessage.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWIMAPStore.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_1.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_10.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_11.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_13.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_14.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_15.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_2.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_3.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_4.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_5.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_6.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_7.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_8.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWISO8859_9.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWInternetAddress.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWKOI8_R.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWKOI8_U.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalCacheManager.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalFolder+maildir.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalFolder+mbox.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalFolder.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalMessage.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWLocalStore.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWMD5.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWMIMEMultipart.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWMIMEUtility.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWMessage.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPOP3CacheManager.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPOP3CacheObject.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPOP3Folder.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPOP3Message.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPOP3Store.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWParser.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWPart.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWRegEx.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWSMTP.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWSendmail.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWService.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWStore.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWTCPConnection.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWTransport.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWURLName.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWUUFile.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWVirtualFolder.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWWINDOWS_1250.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWWINDOWS_1251.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWWINDOWS_1252.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWWINDOWS_1253.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/CWWINDOWS_1254.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/NSData+Extensions.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/NSFileManager+Extensions.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/NSScanner+Extensions.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/NSString+Extensions.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/Pantomime.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Headers/io.h
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Pantomime
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Resources/English.lproj/Localizable.strings
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Resources/English.lproj/InfoPlist.strings
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Resources/German.lproj/InfoPlist.strings
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Resources/German.lproj/Localizable.strings
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/Resources/Info-gnustep.plist
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/libPantomime.so
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/libPantomime.so.%%LIBVERSION%%
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/%%LIBVERSION%%/libPantomime.so.%%VERSION%%
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/Current
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/Resources/English.lproj/Localizable.strings
+GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/Resources/German.lproj/Localizable.strings
+GNUstep/System/Library/Frameworks/Pantomime.framework/libPantomime.so
+GNUstep/System/Library/Headers/Pantomime
+GNUstep/System/Library/Libraries/libPantomime.so
+GNUstep/System/Library/Libraries/libPantomime.so.%%LIBVERSION%%
+GNUstep/System/Library/Libraries/libPantomime.so.%%VERSION%%

Modified: head/misc/gnustep-examples/Makefile
==============================================================================
--- head/misc/gnustep-examples/Makefile	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/misc/gnustep-examples/Makefile	Wed Jul  1 13:50:28 2015	(r391062)
@@ -7,22 +7,30 @@ CATEGORIES=	misc gnustep
 MASTER_SITES=	GNUSTEP/usr-apps
 
 MAINTAINER=	ports@FreeBSD.org
-COMMENT=	GNUstep example applications
 
-BROKEN=		Not converted to USES=gnustep
-
-USE_GNUSTEP=	yes
-USE_GNUSTEP_BACK=	yes
-USE_GNUSTEP_BUILD=	yes
-USE_GNUSTEP_INSTALL=	yes
-USE_GL=		yes
+USES=	gnustep
+USE_GNUSTEP=	back build
 
 WRKSRC=		${WRKDIR}/${DISTNAME}
 USE_GNUSTEP_MAKE_DIRS+=	. gui/Finger gui/GFractal gui/HostAddress gui/MyGL
-MAKE_ENV+=	GNUSTEP_INSTALLATION_DIR=${GNUSTEP_LOCAL_ROOT}
 
 post-patch:
 	${REINPLACE_CMD} -e 's|^//|#|' \
 		${WRKSRC}/gui/GFractal/GNUmakefile
 
+do-build:
+.for i in ${USE_GNUSTEP_MAKE_DIRS}
+	@(cd ${BUILD_WRKSRC}/${i}; . ${GNUSTEP_MAKEFILES}/GNUstep.sh; \
+	   ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${ALL_TARGET})
+.endfor
+
+# ---------------------------------------------------------------------------
+# source GNUstep.sh
+#
+do-install:
+.for i in ${USE_GNUSTEP_MAKE_DIRS}
+	@(cd ${INSTALL_WRKSRC}/${i}; . ${GNUSTEP_MAKEFILES}/GNUstep.sh; \
+	    ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET})
+.endfor
+
 .include <bsd.port.mk>

Modified: head/x11-toolkits/gnustep-back/Makefile
==============================================================================
--- head/x11-toolkits/gnustep-back/Makefile	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/x11-toolkits/gnustep-back/Makefile	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,8 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	gnustep-back
-PORTVERSION=	0.24.0
-PORTREVISION=	5
+PORTVERSION=	0.24.1
 CATEGORIES=	x11-toolkits gnustep
 MASTER_SITES=	GNUSTEP/core
 

Modified: head/x11-toolkits/gnustep-back/distinfo
==============================================================================
--- head/x11-toolkits/gnustep-back/distinfo	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/x11-toolkits/gnustep-back/distinfo	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,2 +1,2 @@
-SHA256 (gnustep-back-0.24.0.tar.gz) = 5fc2ed70076d1cd9d51bf3ad85c71a42bfd29e3fd7c22421cc1de739695c3d62
-SIZE (gnustep-back-0.24.0.tar.gz) = 966735
+SHA256 (gnustep-back-0.24.1.tar.gz) = e255628e0f9be9b10359bb1be6690c50a0929bc383e6996966076492af02457e
+SIZE (gnustep-back-0.24.1.tar.gz) = 966529

Modified: head/x11-toolkits/gnustep-gui/Makefile
==============================================================================
--- head/x11-toolkits/gnustep-gui/Makefile	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/x11-toolkits/gnustep-gui/Makefile	Wed Jul  1 13:50:28 2015	(r391062)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	gnustep-gui
-PORTVERSION=	0.24.0
-PORTREVISION=	5
+PORTVERSION=	0.24.1
 CATEGORIES=	x11-toolkits gnustep
 MASTER_SITES=	GNUSTEP/core
 

Modified: head/x11-toolkits/gnustep-gui/distinfo
==============================================================================
--- head/x11-toolkits/gnustep-gui/distinfo	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/x11-toolkits/gnustep-gui/distinfo	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,2 +1,2 @@
-SHA256 (gnustep-gui-0.24.0.tar.gz) = afcbe6633d24a9ee56efdf3d5b990b7baaa0b7f6288d2b72feb233e599fbd234
-SIZE (gnustep-gui-0.24.0.tar.gz) = 2816889
+SHA256 (gnustep-gui-0.24.1.tar.gz) = a749573c99d668b83230cc40b8b215b13d62e795615799a873981406cf2bb728
+SIZE (gnustep-gui-0.24.1.tar.gz) = 2837611

Added: head/x11-toolkits/gnustep-gui/files/patch-Headers__AppKit__NSTableView.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11-toolkits/gnustep-gui/files/patch-Headers__AppKit__NSTableView.h	Wed Jul  1 13:50:28 2015	(r391062)
@@ -0,0 +1,11 @@
+--- Headers/AppKit/NSTableView.h
++++ Headers/AppKit/NSTableView.h
+@@ -91,7 +91,7 @@
+   BOOL               _drawsGrid;
+   NSColor           *_gridColor;
+   NSColor           *_backgroundColor;
+-  float              _rowHeight;
++  CGFloat            _rowHeight;
+   NSSize             _intercellSpacing;
+   id                 _delegate;
+   NSTableHeaderView *_headerView;

Modified: head/x11-toolkits/gnustep-gui/pkg-plist
==============================================================================
--- head/x11-toolkits/gnustep-gui/pkg-plist	Wed Jul  1 13:50:16 2015	(r391061)
+++ head/x11-toolkits/gnustep-gui/pkg-plist	Wed Jul  1 13:50:28 2015	(r391062)
@@ -1,44 +1,7 @@

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201507011350.t61DoT31036864>