]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/Makefile.am
Misc updates to installer rigging
[working/Evergreen.git] / Open-ILS / xul / staff_client / Makefile.am
1 #---------------------------------------------------------
2 # Makefile.am for xul/staff_client
3 ## Process this file with automake to generate Makefile.in
4 #---------------------------------------------------------
5
6 export STAFF_CLIENT_BUILD_ID = $$(/bin/cat build/BUILD_ID)
7 export STAFF_CLIENT_VERSION = $$(/bin/cat build/VERSION)
8 export STAFF_CLIENT_STAMP_ID = $$(/bin/cat build/STAMP_ID)
9
10 # from http://closure-compiler.googlecode.com/files/compiler-latest.zip  FIXME: Autotools this?
11 export CLOSURE_COMPILER_JAR = ~/closure-compiler/compiler.jar
12 XULRUNNER_VERSION=1.9.2.17
13 XULRUNNER_WINFILE=xulrunner-$(XULRUNNER_VERSION).en-US.win32.zip
14 XULRUNNER_LINUXFILE=xulrunner-$(XULRUNNER_VERSION).en-US.linux-i686.tar.bz2
15 XULRUNNER_URL=http://releases.mozilla.org/pub/mozilla.org/xulrunner/releases/$(XULRUNNER_VERSION)/runtimes/
16
17 OPENSRF_JSLIBS = "$(OPENSRF_LIBS)/javascript"
18 CHROME_LOCALES = $$(ls -1 chrome/locale)
19 SKIN_CSS = $$(ls -1 server/skin/*css | sed -e "s/.css/_custom.css/")
20 UPDATESDIR=@localstatedir@/updates
21
22 SVN=svn # Because some people might need to override this to 'git svn' or something
23
24 export NSIS_EXTRAOPTS
25 export NSIS_WICON=$$(if [ -f client/evergreen.ico ]; then echo '-DWICON'; fi)
26 export NSIS_AUTOUPDATE=$$([ -f client/defaults/preferences/autoupdate.js ] && echo '-DAUTOUPDATE')
27 export NSIS_DEV=$$([ -f client/defaults/preferences/developers.js ] && echo '-DDEVELOPER')
28 export NSIS_PERMACHINE=$$([ -f client/defaults/preferences/aa_per_machine.js ] && echo '-DPERMACHINE')
29 export NSIS_EXTRAS=$$([ -f extras.nsi ] && echo '-DEXTRAS')
30 # Url taken from http://nsis.sourceforge.net/AccessControl_plug-in
31 NSIS_ACCESSCONTROL=http://nsis.sourceforge.net/mediawiki/images/4/4a/AccessControl.zip
32
33 #------------------------------
34 # Build ILS XUL CLIENT/SERVER
35 #------------------------------
36
37 if BUILDILSCLIENT
38 OILSSERVER_INST = server-xul
39 endif
40
41 install-exec-local: $(OILSSERVER_INST)
42
43 # Helper target
44 # For when you want to add devbuild/permachine/autoupdate to an existing stamp id
45 rebuild: export STAFF_CLIENT_STAMP_ID=`cat PREV_STAMP_ID`
46 rebuild: export STAFF_CLIENT_VERSION=`cat PREV_VERSION`
47 rebuild: build
48
49 rigrelease:
50         @echo ' * Rigging for release branding'
51         @cp xulrunner-stub.release.exe xulrunner-stub.exe
52         @mkdir -p branding
53         @cp evergreen-icon.ico branding/evergreen.ico
54         @sed -i -e 's/^\s*;\?\s*!define UI_IMAGESET "release"/!define UI_IMAGESET "release"/' -e 's/^\s*;\?\s*!define UI_IMAGESET "beta"/;!define UI_IMAGESET "beta"/' windowssetup.nsi
55
56 rigbeta:
57         @echo ' * Rigging for beta branding'
58         @cp xulrunner-stub.beta.exe xulrunner-stub.exe
59         @mkdir -p branding
60         @cp evergreen-icon-beta.ico branding/evergreen.ico
61         @sed -i -e 's/^\s*;\?\s*!define UI_IMAGESET "release"/;!define UI_IMAGESET "release"/' -e 's/^\s*;\?\s*!define UI_IMAGESET "beta"/!define UI_IMAGESET "beta"/' windowssetup.nsi
62
63 devbuild: build
64         @echo ' * Copying in developer preferences'
65         @cp external/developers.js build/defaults/preferences/
66
67 permachine: build
68         @echo ' * Copying in default to machine level registration file'
69         @cp external/aa_per_machine.js build/defaults/preferences/
70
71 build: build_dir chrome2remote localize_manifest generated custom_skins open-ils stamp 
72         @echo To test the staff client:
73         @echo "  cd build/"
74         @echo "  xulrunner application.ini"
75
76 build_dir:
77         @echo ' * Creating and populating build/ '
78         @rm -rf build/
79         @mkdir -p build/
80         @cp -fR chrome build/
81         @cp -fR server build/
82         @cp -fR defaults build/
83         @cp -fR components build/
84         @cp application.ini build/
85         @if [ -f "install.mccoy.rdf" ]; then cp install.mccoy.rdf build/install.rdf; else cp install.rdf build/; fi
86         @cp -fR build/chrome/content/util/ build/server/
87         @cp -fR build/chrome/content/auth/ build/server/
88         @cp build/chrome/content/main/constants.js build/server/main/constants.js
89         @cp build/chrome/content/main/bindings.xml build/server/main/bindings.xml
90         @cp build/chrome/content/OpenILS/data.js build/server/OpenILS/data.js
91         @cp build/chrome/content/OpenILS/global_util.js build/server/OpenILS/global_util.js
92         @if [ -d branding ]; then cp -fR branding/* build/; fi
93         @external/prune_dirs.sh build/
94
95 # Convert chrome to remote for server localization
96 chrome2remote:
97         @for loc in $(CHROME_LOCALES); do \
98                 cp -fr chrome/locale/$$loc build/server/locale/. ; \
99         done;
100
101 # Update the manifest for our installed locales
102 localize_manifest:
103         @for loc in $(CHROME_LOCALES) ; do \
104                 if [ "$$loc" != "en-US" ]; then ( echo "locale open_ils_staff_client $$loc locale/$$loc/" >> build/chrome/chrome.manifest ) ; fi; \
105         done;
106
107 # On this page:
108 # https://developer.mozilla.org/en/xul_application_packaging
109 # The Documentation states:
110 # BUILD ID should be a unique build identifier, usually date based, and should be different for each released version
111 # VERSION should be in a format as described here:
112 # https://developer.mozilla.org/en/Toolkit_version_format
113
114 # The default "automatic" BUILD ID is acceptable.
115
116 # The version from the README usually conforms to that documentation, unless it is trunk.
117 # If we are in trunk, we probably have svn kicking around, ask it for the revision and build an appropriate version string.
118
119 # Neither really applies to the STAMP, though.
120 # The method below gives the same format STAMPS as previous instructions provided. If README has version 1.2.3.4 then STAMP_ID will become rel_1_2_3_4.
121 # Trunk VERSION will end up with 0trunk.release, trunk STAMP ID will be 0trunk_release.
122 stamp:
123         @/bin/date +"%Y%m%d.%H%M%S" > build/BUILD_ID
124         @if [ -n "${STAFF_CLIENT_BUILD_ID}" ]; then ( echo "Stamping with Build ID: ${STAFF_CLIENT_BUILD_ID}" ; echo ${STAFF_CLIENT_BUILD_ID} > build/BUILD_ID ) ; fi
125         @if [ -z "${STAFF_CLIENT_BUILD_ID}" ]; then ( echo "No Build ID for versioning" ; echo "none" > build/BUILD_ID ) ; fi
126         @sed -n -e '1 s/^.* \([^ ]*\)$$/\1/p' @top_srcdir@/README > build/VERSION
127         @if [ "${STAFF_CLIENT_VERSION}" == "trunk" ]; then echo "0trunk.$$(${SVN} info | sed -n -e 's/Last Changed Rev: \([0-9][0-9]*\)/\1/p')" > build/VERSION; fi 
128         @if [ -n "${STAFF_CLIENT_VERSION}" ]; then ( echo "Stamping with Version: ${STAFF_CLIENT_VERSION}" ; echo ${STAFF_CLIENT_VERSION} > build/VERSION ) ; fi
129         @if [ -z "${STAFF_CLIENT_VERSION}" ]; then ( echo "No Version" ; echo "none" > build/VERSION ) ; fi
130         @sed -e 's/\./_/g' -e 's/^\([0-9_]*\)$$/rel_&/' build/VERSION > build/STAMP_ID
131         @if [ -n "${STAFF_CLIENT_STAMP_ID}" ]; then ( echo "Stamping with Stamp ID: ${STAFF_CLIENT_STAMP_ID}" ; echo ${STAFF_CLIENT_STAMP_ID} > build/STAMP_ID ) ; fi
132         @if [ -z "${STAFF_CLIENT_STAMP_ID}" ]; then ( echo "No Stamp ID for versioning" ; echo "none" > build/STAMP_ID ) ; fi
133         @if [ -n "${STAFF_CLIENT_VERSION}" ]; then sed -i -e s/^Version=.\*/Version=${STAFF_CLIENT_VERSION}/ build/application.ini ; fi
134         @if [ -n "${STAFF_CLIENT_VERSION}" ]; then sed -i -e "s|<em:version>.*</em:version>|<em:version>${STAFF_CLIENT_VERSION}</em:version>|" build/install.rdf ; fi
135         @if [ -n "${STAFF_CLIENT_VERSION}" ]; then find build/ -name 'constants.js' -exec sed -i -e "s/\(CLIENT_VERSION *= '\)'/\1${STAFF_CLIENT_VERSION}'/" {} \; ; fi
136         @if [ -n "${STAFF_CLIENT_BUILD_ID}" ]; then sed -i -e s/^BuildID=.\*/BuildID=${STAFF_CLIENT_BUILD_ID}/ build/application.ini ; fi
137         @if [ -n "${STAFF_CLIENT_STAMP_ID}" ]; then find build/ -name '*.css' -exec sed -i -e s/xul\\\/server/xul\\\/${STAFF_CLIENT_STAMP_ID}\\\/server/g {} \; ; fi
138         @if [ -n "${STAFF_CLIENT_STAMP_ID}" ]; then find build/ -name '*.xul' -exec sed -i -e s/xul\\\/server/xul\\\/${STAFF_CLIENT_STAMP_ID}\\\/server/g {} \; ; fi
139         @if [ -n "${STAFF_CLIENT_STAMP_ID}" ]; then find build/ -name '*.html' -exec sed -i -e s/xul\\\/server/xul\\\/${STAFF_CLIENT_STAMP_ID}\\\/server/g {} \; ; fi
140         @if [ -n "${STAFF_CLIENT_STAMP_ID}" ]; then find build/ -name '*.xhtml' -exec sed -i -e s/xul\\\/server/xul\\\/${STAFF_CLIENT_STAMP_ID}\\\/server/g {} \; ; fi
141         @if [ -n "${STAFF_CLIENT_STAMP_ID}" ]; then find build/ -name '*.js' -exec sed -i -e s/xul\\\/server/xul\\\/${STAFF_CLIENT_STAMP_ID}\\\/server/g {} \; ; fi
142         @if [ -n "${STAFF_CLIENT_STAMP_ID}" ]; then find build/ -name '*.xml' -exec sed -i -e s/xul\\\/server/xul\\\/${STAFF_CLIENT_STAMP_ID}\\\/server/g {} \; ; fi
143         @if [ -n "${STAFF_CLIENT_STAMP_ID}" ]; then find build/ -name 'constants.js' -exec sed -i -e "s/\(CLIENT_STAMP *= '\)'/\1${STAFF_CLIENT_STAMP_ID}'/" {} \; ; fi
144         @if [ -z "${AUTOUPDATE_HOST}" ]; then rm -f build/defaults/preferences/autoupdate.js; fi
145         @if [ -z "${AUTOUPDATE_HOST}" ]; then sed -i -e /updateURL/d build/install.rdf; fi
146         @if [ -n "${AUTOUPDATE_HOST}" ]; then echo "Applying automatic update host ${AUTOUPDATE_HOST}"; fi
147         @if [ -n "${AUTOUPDATE_HOST}" ]; then sed -i -e "s|::HOSTNAME::|${AUTOUPDATE_HOST}|" -e "s|https\?://\(https\?://\)|\1|" build/defaults/preferences/autoupdate.js; fi
148         @if [ -n "${AUTOUPDATE_HOST}" ]; then sed -i -e "s|::HOSTNAME::|${AUTOUPDATE_HOST}|" -e "s|https\?://\(https\?://\)|\1|" build/install.rdf; fi
149         @cp build/STAMP_ID PREV_STAMP_ID
150         @cp build/VERSION PREV_VERSION
151
152 bell:
153         @perl -e 'print "Ringing bell..." . chr(7) . "\n";'
154
155 bundle:
156         @rm -f build/build.tar
157         @tar -c --exclude=server -f build.tar build/
158         @mv build.tar build/
159         @md5sum build/build.tar > build/build.tar.md5
160
161 generated:
162         @echo ' * Grabbing lang.dtd from the OPAC code '
163         @cp @top_srcdir@/Open-ILS/web/opac/locale/en-US/lang.dtd build/chrome/locale/en-US/
164
165 open-ils:
166         @echo ' * Grabbing more OPAC code and legacy code and custom code'
167         @cp @top_srcdir@/Open-ILS/web/opac/common/js/*.js build/chrome/content/OpenILS/util/
168         @cp $(OPENSRF_JSLIBS)/*.js build/chrome/content/OpenILS/util/
169         @external/prune_dirs.sh build/
170
171 custom_skins:
172         @for skin in $(SKIN_CSS); do \
173                 if [ ! -f "$$skin" ]; then ( touch build/"$$skin" ); fi \
174         done;
175
176 needwebdir:
177         @if [ -z "$(WEBDIR)" ]; then echo "!!!--------!!!"; echo "WEBDIR is not set. Must use top level Makefile or set WEBDIR to use this target."; echo "!!!--------!!!"; exit 1; fi
178
179 server-xul: needwebdir build
180         @echo $@
181         mkdir -p $(WEBDIR)
182         mkdir -p $(WEBDIR)/xul/
183         @echo "STAMP_ID = $(STAFF_CLIENT_STAMP_ID)"
184         @echo "Copying xul into $(WEBDIR)/xul/$(STAFF_CLIENT_STAMP_ID)"
185         mkdir -p "$(WEBDIR)/xul/$(STAFF_CLIENT_STAMP_ID)"
186         cp -R @top_srcdir@/Open-ILS/xul/staff_client/build/server "${WEBDIR}/xul/${STAFF_CLIENT_STAMP_ID}/"
187
188 compress-javascript: build
189         @echo "Size of build/ before compression = " `du -sh build/`
190         @echo " * Running Google's Closure Compiler against javascript.  Errors in build/compression.err"
191         @external/closure_compiler.sh $(CLOSURE_COMPILER_JAR) 2>> build/compression.err
192         @echo `find build/ -name '*.js~' -size 0 -print | wc -l` compression failures
193         @find build/ -name '*.js~' -size 0 -exec rm {} \; # remove the output files for those that did not compile
194         @echo `find build/ -name '*.js~' -print | wc -l` compression successes
195         @find build/ -name '*.js~' -exec perl -e '$$a = "{}"; chop $$a; `mv $$a~ $$a`;' \;
196         @echo "Size of build/ (minus compression.err) after compression = " `du -sh --exclude compression.err build/`
197
198 # Easy way to make all three kinds of clients
199
200 clients:
201         @make win-client
202         @make linux-client
203         @make generic-client
204
205 # By doing this we don't change the original build in the build folder
206 # Great for adding/changing things without a full rebuild
207
208 client_dir:
209         @if [ ! -f build/BUILD_ID ]; then echo 'ERROR! Current build not stamped!'; exit 1; fi
210         @echo 'Prepping Client Set'
211         @rm -rf client/
212         @mkdir -p client
213         @cp -fR build/* client/
214         @rm -rf client/server/
215         @rm -f client/build.tar*
216
217 # When building as a standalone client install.rdf is a bad thing
218 # as we haven't "sanitized" the client for extension use
219
220 client_app: client_dir
221         @echo 'Cleaning Extension Information'
222         @rm -f client/install.rdf
223
224 # If automatic updates are enabled, or the standalone_xul_app.js is present,
225 # the extension can break Firefox.
226 # Remove those, and we need a chrome.manifest
227
228 client_ext: client_dir
229         @echo 'Cleaning App Information'
230         @rm -f client/application.ini
231         @rm -f client/defaults/preferences/autoupdate.js
232         @rm -f client/defaults/preferences/autochannel.js
233         @rm -f client/defaults/preferences/standalone_xul_app.js
234         @echo 'Prepping chrome.manifest'
235         @perl -ne 'if(/open_ils_staff_client/) { s/ (?!chrome:\/\/open_ils_staff_client)([^ ]*)$$/ chrome\/\1/; print; }' client/chrome/chrome.manifest > client/chrome.manifest
236
237 # Would merge client_ext into this one, but this way an installer that doesn't
238 # use an xpi can be made for extension later, if desired
239
240 extension: client_ext
241         @echo ' * Packaging as an XPI'
242         @(cd client/ && zip -q -r ../evergreen.xpi * -x defaults/preferences/standalone_xul_app.js)
243         @md5sum evergreen.xpi > evergreen.xpi.md5
244
245 # Generic client, as an xpi, theoretically suitable for --install-app usage
246
247 generic-client: client_app
248         @echo 'Packing Generic Client via zip (as xpi file)'
249         @rm -f evergreen_staff_client.xpi
250         @cd client && zip -q -r ../evergreen_staff_client.xpi *
251         @echo done
252
253 # These two targets complete the layout defined on
254 # https://developer.mozilla.org/en/XULRunner/Deploying_XULRunner_1.8
255 # for their respective platforms in regards to XULRunner deployment
256
257 nsis_check:
258         @echo 'Checking for makensis'
259         @type -P makensis > /dev/null || ( echo 'MAKENSIS NOT FOUND: Cannot continue. Do you need to install the NSIS package?' && exit 1 )
260
261 unzip_check:
262         @echo 'Checking for unzip'
263         @type -P unzip > /dev/null || ( echo 'UNZIP NOT FOUND: Cannot continue.' && exit 1 )
264
265 branding_check:
266         @echo 'Checking for branding'
267         @[ -f xulrunner-stub.exe ] || echo 'xulrunner-stub.exe not found'
268         @[ -f build/evergreen.ico ] || echo 'build/evergreen.ico not found'
269         @if [ ! -f xulrunner-stub.exe -o ! -f build/evergreen.ico ]; then echo 'Branding incomplete. Did you forget to run "make rigbeta" or "make rigrelease"?'; echo 'You will need to "make rebuild" afterwards.'; exit 1; fi
270
271 # Note that I decided to use win/lin channels for ease of coding platform specific updates
272
273 win-xulrunner: unzip_check branding_check client_app
274         @echo 'Preparing Windows xulrunner'
275         @if [ ! -f ${XULRUNNER_WINFILE} ]; then wget ${XULRUNNER_URL}${XULRUNNER_WINFILE}; fi
276         @unzip -q ${XULRUNNER_WINFILE} -dclient
277         @if [ -f client/defaults/preferences/autoupdate.js ]; then echo 'pref("app.update.channel","win");' >> client/defaults/preferences/autochannel.js; fi;
278         @echo 'Preparing stub'
279         @if [ -f xulrunner-stub.exe ]; then cp xulrunner-stub.exe client/evergreen.exe; rm client/xulrunner/xulrunner-stub.exe; else mv client/xulrunner/xulrunner-stub.exe client/evergreen.exe; fi
280
281 linux-xulrunner: client_app
282         @echo 'Preparing Linux xulrunner'
283         @if [ ! -f ${XULRUNNER_LINUXFILE} ]; then wget ${XULRUNNER_URL}${XULRUNNER_LINUXFILE}; fi
284         @cd client; tar xjf ../${XULRUNNER_LINUXFILE}; cd ..
285         @if [ -f client/defaults/preferences/autoupdate.js ]; then echo 'pref("app.update.channel","lin");' >> client/defaults/preferences/autochannel.js; fi;
286         @echo 'Preparing stub'
287         @mv client/xulrunner/xulrunner-stub client/evergreen
288
289 # Build a windows installer.
290
291 win-client: nsis_check win-xulrunner
292         @if [ "${NSIS_AUTOUPDATE}${NSIS_PERMACHINE}" -a ! -d AccessControl ]; then echo 'Fetching AccessControl Plugin'; wget ${NSIS_ACCESSCONTROL} -O AccessControl.zip; unzip AccessControl.zip; fi
293         @echo 'Building installer'
294         @makensis -V2 -DPRODUCT_VERSION="${STAFF_CLIENT_VERSION}" ${NSIS_WICON} ${NSIS_AUTOUPDATE} ${NSIS_DEV} ${NSIS_PERMACHINE} ${NSIS_EXTRAS} ${NSIS_EXTRAOPTS} windowssetup.nsi
295         @echo 'Done'
296
297 # For linux, just build a tar.bz2 archive
298
299 linux-client: linux-xulrunner
300         @echo 'Packing as evergreen_staff_client.tar.bz2'
301         @rm -f evergreen_staff_client.tar.bz2
302         @cd client; tar cjf ../evergreen_staff_client.tar.bz2 *; cd ..
303         @echo 'Done'
304
305 # For running the updates script with the correct updates directory, optionally building clients as well
306
307 updates updates-client win-updates win-updates-client linux-updates linux-updates-client generic-updates generic-updates-client extension-updates:
308         @if [ ! -f build/BUILD_ID ]; then echo 'ERROR! Current build not stamped!'; exit 1; fi
309         @if [ ! -x external/make_updates.sh ]; then chmod u+x external/make_updates.sh; fi
310         @if [ ! -x external/make_updates.sh ]; then echo 'ERROR! external/make_updates.sh is not executable!'; exit 1; fi
311         @external/make_updates.sh ${UPDATESDIR} $@