source: main/trunk/greenstone3/build.properties.in@ 28259

Last change on this file since 28259 was 28259, checked in by ak19, 11 years ago

The PDFBox ext is now checked out into the gs2build/ext folder for GS3, which is consistent with its checkout location in GS2. Build.xml now has a target to get and extract the pdfbox ext tar.gz file if the checkout.pdfbox.ext property in build.properties, which is currently being introduced with this commit, is true, which it is by default in build.properties.in

File size: 5.0 KB
Line 
1#### properties file for Greenstone3 building using ANT. See the README for more
2#### information
3
4## Tomcat installation
5# Set this to the internet/intranet name of the machine that Tomcat is/will be
6# run on. localhost is fine for accessing the server from the local machine,
7# but not remotely
8tomcat.server=localhost
9# The port number that tomcat is/will be run on
10tomcat.port=8383
11# Tomcat's shutdown port - this may need to be changed if you are running two or more Tomcats
12tomcat.shutdown.port=8305
13# If tomcat is already running, enter the path to the base directory here
14tomcat.installed.path=
15# uncomment the following if you have moved the greenstone3 web directory to tomcats webapps dir
16#web.home=${tomcat.installed.path}/webapps/greenstone3
17
18## Collection building options
19# uncomment if you don't want to have collection building enabled
20#disable.collection.building=true
21#
22# uncomment (and edit) if you want to control where perl is found
23#perl.path=/usr/bin
24
25## Greenstone 3 server program options
26# does running the server automatically start up Tomcat and a browser
27server.auto.start=false
28# if set to true, won't try other ports if the specified port is not available
29server.keep.port=false
30# default servlet to start with
31server.default.servlet=/library
32
33##Browser setup
34browser.path=
35
36## Proxy setup - Greenstone installation will attempt to download extra packages. Set the proxy information here if you are behind a firewall.
37# The proxy server name
38proxy.host=
39# The proxy server port
40proxy.port=
41# A user name to use when talking to the proxy server (optional, will prompt if not entered here)
42proxy.user=
43# A password to use when talking to the proxy server (optional, will prompt if not entered here)
44proxy.password=
45
46## java compilation properties - for javac
47# Should compilation include the debug option?
48compile.debug=true
49# Should compilation include the deprecation option?
50compile.deprecation=true
51# Should compilation include the optimize option?
52compile.optimize=true
53
54# Properties that control cross-compiling
55compile.cross = false
56#cross.os = windows
57#cross.host = i686-w64-mingw32
58#cross.build = i686-pc-linux-gnu
59#cross.configure.extraargs =
60
61#cross.os = android
62#cross.host = arm-linux-androideabi
63#cross.build = i686-pc-linux-gnu
64#cross.configure.extraargs = gl_cv_header_working_stdint_h=yes
65
66
67# Control whether or not JNI bindings are used
68# e.g. MG, MG++ and GDBM and the like
69# Setting this false means these components are not available to the install
70# The expectation is that collections will be build from 100% Java components:
71# e.g Lucene and JDBM
72#
73# Ant 1.7.1 and before only test for *existence* so this needs to be commented
74# in or out to control whether jni is used or not
75with.jni=true
76
77## Controls whether or not we want GLI and GEMS to be checked out and compiled
78with.gli.and.gems=true
79
80## Control if compilation of gs2 is static or not. Used, for example, for distributions
81# Same issue as 'with.jni' for how this gets used in ant 1.7.1 and before
82#compile.static=true
83
84# A flag used by the release-kit to compile with gnomelib
85# (Previously this flag was called use.support.lib but got conflated with
86# the property checkout.gnomelib.ext below)
87#use.gnomelib.ext=true
88
89## Uncomment these lines if enabling compilation with the gnome-lib extension
90## and if compiling imagemagick
91## These extensions should be in the [gsdl3home]/gs2build/ext directory
92#checkout.gnomelib.ext=true
93#checkout.imagemagick.ext=true
94
95# By default, GS3 will check out the pdfbox extension from SVN
96checkout.pdfbox.ext=true
97
98# The following two properties are automatically overridden by gs3-server
99# when running off a read-only medium such as a DVD ...
100#
101# The 'writable' home default is to be the same location as gsdl3.home
102gsdl3home.isreadonly=false
103gsdl3.writablehome=${basedir}/web
104
105# ... alternative the above can be changed to
106#
107# gsdl3home.isreadonly=true
108# gsdl3.writablehome=${java.io.tmpdir}/greenstone/web
109#
110# ... or else provided on the command line, e.g.:
111# ant -Dgsdl3home.isreadonly=true gsdl3.writablehome=/tmp/greenstone/web start
112
113## windows c++ compilation
114# The following property does not help in build.xml.
115# The user needs to run Visual Studio's vcvars32.bat script from the
116# MSDOS prompt before compiling Greenstone3 (before "ant prepare install")
117#compile.windows.c++.setup=C:/Program Files/Microsoft Visual Studio/VC98/Bin/VCVARS32.BAT
118
119##Flax stuff##
120##uncomment if you want to install flax
121#install.flax=true
122flax.checkout.path=${flax.svn.root}/trunk/flaxmain
123
124##These need to be uncommented if using Fedora and Fedora GSearch with Greenstone's tomcat
125fedora.home=#${basedir}/ext/fedora3
126#fedora.maxpermsize=-XX:MaxPermSize=128m
127#fedora.password=pounamu
128#index.writelock.timeout=10000
129
130##Web services related constants##
131base.webservice.name=SOAPServer
132##listing and description of all the web services deployable on GS3##
133web.services.list=${base.webservice.name} for Greenstone3's core web services, QBR${base.webservice.name} for Query, Browse and Retrieve services
Note: See TracBrowser for help on using the repository browser.