[Midnightbsd-cvs] mports [19894] trunk/devel/projectcenter: projectcenter 0.6.2

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Thu Aug 20 20:31:04 EDT 2015


Revision: 19894
          http://svnweb.midnightbsd.org/mports/?rev=19894
Author:   laffer1
Date:     2015-08-20 20:31:03 -0400 (Thu, 20 Aug 2015)
Log Message:
-----------
projectcenter 0.6.2

Modified Paths:
--------------
    trunk/devel/projectcenter/Makefile
    trunk/devel/projectcenter/distinfo
    trunk/devel/projectcenter/pkg-plist

Added Paths:
-----------
    trunk/devel/projectcenter/files/
    trunk/devel/projectcenter/files/patch-Modules_Debuggers_ProjectCenter_PTYView.m

Modified: trunk/devel/projectcenter/Makefile
===================================================================
--- trunk/devel/projectcenter/Makefile	2015-08-21 00:25:55 UTC (rev 19893)
+++ trunk/devel/projectcenter/Makefile	2015-08-21 00:31:03 UTC (rev 19894)
@@ -1,10 +1,9 @@
 # $MidnightBSD$
 
 PORTNAME=	projectcenter
-PORTVERSION=	0.6.1
+PORTVERSION=	0.6.2
 CATEGORIES=	devel gnustep
-MASTER_SITES=	${MASTER_SITE_GNUSTEP}
-MASTER_SITE_SUBDIR=	dev-apps
+MASTER_SITES=	GNUSTEP/dev-apps
 DISTNAME=	ProjectCenter-${PORTVERSION}
 
 MAINTAINER=	ports at MidnightBSD.org
@@ -12,13 +11,30 @@
 
 LICENSE=	gpl2
 
-USE_GNUSTEP=	yes
-USE_GNUSTEP_BACK=	yes
-USE_GNUSTEP_BUILD=	yes
-USE_GNUSTEP_INSTALL=	yes
-USE_GNUSTEP_LDCONFIG=	${GNUSTEP_SYSTEM_LIBRARIES}
+USES=		gnustep
+USE_GNUSTEP=	back build
+USE_LDCONFIG=	${GNUSTEP_SYSTEM_LIBRARIES}
 
-PLIST_SUB+=	FRAMEVERSION=0.6.0
+PLIST_SUB+=	FRAMEVERSION=${PORTVERSION}
 MAKE_ENV+=	GNUSTEP_INSTALLATION_DOMAIN=SYSTEM
 
+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 <bsd.port.mk>

Modified: trunk/devel/projectcenter/distinfo
===================================================================
--- trunk/devel/projectcenter/distinfo	2015-08-21 00:25:55 UTC (rev 19893)
+++ trunk/devel/projectcenter/distinfo	2015-08-21 00:31:03 UTC (rev 19894)
@@ -1,2 +1,2 @@
-SHA256 (ProjectCenter-0.6.1.tar.gz) = 3dc72d29bb40bdea9382266045b419ae3c7d117329ea9e0263cf4553e1794ed2
-SIZE (ProjectCenter-0.6.1.tar.gz) = 490466
+SHA256 (ProjectCenter-0.6.2.tar.gz) = c5104ae18511260f900c6de6cca0bcf39361da1866499102bf2a90e2f05d9473
+SIZE (ProjectCenter-0.6.2.tar.gz) = 492409

