You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ji...@apache.org on 2017/04/30 20:36:37 UTC

svn commit: r1793273 - in /openoffice/devtools/build-scripts/4.1.4: ./ unxmacos/ unxmacos/build_aooreleases.sh

Author: jim
Date: Sun Apr 30 20:36:37 2017
New Revision: 1793273

URL: http://svn.apache.org/viewvc?rev=1793273&view=rev
Log:
Start prep of 4.1.4 build-scripts if not covered in 4.1.3 or 4.1.2

Added:
    openoffice/devtools/build-scripts/4.1.4/
    openoffice/devtools/build-scripts/4.1.4/unxmacos/
    openoffice/devtools/build-scripts/4.1.4/unxmacos/build_aooreleases.sh   (with props)

Added: openoffice/devtools/build-scripts/4.1.4/unxmacos/build_aooreleases.sh
URL: http://svn.apache.org/viewvc/openoffice/devtools/build-scripts/4.1.4/unxmacos/build_aooreleases.sh?rev=1793273&view=auto
==============================================================================
--- openoffice/devtools/build-scripts/4.1.4/unxmacos/build_aooreleases.sh (added)
+++ openoffice/devtools/build-scripts/4.1.4/unxmacos/build_aooreleases.sh Sun Apr 30 20:36:37 2017
@@ -0,0 +1,121 @@
+#!/bin/sh
+### 4.1.2 Script: 
+### 4.1.2 Script: echo "### Configure"
+### 4.1.2 Script: ./configure \
+### 4.1.2 Script:              --with-build-version="$(date +"%Y-%m-%d %H:%M:%S (%a, %d %b %Y)")" \
+### 4.1.2 Script:              --enable-verbose \
+### 4.1.2 Script:              --enable-category-b \
+### 4.1.2 Script:              --enable-wiki-publisher \
+### 4.1.2 Script:              --enable-bundled-dictionaries \
+### 4.1.2 Script:              --without-stlport \
+### 4.1.2 Script:              --with-dmake-path=/Users/jsc/dev/tools/bin/dmake \
+### 4.1.2 Script:              --with-epm=/Users/jsc/dev/tools/bin/epm/epm \
+### 4.1.2 Script:              --with-openldap \
+### 4.1.2 Script:              --with-junit=/Users/jsc/dev/tools/junit/junit-4.11.jar \
+### 4.1.2 Script:              --with-packager-list=/Users/jsc/dev/svn/aoo-build-pack.lst
+### 4.1.2 Script:              --with-jdk-home=/Library/Java/JavaVirtualMachines/jdk1.7.0_67.jdk/Contents/Home \
+### 4.1.2 Script:              --with-ant-home=/Users/jsc/dev/tools/apache-ant-1.9.3/dist \
+### 4.1.2 Script:              --with-lang="kid ast bg ca ca-XR ca-XV cs da de el en-GB en-US es eu fi fr gd gl he hi hu it ja km ko lt nb nl pl pt pt-BR ru sk sl sr sv ta th tr vi zh-CN zh-TW"
+### 4.1.2 Script: 
+### 4.1.2 Script: 
+#
+# Build-script for AOO 4.1.x on OSX 10.11
+#
+# System Setup:
+#  XCode 7.3.1
+#
+# Local Changes:
+#   MacPorts:
+#     o apache-ant (1.9.9)
+#     o gnutar (1.29) (symlink gnutar to gtar)
+#     o perl5 (perl5.22)
+#     o p5-archive-*
+#     o p5-lwp-*
+#     o p5-xml-parser
+#
+#   Oracle JAVA 1.7 JDK
+#
+#   /usr/local:
+#     o dmake
+#         http://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2
+#         ./configure --prefix=/usr/local ; make install
+#     o epm
+#         http://www.msweet.org/files/project2/epm-4.3-source.tar.gz
+#         $ ./configure --prefix=/usr/local ; make install
+#
+#     o openssl (1.0.2j)
+#         https://www.openssl.org/source/openssl-1.0.2j.tar.gz
+#         $ export MACOSX_DEPLOYMENT_TARGET=10.7
+#         $ ./Configure darwin64-x86_64-cc no-shared --prefix=/usr/local --openssldir=/usr/local ; make install
+#
+#   Env:
+#     LIBRARY_PATH=/usr/local/lib
+#     C_INCLUDE_PATH=/usr/local/include
+#     CPLUS_INCLUDE_PATH=/usr/local/include
+#     MACOSX_DEPLOYMENT_TARGET=10.7
+#     PATH=/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:.
+#
+#   Notes:
+#     o openssl required for serf; we build non-shared so all
+#       linkings are to the static libs
+#
+#     o JDK 1.7 seems to work better; and it's always best to
+#       have just *one* version of te JDK installed.
+#
+
+if [ ! -d ../main -o ! -d sal ] ; then
+	echo "CHDIR into AOO's main/ directory first!"
+	exit 1
+fi
+
+if [ -z "$JAVA_HOME" ] ; then
+	JAVA_HOME=$(/usr/libexec/java_home -v 1.7)
+	export JAVA_HOME
+	echo "Setting JAVA_HOME to $JAVA_HOME..."
+fi
+
+if [ -z "$ANT_HOME" ] ; then
+	ANT_HOME=/usr/local/share/java/apache-ant
+	export ANT_HOME
+	echo "Setting ANT_HOME to $ANT_HOME..."
+fi
+
+if [ ! -e external/unowinreg/unowinreg.dll ] ; then
+	echo "Downloading unowinreg.dll..."
+	curl -o external/unowinreg/unowinreg.dll http://www.openoffice.org/tools/unowinreg_prebuild/680/unowinreg.dll
+fi
+
+LANGS="ast bg ca ca-XR ca-XV cs da de el en-GB en-US es eu fi fr gd gl he hi hu it ja kid km ko lt nb nl pl pt pt-BR ru sk sl sr sv ta th tr vi zh-CN zh-TW"
+
+if [ ! -e configure -o configure.in -nt configure ] ; then
+	echo "Running autoconf..."
+	autoconf || exit 1
+fi
+./configure   \
+	--with-build-version="$(date +"%Y-%m-%d %H:%M") - `uname -sm`" \
+	--with-vendor="Apache OpenOffice Community Build" \
+	--enable-verbose \
+	--with-openldap \
+	--enable-category-b \
+	--enable-bundled-dictionaries \
+	--enable-wiki-publisher \
+	--with-junit="/usr/local/share/java/junit.jar" \
+	--with-jdk-home="$JAVA_HOME" \
+	--with-ant-home="$ANT_HOME" \
+	--with-epm=/usr/local/bin/epm \
+	--with-dmake-path=/usr/local/bin/dmake \
+	--without-stlport \
+	--with-package-format="installed dmg" \
+	--disable-systray \
+	--with-alloc=system \
+	--with-lang="${LANGS}"
+
+./bootstrap || exit 1
+source ./MacOSXX64Env.Set.sh || exit 1
+cd instsetoo_native
+time perl "$SOLARENV/bin/build.pl" --all -P2 -- -P2 || exit 1
+cd util
+dmake ooolanguagepack || exit 1
+dmake sdkoo_en-US || exit 1
+
+date "+Build ended at %H:%M:%S"

Propchange: openoffice/devtools/build-scripts/4.1.4/unxmacos/build_aooreleases.sh
------------------------------------------------------------------------------
    svn:executable = *