~jazzva/mozilla-devscripts/lp452422

« back to all changes in this revision

Viewing changes to src/xpi-data-all.mk

  • Committer: Benjamin Drung
  • Date: 2009-10-06 17:02:53 UTC
  • Revision ID: bdrung@ubuntu.com-20091006170253-1sjub5km2uo3nvra
  - move data for the automagic detection of target application packages
    into separate xpi-data-*.mk files and set default MOZ_XPI_DISTRO when
    installing mozilla-devscripts
    - rename src/xpi.mk to src/xpi.mk.in and update it
    - add src/xpi-data-all.mk
    - add src/xpi-data-common.mk
    - add src/xpi-data-Debian.mk
    - add src/xpi-data-Ubuntu.mk
    - update debian/control
    - update src/Makefile

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- mode: makefile; coding: utf-8 -*-
 
2
 
 
3
# Copyright (c) 2009 Canonical Ltd.
 
4
# Author(s): Benjamin Drung <bdrung@ubuntu.com>
 
5
#
 
6
# This program is free software; you can redistribute it and/or
 
7
# modify it under the terms of the GNU General Public License as
 
8
# published by the Free Software Foundation; either version 2, or (at
 
9
# your option) any later version.
 
10
#
 
11
# This program is distributed in the hope that it will be useful, but
 
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
# General Public License for more details.
 
15
#
 
16
# You should have received a copy of the GNU General Public License along
 
17
# with this program; if not, write to the Free Software Foundation, Inc.,
 
18
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
19
 
 
20
_xpi_makefile_path ?= /usr/share/mozilla-devscripts
 
21
 
 
22
ifndef _xpi_data_all
 
23
_xpi_data_all = 1
 
24
 
 
25
abrowser-3.0_sol := 3.0a8
 
26
abrowser-3.0_eol := 3.0.*
 
27
abrowser-3.6_sol := 3.6a1pre
 
28
abrowser-3.6_eol := 3.6.*
 
29
abrowser-3.7_sol := 3.7a1pre
 
30
abrowser-3.7_eol := 3.7.*
 
31
firefox-3.6_sol := 3.6a1pre
 
32
firefox-3.6_eol := 3.6.*
 
33
firefox-3.7_sol := 3.7a1pre
 
34
firefox-3.7_eol := 3.7.*
 
35
 
 
36
thunderbird-3.0_sol := 3.0a1pre
 
37
thunderbird-3.0_eol := 3.0.*
 
38
 
 
39
xulrunner-1.9.2_sol := 1.9.2a1pre
 
40
xulrunner-1.9.2_eol := 1.9.2.*
 
41
xulrunner-1.9.3_sol := 1.9.3a1pre
 
42
xulrunner-1.9.3_eol := 1.9.3.*
 
43
 
 
44
packages_{ec8030f7-c20a-464f-9b0e-13a3a9e97384} += firefox-3.7 abrowser-3.7 firefox-3.6 abrowser-3.6 abrowser-3.0
 
45
packages_{3550f703-e582-4d05-9a08-453d09bdfdc6} += thunderbird-3.0
 
46
packages_toolkit@mozilla.org += xulrunner-1.9.3 xulrunner-1.9.2
 
47
 
 
48
include $(_xpi_makefile_path)/xpi-data-Debian.mk
 
49
include $(_xpi_makefile_path)/xpi-data-Ubuntu.mk
 
50
 
 
51
endif