[Monodevelop-patches-list] r1324 - trunk/md-website/tutorials

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Thu Apr 1 02:26:13 EST 2004


Author: tberman
Date: 2004-04-01 02:26:12 -0500 (Thu, 01 Apr 2004)
New Revision: 1324

Removed:
   trunk/md-website/tutorials/install.aspx
Modified:
   trunk/md-website/tutorials/package_install.aspx
Log:
delete old tutorial, small change to new one


Deleted: trunk/md-website/tutorials/install.aspx
===================================================================
--- trunk/md-website/tutorials/install.aspx	2004-04-01 07:23:45 UTC (rev 1323)
+++ trunk/md-website/tutorials/install.aspx	2004-04-01 07:26:12 UTC (rev 1324)
@@ -1,161 +0,0 @@
-<%@ Register TagPrefix="ccms" TagName="PageHeader" src="/include/header.ascx" %>
-<%@ Register TagPrefix="ccms" TagName="PageFooter" src="/include/footer.ascx" %>
-
-<ccms:PageHeader runat="server"/>      
-
-      <div class="title">"Hello World" Tutorial</div>
-
-      <p>This tutorial is intended to take you through all the necessary steps to get an updated copy of MonoDevelop, build it with all its dependencies, and write "Hello World" with it. This tutorial assumes you will install mono and MonoDevelop to a PREFIX of /usr/local. Substitute your own PREFIX where applicable if this is not the case.
-      </p>
-
-
-      <br /><br />
-
-      <div class="headlinebar">Getting Started</div>
-      <p>There are some packages which are required before building MonoDevelop. The following instructions guide you through installing them.
-      </p>
-
-      <b>1. <a href="http://oss.software.ibm.com/icu/">International Components for Unicode (ICU)</a></b><br />
-      <p>MonoDevelop requires ICU for internationalization. At the time of this writing, it cannot be assumed MonoDevelop will be stable without ICU. Since mono (step 5.) should be built with ICU support, we'll install it first.</p>
-      <ul>
-         <li>Download the <a href="ftp://www-126.ibm.com/pub/icu/2.8/icu-2.8.tgz">ICU 2.8 tarball</a>.</li>
-	 <li>Unpack and install the tarball by typing:
-	    
-<pre class="code">
-tar -xzf icu-2.8.tgz
-cd icu/source
-chmod +x runConfigureICU configure install-sh
-./runConfigureICU LinuxRedHat --disable-64bit-libs
-make
-make install
-</pre>
-	 </li>
-      </ul>
-      <p>If you have any difficulties installing ICU, refer to <a href="http://oss.software.ibm.com/cvs/icu/~checkout~/icu/readme.html?tag=release-2-8">icu/readme.html</a>.</p>
-
-      <b>2. <a href="http://www.gnome.org/projects/ORBit2/">ORBit2 2.8.3</a></b>
-
-      <p>Although newer versions of ORBit <i>may</i> work, they have been known to produce non-fatal crashes when MonoDevelop exits. If in doubt, <a href="http://ftp.gnome.org/pub/GNOME/sources/ORBit2/2.8/ORBit2-2.8.3.tar.gz">download ORBit 2.8.3</a>. Once you have ORBit2 downloaded, install it with:
-
-<pre class="code">
-tar -xzf ORBit2-2.8.3.tar.gz
-cd ORBit2-2.8.3
-./configure
-make
-make install
-</pre>
-
-      <br />
-      <b>3. <a href="http://www.mozilla.org/unix/gtk-embedding.html">gtkmozembed</a></b>
-      <p>gtkmozembed can generally be found as (or in) a package for your OS. For example:<br />
-          <ul><li>Debian: `mozilla-dev'</li>
-          <li>RedHat: `mozilla-devel'</li>
-	  <li>FreeBSD: `mozilla-gtkmozembed'</li></ul>
-      I have yet to find an official tarball for gtkmozembed, but I haven't looked very hard. If you know of one, please <a href="mailto:steve at citygroup.ca">let me know</a>.
-      </p>
-      <br /><br />
-
-      <b>4. <a href="http://gtksourceview.sourceforge.net/">GtkSourceView 0.7</a></b>
-      <p>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 <a href="http://ftp.acc.umu.se/pub/gnome/sources/gtksourceview/0.7/gtksourceview-0.7.0.tar.gz">official tarball (0.7)</a>. Then install:</p>
-
-<pre class="code">
-tar -xzf gtksourceview-0.7.0.tar.gz
-cd gtksourceview-0.7.0
-./configure --prefix=`pkg-config --variable=prefix ORBit-2.0`
-make
-make install
-</pre>
-
-      <br />
-      <b>5. <a href="http://www.go-mono.com/download.html">Mono 0.31</a>, gtk-sharp, monodoc, gtksourceview-sharp, gtkmozembed-sharp, debugger</b>
-      <br /><br />
-      <i>Note: For current svn snapshots, it is highly recommended you use a packaged copy of mono 0.31. CVS mono may be used, but we don't guarantee it will work. Compile cvs modules to a prefix of `<tt>/usr</tt>', since this is where RPMs, DEBs, and ebuilds will put your mono package.</i>
-
-      <p>Though you may use a pre-packaged copy of the runtime, gtk-sharp, gtksourceview-sharp, et al <b>must</b> be compiled from CVS.</p>
-
-      <ul>
-         <li>Download the latest cvs copies of mono, mcs, gtk-sharp, monodoc, gtksourceview-sharp, gtkmozembed-sharp, and debugger:
-
-<pre class="code">
-export CVSROOT=:pserver:anonymous at anoncvs.go-mono.com:/mono
-cvs login
-cvs -z3 co mcs mono gtk-sharp monodoc gtksourceview-sharp gtkmozembed-sharp debugger
-</pre>
-         </li>
-	
-         <li>Before compiling: Make sure you have`<tt>$PREFIX/lib</tt>' (usually `<tt>/usr/local/lib</tt>') in /etc/ld.so.conf. If you do not, add it with the following:
-
-<pre class="code">
-su
-echo "/usr/local/lib" &gt;&gt; /etc/ld.so.conf
-/sbin/ldconfig
-</pre>
-         
-	 <li>Similarly, check to make sure you have PKG_CONFIG_PATH set properly. It can be set with:
-
-<pre class="code">
-export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/
-</pre>
-	 </li>
-
-         <li>You can then compile all the modules using the following:
-
-<pre class="code">
-cd mono
-./autogen.sh --prefix=/usr/local
-make fullbuild
-
-cd ../gtk-sharp
-./autogen.sh --prefix=/usr/local
-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
-</pre>
-
-         <p>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.</p>
-         </li>
-      </ul>
-
-
-      <br /><br />
-
-
-      <div class="headlinebar">Installing MonoDevelop</div>      
-      <p>Next on the agenda is building MonoDevelop. Download the latest tarball from <a href="http://devservices.go-mono.com/MonoDevelop/">http://devservices.go-mono.com/MonoDevelop/</a>. Extract and build it using:</p>
-
-<pre class="code">      
-export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig"
-tar -xjf MonoDevelop-rXXXX.tar.bz2
-cd MonoDevelop-rXXXX
-./autogen.sh --prefix=/usr/local
-make
-make run &amp;
-</pre>
-
-      <p>At this point, you have the choice of either `<tt>make install</tt>' or (preferrably) '<tt>make run</tt>'. Since there is a good chance you'll download a new copy of MonoDevelop tomorrow, we recommend using `<tt>make run</tt>' for now. </p>
-
-      <hr />
-
-      <p>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.</p>
-      <br /><br />
-
-<ccms:PageFooter runat="server"/>

