~ubuntu-branches/ubuntu/oneiric/enigmail/oneiric-updates

« back to all changes in this revision

Viewing changes to config/tests/src-simple/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2010-04-10 01:42:24 UTC
  • Revision ID: james.westby@ubuntu.com-20100410014224-fbq9ui5x3b0h2t36
Tags: 2:1.0.1-0ubuntu1
* First releaase of enigmail 1.0.1 for tbird/icedove 3
  (LP: #527138)
* redo packaging from scratch 
  + add debian/make-orig target that uses xulrunner provided
    buildsystem + enigmail tarball to produce a proper orig.tar.gz
  + use debhelper 7 with mozilla-devscripts
  + use debian source format 3.0 (quilt)
  + patch enigmail to use frozen API only
    - add debian/patches/frozen_api.diff
  + patch build system to not link against -lxul - which isnt
    available for sdks produced by all-static apps like tbird
    - add debian/patches/build_system_dont_link_libxul.diff
  + add minimal build-depends to control

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# ***** BEGIN LICENSE BLOCK *****
 
3
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
 
4
#
 
5
# The contents of this file are subject to the Mozilla Public License Version
 
6
# 1.1 (the "License"); you may not use this file except in compliance with
 
7
# the License. You may obtain a copy of the License at
 
8
# http://www.mozilla.org/MPL/
 
9
#
 
10
# Software distributed under the License is distributed on an "AS IS" basis,
 
11
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
12
# for the specific language governing rights and limitations under the
 
13
# License.
 
14
#
 
15
# The Original Code is mozilla.org code.
 
16
#
 
17
# The Initial Developer of the Original Code is
 
18
#  Mozilla Foundation.
 
19
# Portions created by the Initial Developer are Copyright (C) 2008
 
20
# the Initial Developer. All Rights Reserved.
 
21
#
 
22
# Contributor(s):
 
23
#   Axel Hecht <axel@pike.org>
 
24
#
 
25
# Alternatively, the contents of this file may be used under the terms of
 
26
# either of the GNU General Public License Version 2 or later (the "GPL"),
 
27
# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
28
# in which case the provisions of the GPL or the LGPL are applicable instead
 
29
# of those above. If you wish to allow use of your version of this file only
 
30
# under the terms of either the GPL or the LGPL, and not to allow others to
 
31
# use your version of this file under the terms of the MPL, indicate your
 
32
# decision by deleting the provisions above and replace them with the notice
 
33
# and other provisions required by the GPL or the LGPL. If you do not delete
 
34
# the provisions above, a recipient may use your version of this file under
 
35
# the terms of any one of the MPL, the GPL or the LGPL.
 
36
#
 
37
# ***** END LICENSE BLOCK *****
 
38
 
 
39
DEPTH           = ../../..
 
40
topsrcdir       = @top_srcdir@
 
41
srcdir          = @srcdir@
 
42
VPATH           = @srcdir@
 
43
LOCALE_SRCDIR = $(srcdir)/l10n
 
44
 
 
45
include $(DEPTH)/config/autoconf.mk
 
46
 
 
47
include $(topsrcdir)/config/config.mk
 
48
 
 
49
XPI_NAME = test_jar_mn
 
50
 
 
51
DEFINES += \
 
52
        -DAB_CD=ab-X-stuff \
 
53
        $(NULL)
 
54
 
 
55
MY_MANIFEST = $(if $(USE_EXTENSION_MANIFEST), $(FINAL_TARGET)/chrome.manifest, $(FINAL_TARGET)/chrome/test.manifest)
 
56
REF_MANIFEST = $(if $(USE_EXTENSION_MANIFEST),chrome.manifest,test.manifest)
 
57
 
 
58
check-%::
 
59
        if test -d $(FINAL_TARGET); then rm -rf $(FINAL_TARGET); fi;
 
60
        $(MAKE) realchrome MOZ_CHROME_FILE_FORMAT=$*
 
61
        @echo "Comparing manifests..."
 
62
        @if ! sort $(MY_MANIFEST) | diff --text -U 0 $(srcdir)/../$(REF_MANIFEST).$* - ; then \
 
63
          echo "TEST-UNEXPECTED-FAIL | config/tests/$(REF_MANIFEST).$* | differing content in manifest!" ; \
 
64
          false; \
 
65
        fi
 
66
        @if [ "$*" = "jar" ]; then \
 
67
          $(UNZIP) -d $(FINAL_TARGET)/chrome/test $(FINAL_TARGET)/chrome/test.jar; \
 
68
        fi
 
69
        @echo "Comparing packages..."
 
70
        @if ! diff -ur $(srcdir)/../ref-simple $(FINAL_TARGET)/chrome/test ; then\
 
71
          echo "TEST-UNEXPECTED-FAIL | config/tests/ref-simple | different content in jar" ; \
 
72
          false; \
 
73
        fi
 
74
 
 
75
include $(topsrcdir)/config/rules.mk