From: Siddhesh P. <sid...@us...> - 2009-09-19 19:34:17
|
Update of /cvsroot/ayttm/ayttm-html In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv24405 Modified Files: Header.php Added Files: dev.php Log Message: * Updated git checkout and build instructions --- NEW FILE: dev.php --- <?php $TITLE = "Source Code Access"; include("Header.php"); ?> <div> <p>Ayttm now uses git for source code control. You can checkout and compile from git in order to "stay on the bleeding-edge" and to help test Ayttm.</p> <p><a href="http://ayttm.git.sourceforge.net/git/gitweb.cgi?p=ayttm/ayttm;a=summary">Browse the source code</a> online to find out what's new in the source code repository. Sometimes the git version will be less stable than the latest release, sometimes more. Here are the quick instructions to access it and build the source:</p> <pre> $ git clone git://ayttm.git.sourceforge.net/gitroot/ayttm/ayttm $ cd ayttm $ ./gen $ ./configure <i>(--help to see various parameters)</i> $ make $ su -c "make install" </pre> <p> <!--If you would like to help debugging and do not want to go through the hassles of CVS, you may test our <a href="nightlies.php">latest nightly tarball and RPMs</a -->. <br><br> If anything goes wrong, check that you have the required packages installed: <ul> <li>autoconf >= 2.53 <li>automake >= 1.6 <li>gtk2 and gtk2-devel >= 2.12.0 <li>glib and glib-devel (required by gtk anyway >= 2.0.0) <li>libltdl and libltdl-devel <li>gettext and gettext-devel (0.10.38 or greater) <li>esd or arts for the (optional) sounds <li>openssl and openssl-devel (for Yahoo, MSN, Jabber SSL) <li>maybe I forgot some ;-) </ul> Feedback and patches are welcome on the <a href="mls.php">mailing-list</a>. </div> <? include("Footer.php"); ?> Index: Header.php =================================================================== RCS file: /cvsroot/ayttm/ayttm-html/Header.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- Header.php 16 Sep 2009 06:25:49 -0000 1.2 +++ Header.php 19 Sep 2009 19:34:06 -0000 1.3 @@ -31,7 +31,7 @@ <a class="main" href=".<? printf($EXTRA_PATH);?>/screenshots.php">Screenshots</a> | <a class="main" href=".<? printf($EXTRA_PATH);?>/ayttm-manual">Manual</a> | <a class="main" href=".<? printf($EXTRA_PATH);?>/files.php">Download</a> | -<a class="main" href=".<? printf($EXTRA_PATH);?>/cvs.php">CVS</a> | +<a class="main" href=".<? printf($EXTRA_PATH);?>/dev.php">Develop</a> | <a class="main" href=".<? printf($EXTRA_PATH);?>/mls.php">Mailing-lists</a> | <a class="main" href=".<? printf($EXTRA_PATH);?>/faq.php">FAQ</a> | <a class="main" href=".<? printf($EXTRA_PATH);?>/links.php">Links</a> | |