Difference between revisions of "Documentation/Building Guide AOO/Step by step"

From Apache OpenOffice Wiki
< Documentation‎ | Building Guide AOORedirect page
Jump to: navigation, search
(Windows 7)
(Substitute contents with redirect to the section of the building guide)
 
(216 intermediate revisions by 23 users not shown)
Line 1: Line 1:
{{DISPLAYTITLE:Step by step building guides for different platforms}}
+
#REDIRECT [[Documentation/Building Guide AOO#Step-by-Step Building Guide for Different Platforms]]
 
+
__TOC__
+
 
+
This page is intended as a collection of simple step-by-step recipes to build Apache OpenOffice from source code.  A more thorough explanation of what the individual steps do and why they are necessary can be found in the [[Documentation/Building_Guide_AOO|building guide]].
+
 
+
=Ubuntu 12.04=
+
 
+
*Setup VirtualBox with Ubuntu 12.04 64 bit on Windows7 64bit host.  A native installation is of course fine, too.
+
*Let updater update ca. 380 packages. Restart.
+
*Get the source.  You can start with the source release or by checking out from SVN:
+
{| class="prettytable"
+
|-
+
! Source release
+
! SVN
+
|- valign="top"
+
| Build from source release if you want to build OpenOffice once but don't want to do any development.
+
| Build from SVN if you want to development work with OpenOffice.
+
|- valign="top"
+
|
+
* Download AOO 3.4.1 source tarball from
+
http://people.apache.org/~jsc/developer-snapshots/r1372282/src/aoo-3.4.1-incubating-src.tar.bz2
+
 
+
* Optional: Download signature from
+
http://people.apache.org/~jsc/developer-snapshots/r1372282/src/aoo-3.4.1-incubating-src.tar.bz2.asc
+
 
+
and verify the source tarball with
+
gpg --verify aoo-3.4.1-incubating-src.tar.bz2.asc \
+
              aoo-3.4.1-incubating-src.tar.bz2
+
Note that you have to have the keys already imported to your key chain.
+
The keys can be found on the download page:
+
 
+
http://www.apache.org/dist/incubator/ooo/KEYS
+
 
+
* Unpack source:
+
  cd /tmp
+
  tar -xjf ~/Downloads/aoo-3.4.1-incubating-src.tar.bz2
+
  cd aoo-3.4.1/main
+
|
+
* Start with creating a parent directory for the source code.  Don't use <code>/tmp</code> because that is deleted on every boot:
+
  sudo mkdir /source
+
  sudo chown <your-user-name> /source
+
  cd /source
+
* Install subversion and checkout the source:
+
  sudo apt-get install subversion
+
  svn co https://svn.apache.org/repos/asf/openoffice/trunk aoo-trunk
+
  cd aoo-trunk/main
+
|}
+
 
+
* Install requirements (this will also install packages that are not listed):
+
  sudo apt-get install g++ gcc bison flex libarchive-zip-perl libcups2-dev \
+
      libpam0g-dev gperf libfreetype6-dev libxaw7-dev libfontconfig1-dev \
+
      libxrandr-dev patch libgconf2-dev libgnomevfs2-dev ant libgtk2.0-dev \
+
      junit junit4 libidl-dev liborbit2-dev openjdk-6-jdk libwww-perl \
+
      libxml-parser-perl autoconf libssl-dev
+
 
+
* Run autoconf to generate configure script:
+
  autoconf
+
 
