mail-archives/monodevelop-patches-list/2004-March/000890.html

148 строки
7.2 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE> [Monodevelop-patches-list] r1283 - trunk/md-website/tutorials
</TITLE>
<LINK REL="Index" HREF="index.html" >
<LINK REL="made" HREF="mailto:monodevelop-patches-list%40lists.ximian.com?Subject=%5BMonodevelop-patches-list%5D%20r1283%20-%20trunk/md-website/tutorials&In-Reply-To=">
<META NAME="robots" CONTENT="index,nofollow">
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
<LINK REL="Previous" HREF="000889.html">
<LINK REL="Next" HREF="000891.html">
</HEAD>
<BODY BGCOLOR="#ffffff">
<H1>[Monodevelop-patches-list] r1283 - trunk/md-website/tutorials</H1>
<B>commit-watcher at mono-cvs.ximian.com</B>
<A HREF="mailto:monodevelop-patches-list%40lists.ximian.com?Subject=%5BMonodevelop-patches-list%5D%20r1283%20-%20trunk/md-website/tutorials&In-Reply-To="
TITLE="[Monodevelop-patches-list] r1283 - trunk/md-website/tutorials">commit-watcher at mono-cvs.ximian.com
</A><BR>
<I>Sun Mar 28 16:42:52 EST 2004</I>
<P><UL>
<LI>Previous message: <A HREF="000889.html">[Monodevelop-patches-list] r1282 - in trunk/md-website: . images/screenshots images/screenshots/thumbnails
</A></li>
<LI>Next message: <A HREF="000891.html">[Monodevelop-patches-list] r1284 - in trunk/MonoDevelop/src: AddIns/BackendBindings/CSharpBinding AddIns/BackendBindings/CSharpBinding/Parser Main/Base Main/Base/Services/ParserService
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#890">[ date ]</a>
<a href="thread.html#890">[ thread ]</a>
<a href="subject.html#890">[ subject ]</a>
<a href="author.html#890">[ author ]</a>
</LI>
</UL>
<HR>
<!--beginarticle-->
<PRE>Author: deboald
Date: 2004-03-28 16:42:52 -0500 (Sun, 28 Mar 2004)
New Revision: 1283
Modified:
trunk/md-website/tutorials/install.aspx
Log:
Corrected the how-to install file to account for new dependencies.
Modified: trunk/md-website/tutorials/install.aspx
===================================================================
--- trunk/md-website/tutorials/install.aspx 2004-03-28 20:00:47 UTC (rev 1282)
+++ trunk/md-website/tutorials/install.aspx 2004-03-28 21:42:52 UTC (rev 1283)
@@ -53,8 +53,8 @@
&lt;li&gt;FreeBSD: `mozilla-gtkmozembed'&lt;/li&gt;&lt;/ul&gt;
I have yet to find an official tarball for gtkmozembed, but I haven't looked very hard. If you know of one, please &lt;a href=&quot;mailto:<A HREF="http://lists.ximian.com/mailman/listinfo/monodevelop-patches-list">steve at citygroup.ca</A>&quot;&gt;let me know&lt;/a&gt;.
&lt;/p&gt;
+ &lt;br /&gt;
-
&lt;b&gt;4. &lt;a href=&quot;<A HREF="http://gtksourceview.sourceforge.net/&quot;">http://gtksourceview.sourceforge.net/&quot;</A>&gt;GtkSourceView 0.7&lt;/a&gt;&lt;/b&gt;
&lt;p&gt;GtkSourceView is a widget for displaying sourcecode (imagine that). Since MonoDevelop uses gtksourcevew-sharp, and this is only a wrapper, we must first install GtkSourceView. You may download a binary package for your distribution if it provides version 0.7 or higher. Otherwise, download the &lt;a href=&quot;<A HREF="http://ftp.acc.umu.se/pub/gnome/sources/gtksourceview/0.7/gtksourceview-0.7.0.tar.gz&quot;">http://ftp.acc.umu.se/pub/gnome/sources/gtksourceview/0.7/gtksourceview-0.7.0.tar.gz&quot;</A>&gt;official tarball (0.7)&lt;/a&gt;. Then install:&lt;/p&gt;
@@ -67,7 +67,7 @@
&lt;/pre&gt;
- &lt;b&gt;5. &lt;a href=&quot;<A HREF="http://www.go-mono.com/download.html&quot;">http://www.go-mono.com/download.html&quot;</A>&gt;Mono 0.30.1&lt;/a&gt;, gtk-sharp, gtksourceview-sharp&lt;/b&gt;
+ &lt;b&gt;5. &lt;a href=&quot;<A HREF="http://www.go-mono.com/download.html&quot;">http://www.go-mono.com/download.html&quot;</A>&gt;Mono 0.30.1&lt;/a&gt;, gtk-sharp, monodoc, gtksourceview-sharp, gtkmozembed-sharp, debugger&lt;/b&gt;
&lt;p&gt;Though you may use a pre-packaged copy of the runtime, we recommend compiling one yourself from CVS. gtk-sharp and gtksourceview-sharp &lt;b&gt;must&lt;/b&gt; be compiled from CVS.&lt;/p&gt;
@@ -77,7 +77,7 @@
&lt;pre class=&quot;code&quot;&gt;
export CVSROOT=:pserver:<A HREF="http://lists.ximian.com/mailman/listinfo/monodevelop-patches-list">anonymous at anoncvs.go-mono.com</A>:/mono
cvs login
-cvs -z3 co mcs mono gtk-sharp gtksourceview-sharp
+cvs -z3 co mcs mono gtk-sharp monodoc gtksourceview-sharp gtkmozembed-sharp debugger
&lt;/pre&gt;
&lt;/li&gt;
@@ -96,7 +96,7 @@
&lt;/pre&gt;
&lt;/li&gt;
- &lt;li&gt;You can then compile mono and gtk-sharp using the following:
+ &lt;li&gt;You can then compile all the modules using the following:
&lt;pre class=&quot;code&quot;&gt;
cd mono
@@ -108,10 +108,25 @@
make
make install
+cd ../monodoc
+./autogen.sh --prefix=/usr/local
+make
+make install
+
cd ../gtksourceview-sharp
./autogen.sh --prefix=/usr/local
make
make install
+
+cd ../gtkmozembed-sharp
+./autogen.sh --prefix=/usr/local
+make
+make install
+
+cd ../debugger
+./autogen.sh --prefix=/usr/local
+make
+make install
&lt;/pre&gt;
&lt;p&gt;If the above instructions do not properly compile mono, please refer to the mono documentation. Troubleshooting will be added to this document at a later date.&lt;/p&gt;
@@ -134,9 +149,9 @@
make run &amp;amp;
&lt;/pre&gt;
- &lt;p&gt;At this point, you have the choice of either `&lt;tt&gt;make install&lt;/tt&gt;' or (preferrably) '&lt;tt&gt;make run&lt;/tt&gt;'. Since there is a good chance you'll download a new copy of MonoDevelop tomorrow, we recommend using `&lt;tt&gt;make run&lt;/tt&gt;' for now. :)&lt;/p&gt;
+ &lt;p&gt;At this point, you have the choice of either `&lt;tt&gt;make install&lt;/tt&gt;' or (preferrably) '&lt;tt&gt;make run&lt;/tt&gt;'. Since there is a good chance you'll download a new copy of MonoDevelop tomorrow, we recommend using `&lt;tt&gt;make run&lt;/tt&gt;' for now. &lt;/p&gt;
-
+ &lt;p&gt;This document was written by Steve Deobald (steve [at] citygroup.ca) and is licensed under the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation. If this document contains errors or could be improved, please let me know.&lt;/p&gt;
&lt;br /&gt;&lt;br /&gt;
-
+
&lt;ccms:PageFooter runat=&quot;server&quot;/&gt;
</PRE>
<!--endarticle-->
<HR>
<P><UL>
<!--threads-->
<LI>Previous message: <A HREF="000889.html">[Monodevelop-patches-list] r1282 - in trunk/md-website: . images/screenshots images/screenshots/thumbnails
</A></li>
<LI>Next message: <A HREF="000891.html">[Monodevelop-patches-list] r1284 - in trunk/MonoDevelop/src: AddIns/BackendBindings/CSharpBinding AddIns/BackendBindings/CSharpBinding/Parser Main/Base Main/Base/Services/ParserService
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#890">[ date ]</a>
<a href="thread.html#890">[ thread ]</a>
<a href="subject.html#890">[ subject ]</a>
<a href="author.html#890">[ author ]</a>
</LI>
</UL>
<hr>
<a href="http://lists.ximian.com/mailman/listinfo/monodevelop-patches-list">More information about the Monodevelop-patches-list
mailing list</a><br>
</body></html>