Modified: trunk/md-website/tutorials/package_install.aspx
===================================================================
--- trunk/md-website/tutorials/package_install.aspx	2004-04-01 07:23:45 UTC (rev 1323)
+++ trunk/md-website/tutorials/package_install.aspx	2004-04-01 07:26:12 UTC (rev 1324)
@@ -56,7 +56,7 @@
 <li><a href="http://sourceforge.net/project/showfiles.php?group_id=40240">gtk-sharp</a></li>
 <li><a href="http://www.go-mono.com/archive/monodoc-0.13.tar.gz">monodoc</a></li>
 <li><a href="http://www.go-mono.com/archive/gtksourceview-sharp-0.1.0.tar.gz">gtksourceview-sharp</a></li>
-<li><a href="http://www.go-mono.com/archive/gecko-sharp-0.1.tar.gz">gtkmozembed-sharp (gecko-sharp)</a></li>
+<li><a href="http://www.go-mono.com/archive/gecko-sharp-0.1.tar.gz">gecko-sharp</a></li>
 <li><a href="http://www.go-mono.com/archive/mono-debugger-0.6.tar.gz">debugger</a></li>
       </ul></p>
       <p>When building from the source provided above, always use a prefix of `<tt>/usr</tt>'.</p>




More information about the Monodevelop-patches-list mailing list