+
* Configure (see the building guide section on [[Documentation/Building_Guide_AOO#Configuration_and_bootstrapping|configuration]] for further options):
+
  ./configure \
+
      --with-dmake-url=http://dmake.apache-extras.org.codespot.com/files/dmake-4.12.tar.bz2 \
+
      --with-epm-url=http://www.msweet.org/files/project2/epm-3.7-source.tar.gz \
+
      --disable-odk \
+
      --disable-binfilter
+
 
+
* Finish configuration and download missing tarballs and extensions:
+
  ./bootstrap
+
 
+
* Include the configured environment:
+
  source LinuxX86-64Env.Set.sh
+
 
+
* Build:
+
  cd instsetoo_native/
+
  build --all
+
This may take a while to complete.  Several hours are not uncommon.  To speed things up you may want to run 'build' like this
+
  build --all -P<n> -- -P<n>
+
to start a parallel build.  Replace <n> with the number of CPU cores.
+
 
+
* Install:
+
  sudo dpkg -i unxlngx6.pro/Apache_OpenOffice/deb/install/en-US/DEBS/*.deb
+
  sudo dpkg -i unxlngx6.pro/Apache_OpenOffice/deb/install/en-US/DEBS/desktop-integration/openoffice.org3.4-debian-menus_3.4-9593_all.deb
+
 
+
* Start Apache OpenOffice:
+
  /opt/openoffice.org3/program/soffice
+
 
+
=Windows 7=
+
 
+
Complete requirements found at [http://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO#General_Build_Requirements General Build Requirements] and [http://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Building_on_Windows Building on Windows].
+
This is a sample step-by-step guide - check the complete requirements and report on dev@openoffice.apache.org, if problems with this step-by-step guide occurs.
+
 
+
*Install cygwin
+
**Browse to http://cygwin.com.
+
**Click on the setup.exe link (most recent Cygwin DLL at the moment is 1.7.16-1) to download the installer and run it.
+
**Click through the questions.
+
**On the "Choose A Download Site" select a nearby download server.
+
**Expect a "Setup Alert" dialog box on the first cygwin install on the computer.
+
**Click OK to close it.
+
**On the page that allows you to select additional packages just select wget (enter wget in the Search box and select the wget enty in the Web/Default section.
+
**Click Next to finish package selection.
+
**Click Next to resolve dependencies.
+
**After installation is finished click the Finish button to close the dialog.
+
 
+
*Start cygwin bash in a terminal
+
::One way to do this is:
+
::*Press WindowsKey-R
+
::*Enter c:\cygwin\Cygwin.bat
+
::*Hit Return.
+
 
+
* Install Java.
+
::Choose between JDK 1.7 or OpenJDK.
+
 
+
* Install Ant
+
**Browse to http://ant.apache.org/bindownload.cgi
+
**Chose a mirror near you.
+
**Download the zip archive (currently that is apache-ant-1.8.4-bin.zip).
+
**Open downloaded archive in file explorer and unzip it to a location of your choice, eg <code>c:\</code>.  Note that <code>C:\Program Files (x86)</code> will not work due to problems of quoting the spaces and parentheses.
+
 
+
* Prepare to install missing cygwin packages by installing apt-cyg from googlecode.com<pre>cd to /cygdrive/c/temp</pre>(or any other temporary directory of your choice)<pre>wget http://apt-cyg.googlecode.com/svn/trunk/apt-cyg&#10;chmod +x apt-cyg&#10;mv apt-cyg /usr/local/bin/</pre>
+
* Use apt-cyg to install missing cygwin packages<pre>apt-cyg install perl zip unzip gperf autoconf rsync gcc4-g++ bison flex patch</pre><br />If you will use git, you need in addition the packages<pre>git git-svn</pre>
+
 
+
* Replace symlinked awk with copy of gawk.exe:<pre>rm /usr/bin/awk&#10;mv /usr/bin/gawk.exe /usr/bin/awk.exe</pre>Note that if the <code>rm</code> command fails then the <code>mv</code> is not necessary.
+
   
+
* Install Microsoft Windows SDK for Windows 7 and .NET Framework 3.5. SP1 (recommend by Microsoft)
+
** Browse to http://www.microsoft.com/en-us/download/details.aspx?id=3138.
+
** Download Setup.exe and run the web installer (note that it will be saved as Setup(1).exe to disambiguate from the previously downloaded cygwin installer.)  You can use the default values in the installation dialog.
+
** Alternatively download the iso image http://www.microsoft.com/en-us/download/details.aspx?id=18950. Burn it to a dvd or unzip it.
+
 
+
* Download MS Visual C++ 2008 SP1 Redistributable Package (x86)
+
** http://www.microsoft.com/en-us/download/details.aspx?id=26368 ( There have been security updates, which are not included in older versions.)
+
**Download files vcredist_x86.exe and vcrestist_x64.exe<br />  If you download the most actual version of Apache OpenOffice and unpack it, you will find the files vcredist_x86.exe and vcredist_x64.exe in folder redist. You can use them as well.
+
 
+
* Optional: Install DirectX SDK (for graphics hardware support in the slide show)
+
** Browse to http://www.microsoft.com/en-us/download/details.aspx?displaylang=en&id=6812
+
** Download and run DXSDK_Jun10.exe
+
 
+
* Optional: Install NSIS installer (for creating the EXE installer)
+
** Browse to http://nsis.sourceforge.net
+
** Download and run the installer.
+
 
+
* Get AOO source code. You can use the source release or check out from SVN. Build from source release if you want to build OpenOffice once but don't want to contribute patches. If you will contribute patches, you need to generate them against an actual version of trunk. In this case check out from SVN to be able to rebase before generating patches. You can work with subversion or with git-svn.
+
 
+
::; Source release :
+
::* Browse to http://www.openoffice.org/download/other.html#tested-sdk and locate the table row that starts with "Source code"
+
::* Download source code in an archive format of your choice (note that tar.bz2 is typically smaller than tar.gz and zip)
+
::* Optional: Verify the archive - following given link or instructions.
+
::* Unpack source (in cygwin-terminal). Use the file name exactly as downloaded.<pre>cd /tmp&#10;tar -xjf <download-location>/<downloaded-source-release.tar.bz2>&#10;cd <unpacked-source>/main&#10;</pre>
+
 
+
::; Checkout from SVN using subversion :
+
::*Get subversion (only first time)<pre>apt-cyg install subversion</pre>
+
::*Start with creating a parent directory for the source code: <pre>mkdir /cygdrive/c/source&#10;cd /cygdrive/c/source</pre>
+
::*Check out source from Apache SVN repository<pre>svn co https://svn.apache.org/repos/asf/openoffice/trunk aoo-trunk&#10;cd aoo-trunk/main</pre>
+
 
+
::; Checkout from SVN using git-svn :
+
::*Get git and git-svn (only first time)<pre>apt-cyg install git git-svn</pre>
+
::*Get the actual revision number from http://svn.apache.org/viewvc/OpenOffice/trunk/, e.g. 1234567
+
::*Create an empty directory and change to it, e.g.<pre>mkdir /cygdrive/c/source&#10;cd /cygdrive/c/source</pre>
+
::*Check out source from Apache SVN repository<pre>git svn clone --revision 1234567:HEAD https://svn.apache.org/repos/asf/openoffice/trunk&#10;cd trunk/main</pre>
+
 
+
* Remember the source path:<pre>SourceMain=`pwd`</pre> [Why? I have not used it. [[User:Regina|Regina]] ([[User talk:Regina|talk]]) 21:42, 24 February 2013 (UTC)]
+
 
+
* Optional: Get dbghelp.dll (for using the <code>--enable-dbgutil</code> configure option)
+
** This dll is part of MS Visual Studio.
+
** Copy file to <code>main/external/dbghelp</code>. Use Windows file manager or in cygwin terminal<pre>cp /cygdrive/c/Program\ Files\ \(x86\)/Microsoft\ Visual\ Studio\ 9.0/Common7/IDE/dbghelp.dll $SourceMain/external/dbghelp</pre>
+
 
+
* Copy vcredist_x86.exe and vcredist_x64.exe (see above) to main/external/vcredist.
+
** Use Windows file manager or in cygwin terminal<pre>cp <download-location>/vcredist_x86.exe $SourceMain/external/vcredist&#10;cp <download-location>/vcredist_x64.exe $SourceMain/external/vcredist</pre>
+
 
+
* Get GDI+ redistributable.
+
**Browse to http://www.microsoft.com/en-us/download/details.aspx?id=18909
+
**Download WindowsXP-KB975337-x86-ENU.exe
+
**Run WindowsXP-KB975337-x86-ENU.exe
+
**Enter a temporary path (eg c:\temp\gdiplus) in the dialog and click OK to extract files
+
**Copy gdiplus.dll to main/external<pre>cp /cygdrive/c/temp/gdiplus/asms/10/msft/windows/gdiplus/gdiplus.dll $SourceMain/external/gdiplus/</pre>
+
** Remove the temporary path<pre>cp -fr /cygdrive/c/temp/gdiplus</pre>
+
 
+
* Get msvcr100.dll:<pre>cp /c/Windows/System32/msvcr100.dll $SourceMain/external/msvcp100</pre>
+
 
+
* Make sure that you are in the main source directory:<pre>cd $SourceMain</pre>
+
 
+
* Run autoconf to create the configure script:<pre>autoconf</pre>
+
 
+
* Call configure
+
** Run configure (adapt paths as necessary)<pre>SDK_PATH="/cygdrive/c/Program Files/Microsoft SDKs/Windows/v7.0"&#10;./configure \&#10;    --with-frame-home="$SDK_PATH" \&#10;    --with-psdk-home="$SDK_PATH" \&#10;    --with-midl-path="$SDK_PATH/bin" \&#10;    --with-directx-home="C:/Program Files (x86)/Microsoft DirectX SDK (June 2010)" \&#10;  --with-ant-home="/cygdrive/c/apache-ant-1.8.4" \&#10;    --with-dmake-url="http://dmake.apache-extras.org.codespot.com/files/dmake-4.12.tar.bz2" \&#10;    --with-epm-url="http://www.msweet.org/files/project2/epm-3.7-source.tar.gz" \&#10;    --enable-pch \&#10;    --disable-atl \&#10;    --disable-activex \&#10;    --disable-binfilter \&#10;    --without-junit</pre>If you have not installed the optional DirectX SDK then remove the <code>--with-directx-home switch</code>
+
*Finish configuration and download missing external source tarballs and extensions<pre>./bootstrap</pre>
+
* Include the configured environment<pre>source winenv.set.sh</pre>
+
* Build<pre>cd instsetoo_native/&#10;build --all</pre>Depending on your computer this will take one or more hours to finish.
+
 
+
* Install<br/>There are three options:
+
*# Regular install with integration into Windows.<br/>This allows only one instance of AOO to be installed.
+
*#* Start setup.exe and click through dialog:<br/><pre>$SourceMain/instsetoo_native/wntmsci12.pro/OpenOffice/msi/install/en-US/setup.exe</pre>
+
*#* Apache OpenOffice can be started via the Windows start menu.
+
*# Install without integration into Windows.<br/>This allows several instance of AOO, based on the same version, to be installed side by side.<br/>It still requires Administrator permissions.
+
*#* Start <code>setup.exe</code> with option <code>-a</code>:<br/><pre>$SourceMain/instsetoo_native/wntmsci12.pro/OpenOffice/msi/install/en-US/setup.exe -a</pre>
+
*#* Enter an installation path into the dialog and click through the dialog to finish installation.
+
*#* Start AOO by running<br/><pre><installation-path>/program/soffice.exe</pre>
+
*# Unpack archive without installation.<br/>This does not require Administrator permissions
+
*#* Go to installation directory:<br/><pre>cd <installation-target></pre>
+
*#* Unzip archive:<br/><pre>unzip $SourceMain/instsetoo_native/wntmsci12.pro/OpenOffice/archive/install/en-US/Apache_OpenOffice_incubating_3.5.0_Win_x86_install-arc_en-US.zip</pre>
+
*#* Start AOO by running:<br/><pre>./Apache_OpenOffice_incubating_3.5.0_Win_x86_install-arc_en-US/program/soffice.exe</pre>
+
 
+
 
+
[[Category:Documentation]][[Category:Development]][[Category:Porting]]
+

Latest revision as of 21:21, 9 January 2021

Personal tools