~ubuntu-branches/ubuntu/quantal/enigmail/quantal-security

« back to all changes in this revision

Viewing changes to mailnews/extensions/enigmail/genxpi

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2013-09-13 16:02:15 UTC
  • mfrom: (0.12.16)
  • Revision ID: package-import@ubuntu.com-20130913160215-u3g8nmwa0pdwagwc
Tags: 2:1.5.2-0ubuntu0.12.10.1
* New upstream release v1.5.2 for Thunderbird 24

* Build enigmail using a stripped down Thunderbird 17 build system, as it's
  now quite difficult to build the way we were doing previously, with the
  latest Firefox build system
* Add debian/patches/no_libxpcom.patch - Don't link against libxpcom, as it
  doesn't exist anymore (but exists in the build system)
* Add debian/patches/use_sdk.patch - Use the SDK version of xpt.py and
  friends
* Drop debian/patches/ipc-pipe_rename.diff (not needed anymore)
* Drop debian/patches/makefile_depth.diff (not needed anymore)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
# **** BEGIN LICENSE BLOCK *****
 
4
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
 
5
#
 
6
# The contents of this file are subject to the Mozilla Public
 
7
# License Version 1.1 (the "MPL"); you may not use this file
 
8
# except in compliance with the MPL. You may obtain a copy of
 
9
# the MPL at http://www.mozilla.org/MPL/
 
10
#
 
11
# Software distributed under the MPL is distributed on an "AS
 
12
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 
13
# implied. See the MPL for the specific language governing
 
14
# rights and limitations under the MPL.
 
15
#
 
16
# The Original Code is Enigmail.
 
17
#
 
18
# The Initial Developer of the Original Code is Patrick Brunschwig.
 
19
# Portions created by Patrick Brunschwig <patrick@mozilla-enigmail.org> are
 
20
# Copyright (C) 2004 Patrick Brunschwig. All Rights Reserved.
 
21
#
 
22
# Contributor(s):
 
23
#
 
24
# Alternatively, the contents of this file may be used under the terms of
 
25
# either the GNU General Public License Version 2 or later (the "GPL"), or
 
26
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
27
# in which case the provisions of the GPL or the LGPL are applicable instead
 
28
# of those above. If you wish to allow use of your version of this file only
 
29
# under the terms of either the GPL or the LGPL, and not to allow others to
 
30
# use your version of this file under the terms of the MPL, indicate your
 
31
# decision by deleting the provisions above and replace them with the notice
 
32
# and other provisions required by the GPL or the LGPL. If you do not delete
 
33
# the provisions above, a recipient may use your version of this file under
 
34
# the terms of any one of the MPL, the GPL or the LGPL.
 
35
# ***** END LICENSE BLOCK *****
 
36
 
 
37
#
 
38
# This script generates the Enigmail XPI
 
39
#
 
40
 
 
41
echo "genxpi: Generating $1 in $6"
 
