Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 58318 invoked from network); 26 Oct 2006 05:51:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 Oct 2006 05:51:07 -0000 Received: (qmail 59819 invoked by uid 500); 24 Oct 2006 17:51:19 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 59786 invoked by uid 500); 24 Oct 2006 17:51:19 -0000 Mailing-List: contact harmony-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-commits@incubator.apache.org Received: (qmail 59757 invoked by uid 99); 24 Oct 2006 17:51:19 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Oct 2006 10:51:19 -0700 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Oct 2006 10:51:06 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 694E21A9846; Tue, 24 Oct 2006 10:50:31 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r467404 - in /incubator/harmony/standard/site: docs/quickhelp_contributors.html xdocs/quickhelp_contributors.xml Date: Tue, 24 Oct 2006 17:50:31 -0000 To: harmony-commits@incubator.apache.org From: geirm@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061024175031.694E21A9846@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: geirm Date: Tue Oct 24 10:50:30 2006 New Revision: 467404 URL: http://svn.apache.org/viewvc?view=rev&rev=467404 Log: some comments/info on building for linux - garnered from experience setting up a new ubuntu box Modified: incubator/harmony/standard/site/docs/quickhelp_contributors.html incubator/harmony/standard/site/xdocs/quickhelp_contributors.xml Modified: incubator/harmony/standard/site/docs/quickhelp_contributors.html URL: http://svn.apache.org/viewvc/incubator/harmony/standard/site/docs/quickhelp_contributors.html?view=diff&rev=467404&r1=467403&r2=467404 ============================================================================== --- incubator/harmony/standard/site/docs/quickhelp_contributors.html (original) +++ incubator/harmony/standard/site/docs/quickhelp_contributors.html Tue Oct 24 10:50:30 2006 @@ -236,8 +236,29 @@

Linux

- Linux deps go here + The following is the sequence of things you need to do to setup a linux box + to build Harmony. The following instructions have been tested on Ubuntu 6, + so simply adapt for the package management system on your distro. There are + some repeats of the prereqs listed above

+
    +
  1. Install subversion (ex : $ sudo apt-get install subversion)
  2. +
  3. Install gcc (ex. : $ sudo apt-get install gcc)
  4. +
  5. Install g++ (ex. : $ sudo apt-get install g++)
  6. +
  7. Install make (ex. : $ sudo apt-get install make)
  8. +
  9. Install Java (from Sun or BEA or IBM). Version 1.5.0_9 preferred
  10. +
  11. Install binutils (ex : $ apt-get install binutils-dev )
  12. +
  13. Get JUnit (http://www.junit.org) and drop the junit-VERSION.jar in $ANT_HOME/lib
  14. +
  15. Install dependencies for Swing/AWT : +
      +
    • apt-get install liblcms1-dev
    • +
    • apt-get install libpng12-dev
    • +
    • apt-get install libjpeg62-dev
    • +
    • apt-get install libx11-dev
    • +
    • apt-get install libxft-dev
    • +
    +
  16. +
Windows

Windows deps go here Modified: incubator/harmony/standard/site/xdocs/quickhelp_contributors.xml URL: http://svn.apache.org/viewvc/incubator/harmony/standard/site/xdocs/quickhelp_contributors.xml?view=diff&rev=467404&r1=467403&r2=467404 ============================================================================== --- incubator/harmony/standard/site/xdocs/quickhelp_contributors.xml (original) +++ incubator/harmony/standard/site/xdocs/quickhelp_contributors.xml Tue Oct 24 10:50:30 2006 @@ -53,8 +53,30 @@ Linux

- Linux deps go here + The following is the sequence of things you need to do to setup a linux box + to build Harmony. The following instructions have been tested on Ubuntu 6, + so simply adapt for the package management system on your distro. There are + some repeats of the prereqs listed above

+ +
    +
  1. Install subversion (ex : $ sudo apt-get install subversion)
  2. +
  3. Install gcc (ex. : $ sudo apt-get install gcc)
  4. +
  5. Install g++ (ex. : $ sudo apt-get install g++)
  6. +
  7. Install make (ex. : $ sudo apt-get install make)
  8. +
  9. Install Java (from Sun or BEA or IBM). Version 1.5.0_9 preferred
  10. +
  11. Install binutils (ex : $ apt-get install binutils-dev )
  12. +
  13. Get JUnit (http://www.junit.org) and drop the junit-VERSION.jar in $ANT_HOME/lib
  14. +
  15. Install dependencies for Swing/AWT : +
      +
    • apt-get install liblcms1-dev
    • +
    • apt-get install libpng12-dev
    • +
    • apt-get install libjpeg62-dev
    • +
    • apt-get install libx11-dev
    • +
    • apt-get install libxft-dev
    • +
    +
  16. +
Windows