[Bsd-sharp-cvs] CVS commit to /cvsroot/bsd-sharp/FreeBSD-ports/devel/monodevelop/files by killfill

noreply at forge.novell.com noreply at forge.novell.com
Fri Feb 23 18:15:45 MST 2007


CVS commit to /cvsroot/bsd-sharp/FreeBSD-ports/devel/monodevelop/files by killfill

Modified Files:
	patch-SystemAssemblyService.cs 
Added Files:
	patch-WelcomePageContent.xml 
Log Message:
Presenting MonoDevelop 0.13 for FreeBSD

New Features:
	* SVN plugin
	* Intelligent task view
	* Code completition improvements
	* Native VS2005 support
	* Custom commands
	* Makefile support
	* Web reference support


===================================================================
RCS file: /cvsroot/bsd-sharp/FreeBSD-ports/devel/monodevelop/files/patch-WelcomePageContent.xml,v
rcsdiff: /cvsroot/bsd-sharp/FreeBSD-ports/devel/monodevelop/files/patch-WelcomePageContent.xml,v: Symbolic name `NONE' is undefined.
===================================================================
RCS file: /cvsroot/bsd-sharp/FreeBSD-ports/devel/monodevelop/files/patch-SystemAssemblyService.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- /cvsroot/bsd-sharp/FreeBSD-ports/devel/monodevelop/files/patch-SystemAssemblyService.cs	2006/04/14 21:17:51	1.1
+++ /cvsroot/bsd-sharp/FreeBSD-ports/devel/monodevelop/files/patch-SystemAssemblyService.cs	2007/02/24 01:15:45	1.2
@@ -1,20 +1,14 @@
---- Core/src/MonoDevelop.Core/MonoDevelop.Core/SystemAssemblyService.cs.orig	Fri Apr 14 16:55:21 2006
-+++ Core/src/MonoDevelop.Core/MonoDevelop.Core/SystemAssemblyService.cs	Fri Apr 14 16:56:41 2006
-@@ -119,13 +119,13 @@
- 				foreach (string pathdir in path_dirs.Split (':')) {
+--- Core/src/MonoDevelop.Core/MonoDevelop.Core/SystemAssemblyService.cs.orig	Fri Feb 23 21:20:47 2007
++++ Core/src/MonoDevelop.Core/MonoDevelop.Core/SystemAssemblyService.cs	Fri Feb 23 21:21:31 2007
+@@ -272,9 +272,9 @@
+ 				foreach (string pathdir in path_dirs.Split (Path.PathSeparator)) {
  					if (pathdir == null)
  						continue;
 -					if (File.Exists (pathdir + Path.DirectorySeparatorChar + "pkg-config")) {
--						libpath = pathdir + Path.DirectorySeparatorChar + "../lib/pkgconfig/";
--						break;
-+					if (Directory.Exists (pathdir + Path.DirectorySeparatorChar + "../lib/pkgconfig")) {
-+						libpath += pathdir + Path.DirectorySeparatorChar + "../lib/pkgconfig/:";
-+						//break;
++					if (Directory.Exists (pathdir + Path.DirectorySeparatorChar + "../libdata/pkgconfig")) {
+ 						libpath = Path.Combine(pathdir,"..");
+-						libpath = Path.Combine(libpath,"lib");
++						libpath = Path.Combine(libpath,"libdata");
+ 						libpath = Path.Combine(libpath,"pkgconfig");
+ 						break;
  					}
- 				}
- 			}
--			search_dirs += ":" + libpath;
-+			search_dirs += ":" + libpath.Substring(0,libpath.Length-1);
- 			if (search_dirs != null && search_dirs.Length > 0) {
- 				ArrayList scanDirs = new ArrayList ();
- 				foreach (string potentialDir in search_dirs.Split (':')) {


More information about the Bsd-sharp-cvs mailing list