~ubuntu-branches/ubuntu/trusty/enigmail/trusty-updates

« back to all changes in this revision

Viewing changes to build/unix/vms/install.com

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2011-06-07 14:35:53 UTC
  • mfrom: (0.12.1 upstream)
  • Revision ID: package-import@ubuntu.com-20110607143553-fbgqhhvh8g8h6j1y
Tags: 2:1.2~a2~cvs20110606t2200-0ubuntu1
* Update to latest trunk snapshot for Thunderbird beta compat

* Remove build/pgo/profileserver.py from debian/clean. The new build
  system has a target depending on this
  - update debian/clean
* Drop debian/patches/autoconf.diff, just generate this at build time
* Refresh debian/patches/build_system_dont_link_libxul.diff
* libipc seems to be renamed to libipc-pipe. Fix genxpi and chrome.manifest
  to fix this 
  - add debian/patches/ipc-pipe_rename.diff
  - update debian/patches/series
* The makefiles in extensions/enigmail/ipc have an incorrect DEPTH
  attribute. Fix this so that they can find the rest of the build system
  - add debian/patches/makefile_depth.diff
  - update debian/patches/series
* Drop debian/patches/makefile-in-empty-xpcom-fix.diff - fixed in the
  current version
* Don't register a class ID multiple times, as this breaks enigmail entirely
  - add debian/patches/dont_register_cids_multiple_times.diff
  - update debian/patches/series
* Look for the Thunderbird 5 SDK
  - update debian/rules
  - update debian/control
* Run autoconf2.13 at build time
  - update debian/rules
  - update debian/control
* Add useless mesa-common-dev build-dep, just to satisfy the build system.
  We should just patch this out entirely really, but that's for another upload
  - update debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
$! Command file to install/deinstall Mozilla image.
2
 
$! This command file must exist in the root Mozilla directory (where the main
3
 
$! images and shareables reside).
4
 
$!
5
 
$! P1 = INSTALL command to use.
6
 
$!      Default is "ADD /OPEN /HEADER_RESIDENT /SHARE"
7
 
$!      To remove previously installed images pass REMOVE as P1.
8
 
$!
9
 
$ saved_dir = f$environment("default")
10
 
$!
11
 
$ if p1 .eqs. "" then p1 = "add /open /head /share"
12
 
$ me = f$envir("procedure")
13
 
$ here = f$parse(me,,,"device") + f$parse(me,,,"directory")
14
 
$!
15
 
$! Main image(s).
16
 
$!
17
 
$ call do_many "''p1'" "''here'*-bin."
18
 
$!
19
 
$! All the .so files in the main directory.
20
 
$!
21
 
$ call do_many "''p1'" "''here'*.so"
22
 
$!
23
 
$! All the .so files in the components directory.
24
 
$!
25
 
$ set default 'here'
26
 
$ set default [.components]
27
 
$ me = f$envir("default")
28
 
$ here = f$parse(me,,,"device") + f$parse(me,,,"directory")
29
 
$ call do_many "''p1'" "''here'*.so"
30
 
$!
31
 
$ set default 'saved_dir'
32
 
$ exit
33
 
$!
34
 
$do_one:
35
 
$ subroutine
36
 
$ write sys$output "Doing ",p2
37
 
$ install 'p1' 'p2'
38
 
$ endsubroutine
39
 
$!
40
 
$!
41
 
$do_many:
42
 
$ subroutine
43
 
$loop:
44
 
$ f=f$search(p2)
45
 
$ if f .nes. ""
46
 
$ then
47
 
$   v=f$parse(f,,,"version")
48
 
$   f=f-v
49
 
$   call do_one "''p1'" "''f'"
50
 
$   goto loop
51
 
$ endif
52
 
$ endsubroutine