Added: trunk/devel/projectcenter/files/patch-Modules_Debuggers_ProjectCenter_PTYView.m
===================================================================
--- trunk/devel/projectcenter/files/patch-Modules_Debuggers_ProjectCenter_PTYView.m	                        (rev 0)
+++ trunk/devel/projectcenter/files/patch-Modules_Debuggers_ProjectCenter_PTYView.m	2015-08-21 00:31:03 UTC (rev 19894)
@@ -0,0 +1,22 @@
+--- Modules/Debuggers/ProjectCenter/PTYView.m.orig	2013-02-09 22:42:13.000000000 +0800
++++ Modules/Debuggers/ProjectCenter/PTYView.m	2015-01-22 22:51:16.258350353 +0800
+@@ -30,7 +30,7 @@
+ #include <fcntl.h>
+ #include <sys/types.h>
+ 
+-#if defined (__FreeBSD__)
++#if defined (__FreeBSD__) || defined (__DragonFly__)
+ #include <sys/ioctl.h>
+ #include <termios.h>
+ #include <libutil.h>
+@@ -61,7 +61,9 @@
+ #endif
+ 
+ 
+-#if !(defined (__NetBSD__)) && !(defined (__SOLARIS__)) && !(defined (__OpenBSD__)) && !(defined(__FreeBSD__))
++#if !(defined (__NetBSD__)) && !(defined (__SOLARIS__)) \
++ && !(defined (__OpenBSD__)) && !(defined(__FreeBSD__)) \
++ && !defined(__DragonFly__)
+ #  include <pty.h>
+ #endif
+ 


Property changes on: trunk/devel/projectcenter/files/patch-Modules_Debuggers_ProjectCenter_PTYView.m
___________________________________________________________________
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
Modified: trunk/devel/projectcenter/pkg-plist
===================================================================
--- trunk/devel/projectcenter/pkg-plist	2015-08-21 00:25:55 UTC (rev 19893)
+++ trunk/devel/projectcenter/pkg-plist	2015-08-21 00:31:03 UTC (rev 19894)
@@ -50,9 +50,6 @@
 GNUstep/System/Applications/ProjectCenter.app/Resources/EditorFSC.preferences/Resources/Info-gnustep.plist
 GNUstep/System/Applications/ProjectCenter.app/Resources/EditorFSC.preferences/Resources/Info.table
 GNUstep/System/Applications/ProjectCenter.app/Resources/EditorFSC.preferences/stamp.make
-GNUstep/System/Applications/ProjectCenter.app/Resources/English.lproj/FindPanel.gorm/data.classes
-GNUstep/System/Applications/ProjectCenter.app/Resources/English.lproj/FindPanel.gorm/data.info
-GNUstep/System/Applications/ProjectCenter.app/Resources/English.lproj/FindPanel.gorm/objects.gorm
 GNUstep/System/Applications/ProjectCenter.app/Resources/English.lproj/Info.gorm/Info.tiff
 GNUstep/System/Applications/ProjectCenter.app/Resources/English.lproj/Info.gorm/data.classes
 GNUstep/System/Applications/ProjectCenter.app/Resources/English.lproj/Info.gorm/data.info
@@ -122,6 +119,9 @@
 GNUstep/System/Applications/ProjectCenter.app/Resources/ProjectCenter.editor/Resources/FileMH.tiff
 GNUstep/System/Applications/ProjectCenter.app/Resources/ProjectCenter.editor/Resources/Info-gnustep.plist
 GNUstep/System/Applications/ProjectCenter.app/Resources/ProjectCenter.editor/Resources/Info.table
+GNUstep/System/Applications/ProjectCenter.app/Resources/ProjectCenter.editor/Resources/LineJumper.gorm/data.classes
+GNUstep/System/Applications/ProjectCenter.app/Resources/ProjectCenter.editor/Resources/LineJumper.gorm/data.info
+GNUstep/System/Applications/ProjectCenter.app/Resources/ProjectCenter.editor/Resources/LineJumper.gorm/objects.gorm
 GNUstep/System/Applications/ProjectCenter.app/Resources/ProjectCenter.editor/Resources/ObjC.syntax
 GNUstep/System/Applications/ProjectCenter.app/Resources/ProjectCenter.editor/Resources/Plist.syntax
 GNUstep/System/Applications/ProjectCenter.app/Resources/ProjectCenter.editor/stamp.make
@@ -190,6 +190,7 @@
 GNUstep/System/Library/Frameworks/ProjectCenter.framework/ProjectCenter
 GNUstep/System/Library/Frameworks/ProjectCenter.framework/Resources
 GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%/Headers/PCAddFilesPanel.h
+GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%/Headers/PCAuxiliaryWindow.h
 GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%/Headers/PCBundleManager.h
 GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%/Headers/PCDefines.h
 GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%/Headers/PCEditorManager.h
@@ -282,72 +283,3 @@
 GNUstep/System/Library/Libraries/libProjectCenter.so.%%MAJORVERSION%%
 GNUstep/System/Library/Libraries/libProjectCenter.so.%%FRAMEVERSION%%
 GNUstep/System/Tools/ProjectCenter
- at dirrm GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%/Resources/English.lproj/SaveModified.gorm
- at dirrm GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%/Resources/English.lproj/ProjectWindow.gorm
- at dirrm GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%/Resources/English.lproj/ProjectLanguages.gorm
- at dirrm GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%/Resources/English.lproj/ProjectInspector.gorm
- at dirrm GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%/Resources/English.lproj/ProjectDescription.gorm
- at dirrm GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%/Resources/English.lproj/ProjectAttributes.gorm
- at dirrm GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%/Resources/English.lproj/NewSubproject.gorm
- at dirrm GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%/Resources/English.lproj/NewFile.gorm
- at dirrm GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%/Resources/English.lproj/LogPanel.gorm
- at dirrm GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%/Resources/English.lproj/FileAttributes.gorm
- at dirrm GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%/Resources/English.lproj/BuilderPanel.gorm
- at dirrm GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%/Resources/English.lproj/BuilderOptions.gorm
- at dirrm GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%/Resources/English.lproj/Builder.gorm
- at dirrm GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%/Resources/English.lproj/BuildAttributes.gorm
- at dirrm GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%/Resources/English.lproj
- at dirrm GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%/Resources
- at dirrm GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%/Headers/Protocols
- at dirrm GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%/Headers
- at dirrm GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions/%%FRAMEVERSION%%
- at dirrm GNUstep/System/Library/Frameworks/ProjectCenter.framework/Versions
- at dirrm GNUstep/System/Library/Frameworks/ProjectCenter.framework
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Tool.project/Resources/Inspector.gorm
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Tool.project/Resources
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Tool.project
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Saving.preferences/Resources/SavingPrefs.gorm
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Saving.preferences/Resources
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Saving.preferences
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/ResourceSet.project/Resources/Inspector.gorm
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/ResourceSet.project/Resources
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/ResourceSet.project
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/ProjectCenter.parser/Resources
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/ProjectCenter.parser
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/ProjectCenter.editor/Resources
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/ProjectCenter.editor
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/ProjectCenter.debugger/Resources/PCDebugger.gorm
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/ProjectCenter.debugger/Resources
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/ProjectCenter.debugger
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Misc.preferences/Resources/MiscPrefs.gorm
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Misc.preferences/Resources
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Misc.preferences
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Library.project/Resources/Inspector.gorm
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Library.project/Resources
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Library.project
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Framework.project/Resources/Inspector.gorm
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Framework.project/Resources
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Framework.project
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/English.lproj/ProjectCenter.gorm
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/English.lproj/Preferences.gorm
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/English.lproj/Info.gorm
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/English.lproj/FindPanel.gorm
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/English.lproj
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/EditorFSC.preferences/Resources/EditorFSCPrefs.gorm
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/EditorFSC.preferences/Resources
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/EditorFSC.preferences
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Bundle.project/Resources/Inspector.gorm
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Bundle.project/Resources
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Bundle.project
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Build.preferences/Resources/BuildPrefs.gorm
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Build.preferences/Resources
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Build.preferences
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Application.project/Resources/Main.gorm
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Application.project/Resources/Inspector.gorm
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Application.project/Resources
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Application.project
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Aggregate.project/Resources/Inspector.gorm
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Aggregate.project/Resources
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources/Aggregate.project
- at dirrm GNUstep/System/Applications/ProjectCenter.app/Resources
- at dirrm GNUstep/System/Applications/ProjectCenter.app



More information about the Midnightbsd-cvs mailing list