42
 
 
43
if [ $# -lt 9 ]; then
 
44
  echo "Wrong number of parameters"
 
45
  exit 1
 
46
fi
 
47
 
 
48
xpiFile=$1
 
49
xpiVersion="$2"
 
50
osArch=$3
 
51
xpcomAbi=$4
 
52
mozApp=$5
 
53
srcDir=$7
 
54
xpiModule=$8
 
55
dllSuffix=$9
 
56
libPrefix=${10}
 
57
cwd=`pwd`
 
58
cd "$6"
 
59
targetDir=`pwd`
 
60
cd "$cwd"
 
61
 
 
62
if [ "$xpcomAbi" = "" ] ; then
 
63
  xpcomAbi="unknown"
 
64
fi
 
65
platform=${osArch}_${xpcomAbi}
 
66
# Pepare install.rdf
 
67
sed 's/<!-- targetPlatform placeholder -->/<em:targetPlatform>'${platform}'<\/em:targetPlatform>/' < ${srcDir}/package/install.rdf > ${targetDir}/install.rdf
 
68
 
 
69
 
 
70
enigmimeDll=${libPrefix}enigmime${dllSuffix}
 
71
if [ ${platform} = OS2_x86-gcc3 ]; then
 
72
  # workaround for file name length limit on OS/2
 
73
  enigDllFile=platform/${platform}/components/${enigmimeDll}
 
74
else
 
75
  enigDllFile=platform/${platform}/components/${libPrefix}enigmime-${xpcomAbi}${dllSuffix}
 
76
fi
 
77
 
 
78
subprocessDll=${libPrefix}subprocess${dllSuffix}
 
79
spDllFile=platform/${platform}/lib/${libPrefix}subprocess-${xpcomAbi}${dllSuffix}
 
80
 
 
81
# Prepare chrome.manifest
 
82
cat  ${srcDir}/package/chrome.manifest | \
 
83
sed  's/##ENIGMIMEDLL-PLACEHOLDER##/binary-component platform\/'${platform}'\/components\/'`basename ${enigDllFile}`' ABI='${platform}'/' \
 
84
> ${targetDir}/chrome.manifest
 
85
 
 
86
# Prepare languages other than en-US
 
87
 
 
88
if [ -s ${srcDir}/lang/current-languages.txt ]; then
 
89
  localeJar=chrome/${xpiModule}.jar
 
90
 
 
91
  echo '' >> ${targetDir}/chrome.manifest
 
92
  echo '# Additional languages' >> ${targetDir}/chrome.manifest
 
93
 
 
94
  for lang in `cat ${srcDir}/lang/current-languages.txt`; do
 
95
    echo 'locale        enigmail    '$lang'       jar:chrome/enigmail.jar!/locale/'$lang'/' >> ${targetDir}/chrome.manifest
 
96
  done
 
97
 
 
98
else
 
99
  localeJar=""
 
100
fi
 
101
 
 
102
 
 
103
cd ${srcDir}/package
 
104
cd "$targetDir"
 
105
 
 
106
 
 
107
mkdir -p platform/${platform}/components
 
108
mkdir -p platform/${platform}/lib
 
109
mkdir -p wrappers
 
110
 
 
111
cp ${srcDir}/util/gpg-agent-wrapper.sh wrappers
 
112
 
 
113
cp $cwd/ipc/src/${subprocessDll} ${spDllFile}
 
114
cp components/${enigmimeDll} ${enigDllFile}
 
115
 
 
116
if [ -d chrome/enigmail ]; then
 
117
  echo "Fixing translations"
 
118
  cd chrome/enigmail
 
119
  for lang in `cat ${srcDir}/lang/current-languages.txt`; do
 
120
      ${srcDir}/util/fixlang.pl locale/en-US locale/$lang > /dev/null
 
121
  done
 
122
  echo "Creating ${xpiModule}.jar file"
 
123
  zip -rD ../${xpiModule}.jar * > /dev/null
 
124
  cd ../..
 
125
fi
 
126
 
 
127
echo "Creating ${xpiFile} file"
 
128
 
 
129
zip ${xpiFile} \
 
130
    components/${xpiModule}.xpt \
 
131
    components/${xpiModule}.js \
 
132
    components/enigprefs-service.js \
 
133
    components/enigMsgCompFields.js \
 
134
    components/mimeDecrypt.js \
 
135
    components/mimeEncrypt.js \
 
136
    defaults/preferences/enigmail.js \
 
137
    modules/enigmailCommon.jsm \
 
138
    modules/pipeConsole.jsm \
 
139
    modules/keyManagement.jsm \
 
140
    modules/mimeVerify.jsm \
 
141
    modules/commonFuncs.jsm \
 
142
    modules/subprocess.jsm \
 
143
    modules/subprocess_worker_win.js \
 
144
    modules/subprocess_worker_unix.js \
 
145
    wrappers/gpg-agent-wrapper.sh \
 
146
    chrome/${xpiModule}.jar \
 
147
    ${localeJar} \
 
148
    components/enigmime.xpt \
 
149
    ${enigDllFile} \
 
150
    ${spDllFile} \
 
151
    chrome.manifest \
 
152
    install.rdf
 
153
 
 
154
rm install.rdf chrome.manifest