2007-01-08 12:23:18 +01:00
|
|
|
#
|
2011-02-25 14:44:41 +01:00
|
|
|
# spec file for package MozillaFirefox
|
2007-01-08 12:23:18 +01:00
|
|
|
#
|
2019-01-10 11:25:49 +01:00
|
|
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
2019-01-29 19:07:12 +01:00
|
|
|
# 2006-2019 Wolfgang Rosenauer
|
2007-01-08 12:23:18 +01:00
|
|
|
#
|
2008-08-22 00:53:39 +02:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2019-01-12 23:48:04 +01:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2007-01-08 12:23:18 +01:00
|
|
|
#
|
|
|
|
|
2012-03-01 10:09:12 +01:00
|
|
|
|
2014-10-19 21:45:31 +02:00
|
|
|
# changed with every update
|
2019-01-29 19:07:12 +01:00
|
|
|
%define major 65
|
2019-02-13 09:14:35 +01:00
|
|
|
%define mainver %major.0.1
|
|
|
|
%define orig_version 65.0.1
|
2018-06-25 22:56:47 +02:00
|
|
|
%define orig_suffix %{nil}
|
2017-09-05 12:10:37 +02:00
|
|
|
%define update_channel release
|
2018-06-25 22:56:47 +02:00
|
|
|
%define branding 1
|
2019-02-13 09:14:35 +01:00
|
|
|
%define releasedate 20190211233335
|
2018-06-25 22:56:47 +02:00
|
|
|
%define source_prefix firefox-%{orig_version}
|
2008-02-15 01:45:38 +01:00
|
|
|
|
2019-01-12 23:48:04 +01:00
|
|
|
# always build with GCC as SUSE Security Team requires that
|
2018-12-13 13:15:35 +01:00
|
|
|
%define clang_build 0
|
2018-12-12 12:35:28 +01:00
|
|
|
|
2019-01-07 20:59:56 +01:00
|
|
|
# PIE, full relro
|
2016-05-20 13:04:12 +02:00
|
|
|
%define build_hardened 1
|
|
|
|
|
2017-09-05 12:10:37 +02:00
|
|
|
# Firefox only supports i686
|
|
|
|
%ifarch %ix86
|
|
|
|
ExclusiveArch: i586 i686
|
|
|
|
BuildArch: i686
|
|
|
|
%{expand:%%global optflags %(echo "%optflags"|sed -e s/i586/i686/) -march=i686 -mtune=generic}
|
2017-03-20 17:07:00 +01:00
|
|
|
%endif
|
2017-03-07 09:35:10 +01:00
|
|
|
|
2014-10-19 21:45:31 +02:00
|
|
|
# general build definitions
|
2015-01-14 19:32:16 +01:00
|
|
|
%define progname firefox
|
|
|
|
%define pkgname MozillaFirefox
|
|
|
|
%define appname Firefox
|
|
|
|
%define progdir %{_prefix}/%_lib/%{progname}
|
|
|
|
%define gnome_dir %{_prefix}
|
|
|
|
%define desktop_file_name %{progname}
|
2014-10-19 21:40:39 +02:00
|
|
|
%define firefox_appid \{ec8030f7-c20a-464f-9b0e-13a3a9e97384\}
|
2018-02-09 23:45:30 +01:00
|
|
|
%define __provides_exclude ^lib.*\\.so.*$
|
|
|
|
%define __requires_exclude ^(libmoz.*|liblgpllibs.*|libxul.*)$
|
2014-10-19 21:40:39 +02:00
|
|
|
%define localize 1
|
2016-11-15 19:06:29 +01:00
|
|
|
%ifarch %ix86 x86_64
|
2014-10-19 21:40:39 +02:00
|
|
|
%define crashreporter 1
|
2016-11-15 19:06:29 +01:00
|
|
|
%else
|
|
|
|
%define crashreporter 0
|
2014-10-19 21:40:39 +02:00
|
|
|
%endif
|
2013-04-02 21:00:31 +02:00
|
|
|
|
2015-01-14 19:32:16 +01:00
|
|
|
Name: %{pkgname}
|
2011-12-18 14:10:54 +01:00
|
|
|
BuildRequires: Mesa-devel
|
2017-09-28 10:27:23 +02:00
|
|
|
BuildRequires: alsa-devel
|
2011-12-18 14:10:54 +01:00
|
|
|
BuildRequires: autoconf213
|
|
|
|
BuildRequires: dbus-1-glib-devel
|
|
|
|
BuildRequires: fdupes
|
2018-05-26 23:36:30 +02:00
|
|
|
BuildRequires: memory-constraints
|
2017-09-05 12:10:37 +02:00
|
|
|
%if 0%{?suse_version} <= 1320
|
2018-05-02 09:26:13 +02:00
|
|
|
BuildRequires: gcc7-c++
|
2017-09-05 12:10:37 +02:00
|
|
|
%else
|
2011-12-18 14:10:54 +01:00
|
|
|
BuildRequires: gcc-c++
|
2017-09-05 12:10:37 +02:00
|
|
|
%endif
|
2019-01-29 19:07:12 +01:00
|
|
|
BuildRequires: cargo >= 1.30
|
2015-12-29 21:30:21 +01:00
|
|
|
BuildRequires: libXcomposite-devel
|
2011-12-18 14:10:54 +01:00
|
|
|
BuildRequires: libcurl-devel
|
|
|
|
BuildRequires: libidl-devel
|
2015-01-14 19:32:16 +01:00
|
|
|
BuildRequires: libiw-devel
|
2011-12-18 14:10:54 +01:00
|
|
|
BuildRequires: libnotify-devel
|
2015-01-14 19:32:16 +01:00
|
|
|
BuildRequires: libproxy-devel
|
2014-04-27 18:09:32 +02:00
|
|
|
BuildRequires: makeinfo
|
2018-10-29 16:21:53 +01:00
|
|
|
BuildRequires: mozilla-nspr-devel >= 4.20
|
2019-01-29 19:07:12 +01:00
|
|
|
BuildRequires: mozilla-nss-devel >= 3.41
|
2019-03-07 09:01:24 +01:00
|
|
|
BuildRequires: nodejs >= 8.11
|
2014-07-21 11:32:46 +02:00
|
|
|
BuildRequires: python-devel
|
2017-12-11 09:32:40 +01:00
|
|
|
BuildRequires: python2-xml
|
2018-06-25 22:56:47 +02:00
|
|
|
BuildRequires: python3 >= 3.5
|
2019-01-29 19:07:12 +01:00
|
|
|
BuildRequires: rust >= 1.30
|
|
|
|
BuildRequires: rust-cbindgen >= 0.6.7
|
2011-12-18 14:10:54 +01:00
|
|
|
BuildRequires: startup-notification-devel
|
|
|
|
BuildRequires: unzip
|
|
|
|
BuildRequires: update-desktop-files
|
2012-03-01 10:09:12 +01:00
|
|
|
BuildRequires: xorg-x11-libXt-devel
|
2011-12-18 14:10:54 +01:00
|
|
|
BuildRequires: yasm
|
|
|
|
BuildRequires: zip
|
2018-06-25 22:56:47 +02:00
|
|
|
%if 0%{?suse_version} < 1550
|
2017-10-01 23:08:36 +02:00
|
|
|
BuildRequires: pkgconfig(gconf-2.0)
|
2018-06-25 22:56:47 +02:00
|
|
|
%endif
|
2017-10-01 23:08:36 +02:00
|
|
|
BuildRequires: pkgconfig(gdk-x11-2.0)
|
|
|
|
BuildRequires: pkgconfig(glib-2.0) >= 2.22
|
2016-04-12 23:13:00 +02:00
|
|
|
BuildRequires: pkgconfig(gobject-2.0)
|
2017-10-01 23:08:36 +02:00
|
|
|
BuildRequires: pkgconfig(gtk+-2.0) >= 2.18.0
|
2016-04-12 23:13:00 +02:00
|
|
|
BuildRequires: pkgconfig(gtk+-3.0) >= 3.4.0
|
2017-10-01 23:08:36 +02:00
|
|
|
BuildRequires: pkgconfig(gtk+-unix-print-2.0)
|
2016-04-12 23:13:00 +02:00
|
|
|
BuildRequires: pkgconfig(gtk+-unix-print-3.0)
|
2017-09-05 12:10:37 +02:00
|
|
|
BuildRequires: pkgconfig(libffi)
|
|
|
|
BuildRequires: pkgconfig(libpulse)
|
2017-10-30 07:56:57 +01:00
|
|
|
%if 0%{?suse_version} > 1320
|
|
|
|
BuildRequires: llvm-clang-devel >= 3.9.0
|
2017-11-15 00:17:59 +01:00
|
|
|
%else
|
|
|
|
# this covers the workaround to compile on Leap 42 in OBS
|
|
|
|
BuildRequires: clang4-devel
|
2017-10-30 07:56:57 +01:00
|
|
|
%endif
|
- update to Firefox 47.0 (boo#983549)
* Enable VP9 video codec for users with fast machines
* Embedded YouTube videos now play with HTML5 video if Flash is
not installed
* View and search open tabs from your smartphone or another
computer in a sidebar
* Allow no-cache on back/forward navigations for https resources
security fixes:
* MFSA 2016-49/CVE-2016-2815/CVE-2016-2818
(boo#983638)
(bmo#1241896, bmo#1242798, bmo#1243466, bmo#1245743,
bmo#1264300, bmo#1271037, bmo#1234147, bmo#1256493,
bmo#1256739, bmo#1256968, bmo#1261230, bmo#1261752,
bmo#1263384, bmo#1264575, bmo#1265577, bmo#1267130,
bmo#1269729, bmo#1273202, bmo#1273701)
Miscellaneous memory safety hazards (rv:47.0 / rv:45.2)
* MFSA 2016-50/CVE-2016-2819 (boo#983655) (bmo#1270381)
Buffer overflow parsing HTML5 fragments
* MFSA 2016-51/CVE-2016-2821 (bsc#983653) (bmo#1271460)
Use-after-free deleting tables from a contenteditable document
* MFSA 2016-52/CVE-2016-2822 (boo#983652) (bmo#1273129)
Addressbar spoofing though the SELECT element
* MFSA 2016-53/CVE-2016-2824 (boo#983651) (bmo#1248580)
Out-of-bounds write with WebGL shader
* MFSA 2016-54/CVE-2016-2825 (boo#983649) (bmo#1193093)
Partial same-origin-policy through setting location.host
through data URI
* MFSA 2016-56/CVE-2016-2828 (boo#983646) (bmo#1223810)
Use-after-free when textures are used in WebGL operations
after recycle pool destruction
OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=518
2016-06-08 14:26:29 +02:00
|
|
|
# libavcodec is required for H.264 support but the
|
|
|
|
# openSUSE version is currently not able to play H.264
|
|
|
|
# therefore the Packman version is required
|
|
|
|
# minimum version of libavcodec is 53
|
2016-06-08 19:47:55 +02:00
|
|
|
Recommends: libavcodec-full >= 0.10.16
|
2012-02-01 14:37:15 +01:00
|
|
|
Version: %{mainver}
|
2011-12-18 14:10:54 +01:00
|
|
|
Release: 0
|
2015-01-14 19:32:16 +01:00
|
|
|
%if "%{name}" == "MozillaFirefox"
|
2011-01-28 18:09:26 +01:00
|
|
|
Provides: firefox = %{mainver}
|
2012-03-01 10:09:12 +01:00
|
|
|
Provides: firefox = %{version}-%{release}
|
2015-01-14 19:32:16 +01:00
|
|
|
%endif
|
2012-03-01 10:09:12 +01:00
|
|
|
Provides: web_browser
|
2015-10-16 12:49:41 +02:00
|
|
|
Provides: appdata()
|
|
|
|
Provides: appdata(firefox.appdata.xml)
|
2011-06-01 08:05:09 +02:00
|
|
|
# this is needed to match this package with the kde4 helper package without the main package
|
|
|
|
# having a hard requirement on the kde4 package
|
|
|
|
%define kde_helper_version 6
|
|
|
|
Provides: mozilla-kde4-version = %{kde_helper_version}
|
2015-01-14 19:32:16 +01:00
|
|
|
Summary: Mozilla %{appname} Web Browser
|
2012-07-16 10:13:51 +02:00
|
|
|
License: MPL-2.0
|
2007-01-08 12:23:18 +01:00
|
|
|
Group: Productivity/Networking/Web/Browsers
|
2011-12-18 14:10:54 +01:00
|
|
|
Url: http://www.mozilla.org/
|
2018-06-25 22:56:47 +02:00
|
|
|
Source: http://ftp.mozilla.org/pub/firefox/releases/%{version}/source/firefox-%{orig_version}%{orig_suffix}.source.tar.xz
|
2007-01-08 12:23:18 +01:00
|
|
|
Source1: MozillaFirefox.desktop
|
2010-11-30 15:35:52 +01:00
|
|
|
Source2: MozillaFirefox-rpmlintrc
|
2007-01-08 12:23:18 +01:00
|
|
|
Source3: mozilla.sh.in
|
2011-06-15 17:00:40 +02:00
|
|
|
Source5: source-stamp.txt
|
2009-09-17 00:40:05 +02:00
|
|
|
Source6: kde.js
|
2018-06-25 22:56:47 +02:00
|
|
|
Source7: l10n-%{orig_version}%{orig_suffix}.tar.xz
|
2008-03-26 16:01:54 +01:00
|
|
|
Source8: firefox-mimeinfo.xml
|
2012-10-09 13:14:08 +02:00
|
|
|
Source9: firefox.js
|
2014-02-03 16:34:42 +01:00
|
|
|
Source10: compare-locales.tar.xz
|
2010-11-30 15:35:52 +01:00
|
|
|
Source11: firefox.1
|
2011-01-28 18:09:26 +01:00
|
|
|
Source12: mozilla-get-app-id
|
2014-10-25 10:51:04 +02:00
|
|
|
Source13: spellcheck.js
|
2011-06-01 08:05:09 +02:00
|
|
|
Source14: create-tar.sh
|
2014-10-13 20:00:43 +02:00
|
|
|
Source15: firefox-appdata.xml
|
2015-06-01 10:32:35 +02:00
|
|
|
Source16: MozillaFirefox.changes
|
2017-09-05 12:10:37 +02:00
|
|
|
# Set up API keys, see http://www.chromium.org/developers/how-tos/api-keys
|
|
|
|
# Note: these are for the openSUSE Firefox builds ONLY. For your own distribution,
|
|
|
|
# please get your own set of keys.
|
2017-04-28 23:32:26 +02:00
|
|
|
Source18: mozilla-api-key
|
2017-09-05 12:10:37 +02:00
|
|
|
Source19: google-api-key
|
2018-06-25 22:56:47 +02:00
|
|
|
Source20: http://ftp.mozilla.org/pub/firefox/releases/%{version}/source/firefox-%{orig_version}%{orig_suffix}.source.tar.xz.asc
|
2018-05-09 11:46:09 +02:00
|
|
|
Source21: mozilla.keyring
|
2011-06-01 08:05:09 +02:00
|
|
|
# Gecko/Toolkit
|
2015-11-03 16:49:03 +01:00
|
|
|
Patch1: mozilla-nongnome-proxies.patch
|
2017-11-15 00:17:59 +01:00
|
|
|
Patch2: mozilla-kde.patch
|
|
|
|
Patch3: mozilla-ntlm-full-path.patch
|
|
|
|
Patch4: mozilla-openaes-decl.patch
|
|
|
|
Patch7: mozilla-aarch64-startup-crash.patch
|
2018-03-13 20:46:06 +01:00
|
|
|
Patch8: mozilla-bmo256180.patch
|
2018-10-29 16:21:53 +01:00
|
|
|
Patch9: mozilla-bmo1463035.patch
|
2018-12-12 12:35:28 +01:00
|
|
|
Patch10: mozilla-cubeb-noreturn.patch
|
2011-06-01 08:05:09 +02:00
|
|
|
# Firefox/browser
|
2014-04-13 16:47:41 +02:00
|
|
|
Patch101: firefox-kde.patch
|
2018-03-13 20:46:06 +01:00
|
|
|
Patch102: firefox-branded-icons.patch
|
2007-01-08 12:23:18 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2010-01-08 01:32:43 +01:00
|
|
|
Requires(post): coreutils shared-mime-info desktop-file-utils
|
|
|
|
Requires(postun): shared-mime-info desktop-file-utils
|
2015-01-14 19:32:16 +01:00
|
|
|
%if %branding
|
2017-03-07 09:35:10 +01:00
|
|
|
Requires: %{name}-branding > 44.0
|
2015-01-14 19:32:16 +01:00
|
|
|
%endif
|
2017-12-11 09:32:40 +01:00
|
|
|
Requires: mozilla-nspr >= %(rpm -q --queryformat '%%{VERSION}' mozilla-nspr)
|
|
|
|
Requires: mozilla-nss >= %(rpm -q --queryformat '%%{VERSION}' mozilla-nss)
|
2012-04-20 21:18:58 +02:00
|
|
|
Recommends: libcanberra0
|
2014-03-18 20:44:32 +01:00
|
|
|
Recommends: libpulse0
|
2015-01-14 19:32:16 +01:00
|
|
|
# addon leads to startup crash (bnc#908892)
|
|
|
|
Obsoletes: tracker-miner-firefox < 0.15
|
2013-01-07 21:49:28 +01:00
|
|
|
# libproxy's mozjs pacrunner crashes FF (bnc#759123)
|
2014-10-19 21:40:39 +02:00
|
|
|
%if 0%{?suse_version} < 1220
|
2013-01-07 21:49:28 +01:00
|
|
|
Obsoletes: libproxy1-pacrunner-mozjs <= 0.4.7
|
|
|
|
%endif
|
2017-09-05 12:10:37 +02:00
|
|
|
##BuildArch: i686 x86_64 aarch64 ppc64le
|
2007-01-08 12:23:18 +01:00
|
|
|
|
|
|
|
%description
|
2008-10-06 17:34:24 +02:00
|
|
|
Mozilla Firefox is a standalone web browser, designed for standards
|
|
|
|
compliance and performance. Its functionality can be enhanced via a
|
|
|
|
plethora of extensions.
|
2007-01-08 12:23:18 +01:00
|
|
|
|
2011-01-28 18:09:26 +01:00
|
|
|
%package devel
|
2015-01-14 19:32:16 +01:00
|
|
|
Summary: Devel package for %{appname}
|
2011-01-28 18:09:26 +01:00
|
|
|
Group: Development/Tools/Other
|
|
|
|
Provides: firefox-devel = %{version}-%{release}
|
|
|
|
Requires: %{name} = %{version}
|
|
|
|
Requires: perl(Archive::Zip)
|
2012-03-01 10:09:12 +01:00
|
|
|
Requires: perl(XML::Simple)
|
2007-01-08 12:23:18 +01:00
|
|
|
|
2011-01-28 18:09:26 +01:00
|
|
|
%description devel
|
2015-01-14 19:32:16 +01:00
|
|
|
Development files for %{appname} to make packaging of addons easier.
|
2011-01-25 09:00:34 +01:00
|
|
|
|
2011-01-28 18:09:26 +01:00
|
|
|
%if %localize
|
2009-08-10 23:34:51 +02:00
|
|
|
%package translations-common
|
2015-01-14 19:32:16 +01:00
|
|
|
Summary: Common translations for %{appname}
|
2008-10-06 17:34:24 +02:00
|
|
|
Group: System/Localization
|
2013-09-16 17:35:15 +02:00
|
|
|
Provides: locale(%{name}:ar;ca;cs;da;de;en_GB;el;es_AR;es_CL;es_ES;fi;fr;hu;it;ja;ko;nb_NO;nl;pl;pt_BR;pt_PT;ru;sv_SE;zh_CN;zh_TW)
|
2010-01-08 01:32:43 +01:00
|
|
|
Requires: %{name} = %{version}
|
2009-08-10 23:34:51 +02:00
|
|
|
Obsoletes: %{name}-translations < %{version}-%{release}
|
2007-01-08 12:23:18 +01:00
|
|
|
|
2009-08-10 23:34:51 +02:00
|
|
|
%description translations-common
|
|
|
|
This package contains several common languages for the user interface
|
2015-01-14 19:32:16 +01:00
|
|
|
of %{appname}.
|
2009-08-10 23:34:51 +02:00
|
|
|
|
|
|
|
%package translations-other
|
2015-01-14 19:32:16 +01:00
|
|
|
Summary: Extra translations for %{appname}
|
2009-08-10 23:34:51 +02:00
|
|
|
Group: System/Localization
|
2018-05-08 15:14:23 +02:00
|
|
|
Provides: locale(%{name}:ach;af;an;as;ast;az;bg;bn_BD;bn_IN;br;bs;cak;cy;dsb;en_ZA;eo;es_MX;et;eu;fa;ff;fy_NL;ga_IE;gd;gl;gn;gu_IN;he;hi_IN;hr;hsb;hy_AM;id;is;ka;kab;kk;km;kn;lij;lt;lv;mai;mk;ml;mr;ms;ne-NP;nn_NO;oc;or;pa_IN;rm;ro;si;sk;sl;son;sq;sr;ta;te;th;tr;uk;uz;vi;xh)
|
2010-01-08 01:32:43 +01:00
|
|
|
Requires: %{name} = %{version}
|
2009-08-10 23:34:51 +02:00
|
|
|
Obsoletes: %{name}-translations < %{version}-%{release}
|
|
|
|
|
|
|
|
%description translations-other
|
|
|
|
This package contains rarely used languages for the user interface
|
2015-01-14 19:32:16 +01:00
|
|
|
of %{appname}.
|
2008-09-26 16:53:00 +02:00
|
|
|
%endif
|
|
|
|
|
2015-01-14 19:32:16 +01:00
|
|
|
%if %branding
|
2009-05-04 18:28:41 +02:00
|
|
|
%package branding-upstream
|
2015-01-14 19:32:16 +01:00
|
|
|
Summary: Upstream branding for %{appname}
|
2008-08-22 00:53:39 +02:00
|
|
|
Group: Productivity/Networking/Web/Browsers
|
2013-05-15 22:58:21 +02:00
|
|
|
Provides: %{name}-branding = %{version}
|
2009-05-04 18:28:41 +02:00
|
|
|
Conflicts: otherproviders(%{name}-branding)
|
|
|
|
Supplements: packageand(%{name}:branding-upstream)
|
2008-11-10 00:34:00 +01:00
|
|
|
#BRAND: Provide three files -
|
2008-10-06 17:34:24 +02:00
|
|
|
#BRAND: /usr/lib/firefox/browserconfig.properties that contains the
|
|
|
|
#BRAND: default homepage and some other default configuration options
|
|
|
|
#BRAND: /usr/lib/firefox/defaults/profile/bookmarks.html that contains
|
|
|
|
#BRAND: the list of default bookmarks
|
|
|
|
#BRAND: It's also possible to create a file
|
|
|
|
#BRAND: /usr/lib/firefox/defaults/preferences/firefox-$vendor.js to set
|
|
|
|
#BRAND: custom preference overrides.
|
2015-08-12 09:11:49 +02:00
|
|
|
#BRAND: It's also possible to drop files in /usr/lib/firefox/distribution/searchplugins/common/
|
2008-08-22 00:53:39 +02:00
|
|
|
|
2009-05-04 18:28:41 +02:00
|
|
|
%description branding-upstream
|
2015-01-14 19:32:16 +01:00
|
|
|
This package provides upstream look and feel for %{appname}.
|
|
|
|
%endif
|
2008-08-22 00:53:39 +02:00
|
|
|
|
2011-06-01 08:05:09 +02:00
|
|
|
%if %crashreporter
|
|
|
|
%package buildsymbols
|
2015-01-14 19:32:16 +01:00
|
|
|
Summary: Breakpad buildsymbols for %{appname}
|
2011-06-01 08:05:09 +02:00
|
|
|
Group: Development/Debug
|
|
|
|
|
|
|
|
%description buildsymbols
|
|
|
|
This subpackage contains the Breakpad created and compatible debugging
|
|
|
|
symbols meant for upload to Mozilla's crash collector database.
|
|
|
|
%endif
|
|
|
|
|
2007-01-08 12:23:18 +01:00
|
|
|
%prep
|
2014-03-18 20:44:32 +01:00
|
|
|
%if %localize
|
2018-05-09 11:46:09 +02:00
|
|
|
%setup -q -n %{source_prefix} -b 7 -b 10
|
2014-03-18 20:44:32 +01:00
|
|
|
%else
|
2018-05-09 11:46:09 +02:00
|
|
|
%setup -q -n %{source_prefix}
|
2014-03-18 20:44:32 +01:00
|
|
|
%endif
|
2018-05-09 11:46:09 +02:00
|
|
|
cd $RPM_BUILD_DIR/%{source_prefix}
|
2009-05-04 18:28:41 +02:00
|
|
|
%patch1 -p1
|
2017-11-15 00:17:59 +01:00
|
|
|
%patch2 -p1
|
2015-11-03 16:49:03 +01:00
|
|
|
%patch3 -p1
|
2017-11-15 00:17:59 +01:00
|
|
|
%patch4 -p1
|
2017-03-07 09:35:10 +01:00
|
|
|
%patch7 -p1
|
2018-01-29 23:56:59 +01:00
|
|
|
%patch8 -p1
|
2018-05-08 15:14:23 +02:00
|
|
|
%patch9 -p1
|
2018-11-10 22:07:09 +01:00
|
|
|
%patch10 -p1
|
2014-04-13 16:47:41 +02:00
|
|
|
# Firefox
|
|
|
|
%patch101 -p1
|
|
|
|
%patch102 -p1
|
2007-01-08 12:23:18 +01:00
|
|
|
|
|
|
|
%build
|
2011-06-01 08:05:09 +02:00
|
|
|
# no need to add build time to binaries
|
2015-01-14 19:32:16 +01:00
|
|
|
modified="$(sed -n '/^----/n;s/ - .*$//;p;q' "%{_sourcedir}/MozillaFirefox.changes")"
|
2011-06-01 08:05:09 +02:00
|
|
|
DATE="\"$(date -d "${modified}" "+%%b %%e %%Y")\""
|
|
|
|
TIME="\"$(date -d "${modified}" "+%%R")\""
|
|
|
|
find . -regex ".*\.c\|.*\.cpp\|.*\.h" -exec sed -i "s/__DATE__/${DATE}/g;s/__TIME__/${TIME}/g" {} +
|
|
|
|
#
|
2012-03-01 10:09:12 +01:00
|
|
|
kdehelperversion=$(cat toolkit/xre/nsKDEUtils.cpp | grep '#define KMOZILLAHELPER_VERSION' | cut -d ' ' -f 3)
|
|
|
|
if test "$kdehelperversion" != %{kde_helper_version}; then
|
|
|
|
echo fix kde helper version in the .spec file
|
|
|
|
exit 1
|
|
|
|
fi
|
2011-06-15 17:00:40 +02:00
|
|
|
source %{SOURCE5}
|
- update to Firefox 47.0 (boo#983549)
* Enable VP9 video codec for users with fast machines
* Embedded YouTube videos now play with HTML5 video if Flash is
not installed
* View and search open tabs from your smartphone or another
computer in a sidebar
* Allow no-cache on back/forward navigations for https resources
security fixes:
* MFSA 2016-49/CVE-2016-2815/CVE-2016-2818
(boo#983638)
(bmo#1241896, bmo#1242798, bmo#1243466, bmo#1245743,
bmo#1264300, bmo#1271037, bmo#1234147, bmo#1256493,
bmo#1256739, bmo#1256968, bmo#1261230, bmo#1261752,
bmo#1263384, bmo#1264575, bmo#1265577, bmo#1267130,
bmo#1269729, bmo#1273202, bmo#1273701)
Miscellaneous memory safety hazards (rv:47.0 / rv:45.2)
* MFSA 2016-50/CVE-2016-2819 (boo#983655) (bmo#1270381)
Buffer overflow parsing HTML5 fragments
* MFSA 2016-51/CVE-2016-2821 (bsc#983653) (bmo#1271460)
Use-after-free deleting tables from a contenteditable document
* MFSA 2016-52/CVE-2016-2822 (boo#983652) (bmo#1273129)
Addressbar spoofing though the SELECT element
* MFSA 2016-53/CVE-2016-2824 (boo#983651) (bmo#1248580)
Out-of-bounds write with WebGL shader
* MFSA 2016-54/CVE-2016-2825 (boo#983649) (bmo#1193093)
Partial same-origin-policy through setting location.host
through data URI
* MFSA 2016-56/CVE-2016-2828 (boo#983646) (bmo#1223810)
Use-after-free when textures are used in WebGL operations
after recycle pool destruction
OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=518
2016-06-08 14:26:29 +02:00
|
|
|
export MOZ_SOURCE_CHANGESET=$REV
|
2011-06-15 17:00:40 +02:00
|
|
|
export SOURCE_REPO=$REPO
|
2013-05-14 16:33:59 +02:00
|
|
|
export source_repo=$REPO
|
2011-06-15 17:00:40 +02:00
|
|
|
export MOZ_SOURCE_REPO=$REPO
|
2007-01-08 12:23:18 +01:00
|
|
|
export MOZ_BUILD_DATE=%{releasedate}
|
|
|
|
export MOZILLA_OFFICIAL=1
|
|
|
|
export BUILD_OFFICIAL=1
|
2011-11-09 13:04:11 +01:00
|
|
|
export MOZ_TELEMETRY_REPORTING=1
|
2017-09-05 12:10:37 +02:00
|
|
|
%if 0%{?suse_version} <= 1320
|
2018-05-02 09:26:13 +02:00
|
|
|
export CC=gcc-7
|
2018-12-13 13:15:35 +01:00
|
|
|
%else
|
|
|
|
%if 0%{?clang_build} == 0
|
|
|
|
export CC=gcc
|
|
|
|
export CXX=g++
|
|
|
|
%endif
|
2017-09-05 12:10:37 +02:00
|
|
|
%endif
|
2014-12-02 23:01:52 +01:00
|
|
|
%ifarch %arm %ix86
|
2014-11-06 21:54:53 +01:00
|
|
|
# Limit RAM usage during link
|
|
|
|
export LDFLAGS="${LDFLAGS} -Wl,--no-keep-memory -Wl,--reduce-memory-overheads"
|
2013-03-14 10:58:43 +01:00
|
|
|
%endif
|
2016-05-20 13:04:12 +02:00
|
|
|
%if 0%{?build_hardened}
|
2019-01-07 20:59:56 +01:00
|
|
|
export LDFLAGS="${LDFLAGS} -fPIC -Wl,-z,relro,-z,now"
|
2016-05-20 13:04:12 +02:00
|
|
|
%endif
|
2014-01-02 21:02:50 +01:00
|
|
|
%ifarch ppc64 ppc64le
|
2018-12-13 13:15:35 +01:00
|
|
|
%if 0%{?clang_build} == 0
|
2011-06-01 08:05:09 +02:00
|
|
|
export CFLAGS="$CFLAGS -mminimal-toc"
|
|
|
|
%endif
|
2018-12-13 13:15:35 +01:00
|
|
|
%endif
|
2007-01-08 12:23:18 +01:00
|
|
|
export CXXFLAGS="$CFLAGS"
|
|
|
|
export MOZCONFIG=$RPM_BUILD_DIR/mozconfig
|
2018-05-26 23:36:30 +02:00
|
|
|
%limit_build -m 1500
|
2007-01-08 12:23:18 +01:00
|
|
|
cat << EOF > $MOZCONFIG
|
|
|
|
mk_add_options MOZILLA_OFFICIAL=1
|
|
|
|
mk_add_options BUILD_OFFICIAL=1
|
|
|
|
mk_add_options MOZ_MAKE_FLAGS=%{?jobs:-j%jobs}
|
2010-11-30 15:35:52 +01:00
|
|
|
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/../obj
|
2007-01-08 12:23:18 +01:00
|
|
|
. \$topsrcdir/browser/config/mozconfig
|
|
|
|
ac_add_options --prefix=%{_prefix}
|
2016-08-18 08:59:29 +02:00
|
|
|
ac_add_options --libdir=%{_libdir}
|
|
|
|
ac_add_options --includedir=%{_includedir}
|
2014-09-22 18:35:40 +02:00
|
|
|
ac_add_options --enable-release
|
2016-04-12 23:13:00 +02:00
|
|
|
ac_add_options --enable-default-toolkit=cairo-gtk3
|
2018-06-25 22:56:47 +02:00
|
|
|
%if 0%{?suse_version} >= 1550
|
|
|
|
ac_add_options --disable-gconf
|
|
|
|
%endif
|
2018-09-24 22:59:09 +02:00
|
|
|
# bmo#1441155 - Disable the generation of Rust debug symbols on Linux32
|
2018-11-26 11:42:10 +01:00
|
|
|
%ifarch %ix86 %arm
|
2018-09-24 22:59:09 +02:00
|
|
|
ac_add_options --disable-debug-symbols
|
2019-01-12 23:48:04 +01:00
|
|
|
%else
|
|
|
|
ac_add_options --enable-debug-symbols
|
2018-09-24 22:59:09 +02:00
|
|
|
%endif
|
2018-11-12 12:49:28 +01:00
|
|
|
%if 0%{?suse_version} > 1549
|
2018-12-11 08:45:25 +01:00
|
|
|
%ifnarch aarch64 ppc64 ppc64le
|
2018-11-12 12:49:28 +01:00
|
|
|
ac_add_options --disable-elf-hack
|
|
|
|
%endif
|
2018-12-11 08:45:25 +01:00
|
|
|
%endif
|
2008-03-26 16:01:54 +01:00
|
|
|
ac_add_options --with-system-nspr
|
|
|
|
ac_add_options --with-system-nss
|
2014-03-18 20:44:32 +01:00
|
|
|
%if %{localize}
|
2010-11-30 15:35:52 +01:00
|
|
|
ac_add_options --with-l10n-base=$RPM_BUILD_DIR/l10n
|
2014-03-18 20:44:32 +01:00
|
|
|
%endif
|
2011-06-01 08:05:09 +02:00
|
|
|
#ac_add_options --with-system-jpeg # libjpeg-turbo is used internally
|
2008-03-26 16:01:54 +01:00
|
|
|
#ac_add_options --with-system-png # doesn't work because of missing APNG support
|
2007-01-08 12:23:18 +01:00
|
|
|
ac_add_options --with-system-zlib
|
2010-01-08 01:32:43 +01:00
|
|
|
ac_add_options --disable-updater
|
2007-01-08 12:23:18 +01:00
|
|
|
ac_add_options --disable-tests
|
2017-03-09 13:31:02 +01:00
|
|
|
ac_add_options --enable-alsa
|
2007-01-08 12:23:18 +01:00
|
|
|
ac_add_options --disable-debug
|
2011-06-22 09:28:03 +02:00
|
|
|
ac_add_options --enable-startup-notification
|
2011-06-01 08:05:09 +02:00
|
|
|
#ac_add_options --enable-chrome-format=jar
|
2012-04-20 21:18:58 +02:00
|
|
|
ac_add_options --enable-update-channel=%{update_channel}
|
2017-04-28 23:32:26 +02:00
|
|
|
ac_add_options --with-mozilla-api-keyfile=%{SOURCE18}
|
2017-09-05 12:10:37 +02:00
|
|
|
ac_add_options --with-google-api-keyfile=%{SOURCE19}
|
2018-09-05 09:16:27 +02:00
|
|
|
ac_add_options --with-unsigned-addon-scopes=app
|
2008-09-26 16:53:00 +02:00
|
|
|
%if %branding
|
2007-01-08 12:23:18 +01:00
|
|
|
ac_add_options --enable-official-branding
|
|
|
|
%endif
|
2011-06-01 08:05:09 +02:00
|
|
|
ac_add_options --enable-libproxy
|
|
|
|
%if ! %crashreporter
|
|
|
|
ac_add_options --disable-crashreporter
|
2011-01-03 17:59:30 +01:00
|
|
|
%endif
|
2012-02-01 14:37:15 +01:00
|
|
|
%ifarch %arm
|
2016-04-14 12:14:02 +02:00
|
|
|
ac_add_options --with-fpu=vfpv3-d16
|
|
|
|
ac_add_options --with-float-abi=hard
|
2018-05-07 10:31:01 +02:00
|
|
|
%ifarch armv6l armv6hl
|
|
|
|
ac_add_options --with-arch=armv6
|
|
|
|
%else
|
2016-04-14 12:14:02 +02:00
|
|
|
ac_add_options --with-arch=armv7-a
|
2013-04-06 21:20:40 +02:00
|
|
|
%endif
|
2018-05-07 10:31:01 +02:00
|
|
|
%endif
|
2018-05-23 10:43:47 +02:00
|
|
|
%ifarch aarch64 %arm s390x
|
2013-03-14 10:58:43 +01:00
|
|
|
ac_add_options --disable-webrtc
|
2012-02-01 14:37:15 +01:00
|
|
|
%endif
|
2019-02-11 12:41:34 +01:00
|
|
|
%ifarch x86_64
|
2019-02-13 08:10:01 +01:00
|
|
|
# LTO needs newer toolchain stack only (at least GCC 8.2.1 (r268506)
|
|
|
|
%if 0%{?suse_version} > 1500
|
2019-02-11 12:41:34 +01:00
|
|
|
ac_add_options --enable-lto
|
|
|
|
%endif
|
2019-02-13 08:10:01 +01:00
|
|
|
%endif
|
2014-03-18 20:44:32 +01:00
|
|
|
EOF
|
2019-01-16 10:31:29 +01:00
|
|
|
./mach build
|
2007-01-08 12:23:18 +01:00
|
|
|
|
|
|
|
%install
|
2010-11-30 15:35:52 +01:00
|
|
|
cd $RPM_BUILD_DIR/obj
|
2011-06-15 17:00:40 +02:00
|
|
|
source %{SOURCE5}
|
|
|
|
export MOZ_SOURCE_STAMP=$REV
|
|
|
|
export MOZ_SOURCE_REPO=$REPO
|
2014-05-11 20:09:20 +02:00
|
|
|
# need to remove default en-US firefox-l10n.js before it gets
|
|
|
|
# populated into browser's omni.ja; it only contains general.useragent.locale
|
|
|
|
# which should be loaded from each language pack (set in firefox.js)
|
|
|
|
rm dist/bin/browser/defaults/preferences/firefox-l10n.js
|
2012-07-16 10:13:51 +02:00
|
|
|
make -C browser/installer STRIP=/bin/true MOZ_PKG_FATAL_WARNINGS=0
|
2012-04-20 21:18:58 +02:00
|
|
|
#DEBUG (break the build if searchplugins are missing / temporary)
|
2013-05-14 16:33:59 +02:00
|
|
|
grep amazondotcom dist/firefox/browser/omni.ja
|
2007-01-08 12:23:18 +01:00
|
|
|
# copy tree into RPM_BUILD_ROOT
|
2014-10-19 21:40:39 +02:00
|
|
|
mkdir -p %{buildroot}%{progdir}
|
|
|
|
cp -rf $RPM_BUILD_DIR/obj/dist/firefox/* %{buildroot}%{progdir}
|
|
|
|
mkdir -p %{buildroot}%{progdir}/distribution/extensions
|
|
|
|
mkdir -p %{buildroot}%{progdir}/browser/defaults/preferences/
|
2014-10-25 10:51:04 +02:00
|
|
|
# install gre prefs
|
|
|
|
install -m 644 %{SOURCE13} %{buildroot}%{progdir}/defaults/pref/
|
|
|
|
# install browser prefs
|
2014-10-19 21:40:39 +02:00
|
|
|
install -m 644 %{SOURCE6} %{buildroot}%{progdir}/browser/defaults/preferences/kde.js
|
|
|
|
install -m 644 %{SOURCE9} %{buildroot}%{progdir}/browser/defaults/preferences/firefox.js
|
2007-01-08 12:23:18 +01:00
|
|
|
# install additional locales
|
|
|
|
%if %localize
|
2018-06-25 22:56:47 +02:00
|
|
|
mkdir -p %{buildroot}%{progdir}/browser/extensions
|
2018-05-14 18:04:59 +02:00
|
|
|
truncate -s 0 %{_tmppath}/translations.{common,other}
|
|
|
|
sed -r '/^(ja-JP-mac|en-US|)$/d;s/ .*$//' $RPM_BUILD_DIR/%{source_prefix}/browser/locales/shipped-locales \
|
|
|
|
| xargs -P 8 -n 1 -I {} /bin/sh -c '
|
|
|
|
locale=$1
|
|
|
|
pushd $RPM_BUILD_DIR/compare-locales
|
|
|
|
PYTHONPATH=lib \
|
|
|
|
scripts/compare-locales -m ../l10n-merged/$locale \
|
|
|
|
../%{source_prefix}/browser/locales/l10n.ini ../l10n $locale
|
|
|
|
popd
|
|
|
|
LOCALE_MERGEDIR=$RPM_BUILD_DIR/l10n-merged/$locale \
|
|
|
|
make -C browser/locales langpack-$locale
|
|
|
|
cp -rL dist/xpi-stage/locale-$locale \
|
|
|
|
%{buildroot}%{progdir}/browser/extensions/langpack-$locale@firefox.mozilla.org
|
|
|
|
# remove prefs, profile defaults, and hyphenation from langpack
|
|
|
|
rm -rf %{buildroot}%{progdir}/browser/extensions/langpack-$locale@firefox.mozilla.org/defaults
|
|
|
|
rm -rf %{buildroot}%{progdir}/browser/extensions/langpack-$locale@firefox.mozilla.org/hyphenation
|
|
|
|
# check against the fixed common list and sort into the right filelist
|
|
|
|
_matched=0
|
|
|
|
for _match in ar ca cs da de en-GB el es-AR es-CL es-ES fi fr hu it ja ko nb-NO nl pl pt-BR pt-PT ru sv-SE zh-CN zh-TW; do
|
|
|
|
[ "$_match" = "$locale" ] && _matched=1
|
|
|
|
done
|
|
|
|
[ $_matched -eq 1 ] && _l10ntarget=common || _l10ntarget=other
|
|
|
|
echo %{progdir}/browser/extensions/langpack-$locale@firefox.mozilla.org \
|
|
|
|
>> %{_tmppath}/translations.$_l10ntarget
|
|
|
|
' -- {}
|
2007-01-08 12:23:18 +01:00
|
|
|
%endif
|
2011-11-09 13:04:11 +01:00
|
|
|
# remove some executable permissions
|
2014-10-19 21:40:39 +02:00
|
|
|
find %{buildroot}%{progdir} \
|
2011-11-09 13:04:11 +01:00
|
|
|
-name "*.js" -o \
|
|
|
|
-name "*.jsm" -o \
|
|
|
|
-name "*.rdf" -o \
|
|
|
|
-name "*.properties" -o \
|
2011-12-18 14:10:54 +01:00
|
|
|
-name "*.dtd" -o \
|
|
|
|
-name "*.txt" -o \
|
|
|
|
-name "*.xml" -o \
|
2018-05-14 18:04:59 +02:00
|
|
|
-name "*.css" \
|
|
|
|
-exec chmod a-x {} +
|
2012-11-20 21:34:15 +01:00
|
|
|
# remove mkdir.done files from installed base
|
2018-05-14 18:04:59 +02:00
|
|
|
find %{buildroot}%{progdir} -type f -name ".mkdir.done" -delete
|
2007-01-08 12:23:18 +01:00
|
|
|
# overwrite the mozilla start-script and link it to /usr/bin
|
2014-10-19 21:40:39 +02:00
|
|
|
mkdir --parents %{buildroot}/usr/bin
|
2007-01-08 12:23:18 +01:00
|
|
|
sed "s:%%PREFIX:%{_prefix}:g
|
|
|
|
s:%%PROGDIR:%{progdir}:g
|
2010-11-30 15:35:52 +01:00
|
|
|
s:%%APPNAME:firefox:g
|
2007-01-08 12:23:18 +01:00
|
|
|
s:%%PROFILE:.mozilla/firefox:g" \
|
2014-10-19 21:40:39 +02:00
|
|
|
%{SOURCE3} > %{buildroot}%{progdir}/%{progname}.sh
|
|
|
|
chmod 755 %{buildroot}%{progdir}/%{progname}.sh
|
|
|
|
ln -sf ../..%{progdir}/%{progname}.sh %{buildroot}%{_bindir}/%{progname}
|
2015-01-14 19:32:16 +01:00
|
|
|
# desktop file
|
2014-10-19 21:40:39 +02:00
|
|
|
mkdir -p %{buildroot}%{_datadir}/applications
|
2015-01-14 19:32:16 +01:00
|
|
|
sed "s:%%NAME:%{appname}:g
|
|
|
|
s:%%EXEC:%{progname}:g
|
|
|
|
s:%%ICON:%{progname}:g" \
|
|
|
|
%{SOURCE1} > %{buildroot}%{_datadir}/applications/%{desktop_file_name}.desktop
|
|
|
|
%suse_update_desktop_file %{desktop_file_name} Network WebBrowser GTK
|
2008-03-26 16:01:54 +01:00
|
|
|
# additional mime-types
|
2014-10-19 21:40:39 +02:00
|
|
|
mkdir -p %{buildroot}%{_datadir}/mime/packages
|
|
|
|
cp %{SOURCE8} %{buildroot}%{_datadir}/mime/packages/%{progname}.xml
|
2014-10-13 20:00:43 +02:00
|
|
|
# appdata
|
2014-10-19 21:40:39 +02:00
|
|
|
mkdir -p %{buildroot}%{_datadir}/appdata
|
|
|
|
cp %{SOURCE15} %{buildroot}%{_datadir}/appdata/%{desktop_file_name}.appdata.xml
|
2007-01-08 12:23:18 +01:00
|
|
|
# install man-page
|
2014-10-19 21:40:39 +02:00
|
|
|
mkdir -p %{buildroot}%{_mandir}/man1/
|
|
|
|
cp %{SOURCE11} %{buildroot}%{_mandir}/man1/%{progname}.1
|
2007-01-08 12:23:18 +01:00
|
|
|
##########
|
|
|
|
# ADDONS
|
|
|
|
#
|
2014-10-19 21:40:39 +02:00
|
|
|
mkdir -p %{buildroot}%{_datadir}/mozilla/extensions/%{firefox_appid}
|
|
|
|
mkdir -p %{buildroot}%{_libdir}/mozilla/extensions/%{firefox_appid}
|
|
|
|
mkdir -p %{buildroot}/usr/share/pixmaps/
|
2018-03-13 20:46:06 +01:00
|
|
|
ln -sf %{progdir}/browser/chrome/icons/default/default128.png %{buildroot}/usr/share/pixmaps/%{progname}.png
|
|
|
|
ln -sf %{progdir}/browser/chrome/icons/default/default128.png %{buildroot}/usr/share/pixmaps/%{progname}-gnome.png
|
2010-01-08 01:32:43 +01:00
|
|
|
%if %branding
|
2018-03-13 20:46:06 +01:00
|
|
|
for size in 16 22 24 32 48 64 128 256; do
|
2011-06-01 08:05:09 +02:00
|
|
|
%else
|
|
|
|
for size in 16 32 48; do
|
|
|
|
%endif
|
2014-10-19 21:40:39 +02:00
|
|
|
mkdir -p %{buildroot}%{gnome_dir}/share/icons/hicolor/${size}x${size}/apps/
|
2015-03-21 13:49:29 +01:00
|
|
|
cp %{buildroot}%{progdir}/browser/chrome/icons/default/default$size.png \
|
2014-10-19 21:40:39 +02:00
|
|
|
%{buildroot}%{gnome_dir}/share/icons/hicolor/${size}x${size}/apps/%{progname}.png
|
2009-06-20 03:02:24 +02:00
|
|
|
done
|
2009-07-29 14:51:51 +02:00
|
|
|
# excludes
|
2014-10-19 21:40:39 +02:00
|
|
|
rm -f %{buildroot}%{progdir}/updater.ini
|
|
|
|
rm -f %{buildroot}%{progdir}/removed-files
|
|
|
|
rm -f %{buildroot}%{progdir}/README.txt
|
|
|
|
rm -f %{buildroot}%{progdir}/old-homepage-default.properties
|
|
|
|
rm -f %{buildroot}%{progdir}/run-mozilla.sh
|
|
|
|
rm -f %{buildroot}%{progdir}/LICENSE
|
|
|
|
rm -f %{buildroot}%{progdir}/precomplete
|
|
|
|
rm -f %{buildroot}%{progdir}/update-settings.ini
|
2011-01-28 18:09:26 +01:00
|
|
|
# devel
|
|
|
|
mkdir -p %{buildroot}%{_bindir}
|
|
|
|
install -m 755 %SOURCE12 %{buildroot}%{_bindir}
|
|
|
|
# inspired by mandriva
|
2014-10-19 21:40:39 +02:00
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}/rpm
|
|
|
|
cat <<'FIN' >%{buildroot}%{_sysconfdir}/rpm/macros.%{progname}
|
2011-01-28 18:09:26 +01:00
|
|
|
# Macros from %{name} package
|
|
|
|
%%firefox_major %{major}
|
|
|
|
%%firefox_version %{version}
|
|
|
|
%%firefox_mainver %{mainver}
|
2011-03-21 10:47:37 +01:00
|
|
|
%%firefox_mozillapath %%{_libdir}/%{progname}
|
|
|
|
%%firefox_pluginsdir %%{_libdir}/browser-plugins
|
2011-01-28 18:09:26 +01:00
|
|
|
%%firefox_appid \{ec8030f7-c20a-464f-9b0e-13a3a9e97384\}
|
|
|
|
%%firefox_extdir %%(if [ "%%_target_cpu" = "noarch" ]; then echo %%{_datadir}/mozilla/extensions/%%{firefox_appid}; else echo %%{_libdir}/mozilla/extensions/%%{firefox_appid}; fi)
|
|
|
|
|
|
|
|
%%firefox_ext_install() \
|
|
|
|
extdir="%%{buildroot}%%{firefox_extdir}/`mozilla-get-app-id '%%1'`" \
|
|
|
|
mkdir -p "$extdir" \
|
|
|
|
%%{__unzip} -q -d "$extdir" "%%1" \
|
|
|
|
%%{nil}
|
|
|
|
FIN
|
|
|
|
# just dumping an xpi file there doesn't work...
|
|
|
|
#%%firefox_ext_install() \
|
|
|
|
# extdir="%%{buildroot}%%{firefox_extdir}" \
|
|
|
|
# mkdir -p "$extdir" \
|
|
|
|
# cp "%%1" "$extdir" \
|
|
|
|
# %%{nil}
|
2009-07-29 14:51:51 +02:00
|
|
|
# fdupes
|
2014-10-19 21:40:39 +02:00
|
|
|
%fdupes %{buildroot}%{progdir}
|
|
|
|
%fdupes %{buildroot}%{_datadir}
|
2011-06-01 08:05:09 +02:00
|
|
|
# create breakpad debugsymbols
|
|
|
|
%if %crashreporter
|
2016-03-06 17:21:37 +01:00
|
|
|
SYMBOLS_NAME="firefox-%{version}-` echo '%{release}' | sed 's@\.[^\.]\+$@@' `.%{_arch}-%{suse_version}-symbols"
|
2011-06-01 08:05:09 +02:00
|
|
|
make buildsymbols \
|
|
|
|
SYMBOL_INDEX_NAME="$SYMBOLS_NAME.txt" \
|
|
|
|
SYMBOL_FULL_ARCHIVE_BASENAME="$SYMBOLS_NAME-full" \
|
|
|
|
SYMBOL_ARCHIVE_BASENAME="$SYMBOLS_NAME"
|
|
|
|
if [ -e dist/*symbols.zip ]; then
|
2014-10-19 21:40:39 +02:00
|
|
|
mkdir -p %{buildroot}%{_datadir}/mozilla/
|
|
|
|
cp dist/*symbols.zip %{buildroot}%{_datadir}/mozilla/
|
2011-06-01 08:05:09 +02:00
|
|
|
fi
|
|
|
|
%endif
|
2007-01-08 12:23:18 +01:00
|
|
|
|
2014-10-19 21:45:31 +02:00
|
|
|
%clean
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
%if %localize
|
|
|
|
rm -rf %{_tmppath}/translations.*
|
|
|
|
%endif
|
|
|
|
|
2007-01-08 12:23:18 +01:00
|
|
|
%post
|
2008-03-26 16:01:54 +01:00
|
|
|
# update mime and desktop database
|
2011-01-24 10:14:26 +01:00
|
|
|
%mime_database_post
|
|
|
|
%desktop_database_post
|
|
|
|
%icon_theme_cache_post
|
2007-01-08 12:23:18 +01:00
|
|
|
exit 0
|
2007-03-13 00:58:50 +01:00
|
|
|
|
2008-02-15 01:45:38 +01:00
|
|
|
%postun
|
2011-01-24 10:14:26 +01:00
|
|
|
%icon_theme_cache_postun
|
|
|
|
%desktop_database_postun
|
|
|
|
%mime_database_postun
|
|
|
|
exit 0
|
2008-03-26 16:01:54 +01:00
|
|
|
|
2010-01-08 01:32:43 +01:00
|
|
|
%files
|
2008-03-26 16:01:54 +01:00
|
|
|
%defattr(-,root,root)
|
2007-01-08 12:23:18 +01:00
|
|
|
%dir %{progdir}
|
2013-05-14 16:33:59 +02:00
|
|
|
%dir %{progdir}/browser/
|
|
|
|
%dir %{progdir}/browser/chrome/
|
|
|
|
%{progdir}/browser/defaults
|
2016-03-07 17:25:29 +01:00
|
|
|
%{progdir}/browser/features/
|
2013-05-14 16:33:59 +02:00
|
|
|
%{progdir}/browser/chrome/icons
|
|
|
|
%{progdir}/browser/blocklist.xml
|
|
|
|
%{progdir}/browser/chrome.manifest
|
|
|
|
%{progdir}/browser/omni.ja
|
2011-01-24 10:14:26 +01:00
|
|
|
%dir %{progdir}/distribution/
|
2013-05-14 16:33:59 +02:00
|
|
|
%{progdir}/distribution/extensions/
|
2007-01-08 12:23:18 +01:00
|
|
|
%{progdir}/defaults/
|
2016-04-12 23:13:00 +02:00
|
|
|
%dir %{progdir}/gtk2
|
|
|
|
%{progdir}/gtk2/libmozgtk.so
|
2015-02-23 21:32:13 +01:00
|
|
|
%{progdir}/gmp-clearkey/
|
2007-01-08 12:23:18 +01:00
|
|
|
%attr(755,root,root) %{progdir}/%{progname}.sh
|
2012-07-16 10:13:51 +02:00
|
|
|
%{progdir}/firefox
|
2011-06-01 08:05:09 +02:00
|
|
|
%{progdir}/firefox-bin
|
2008-03-26 16:01:54 +01:00
|
|
|
%{progdir}/application.ini
|
2017-03-07 09:35:10 +01:00
|
|
|
%{progdir}/chrome.manifest
|
2011-06-01 08:05:09 +02:00
|
|
|
%{progdir}/dependentlibs.list
|
|
|
|
%{progdir}/*.so
|
2012-02-01 14:37:15 +01:00
|
|
|
%{progdir}/omni.ja
|
2016-11-15 19:06:29 +01:00
|
|
|
%{progdir}/fonts/
|
2017-09-05 12:10:37 +02:00
|
|
|
%{progdir}/pingsender
|
2011-06-01 08:05:09 +02:00
|
|
|
%{progdir}/platform.ini
|
|
|
|
%{progdir}/plugin-container
|
2010-08-01 17:17:34 +02:00
|
|
|
%if %crashreporter
|
2011-06-01 08:05:09 +02:00
|
|
|
%{progdir}/crashreporter
|
|
|
|
%{progdir}/crashreporter.ini
|
|
|
|
%{progdir}/Throbber-small.gif
|
2017-03-07 09:35:10 +01:00
|
|
|
%{progdir}/minidump-analyzer
|
2013-05-14 16:33:59 +02:00
|
|
|
%{progdir}/browser/crashreporter-override.ini
|
2010-08-01 17:17:34 +02:00
|
|
|
%endif
|
2011-01-13 14:04:03 +01:00
|
|
|
%{_datadir}/applications/%{desktop_file_name}.desktop
|
2008-09-26 16:53:00 +02:00
|
|
|
%{_datadir}/mime/packages/%{progname}.xml
|
2008-06-23 23:39:45 +02:00
|
|
|
%{_datadir}/pixmaps/firefox*
|
2011-01-28 18:09:26 +01:00
|
|
|
%dir %{_datadir}/mozilla
|
|
|
|
%dir %{_datadir}/mozilla/extensions
|
|
|
|
%dir %{_datadir}/mozilla/extensions/%{firefox_appid}
|
|
|
|
%dir %{_libdir}/mozilla
|
|
|
|
%dir %{_libdir}/mozilla/extensions
|
|
|
|
%dir %{_libdir}/mozilla/extensions/%{firefox_appid}
|
2007-01-26 00:57:56 +01:00
|
|
|
%{gnome_dir}/share/icons/hicolor/
|
2008-06-23 23:39:45 +02:00
|
|
|
%{_bindir}/%{progname}
|
2008-09-26 16:53:00 +02:00
|
|
|
%doc %{_mandir}/man1/%{progname}.1.gz
|
2015-01-14 19:32:16 +01:00
|
|
|
%{_datadir}/appdata/
|
2010-03-26 02:09:50 +01:00
|
|
|
|
2011-01-28 18:09:26 +01:00
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_bindir}/mozilla-get-app-id
|
2014-10-19 21:40:39 +02:00
|
|
|
%config %{_sysconfdir}/rpm/macros.%{progname}
|
2011-01-25 09:00:34 +01:00
|
|
|
|
2011-01-28 18:09:26 +01:00
|
|
|
%if %localize
|
2011-08-15 14:14:28 +02:00
|
|
|
|
2009-08-10 23:34:51 +02:00
|
|
|
%files translations-common -f %{_tmppath}/translations.common
|
|
|
|
%defattr(-,root,root)
|
2010-01-08 01:32:43 +01:00
|
|
|
%dir %{progdir}
|
2013-05-14 16:33:59 +02:00
|
|
|
%dir %{progdir}/browser/extensions/
|
2009-08-10 23:34:51 +02:00
|
|
|
|
|
|
|
%files translations-other -f %{_tmppath}/translations.other
|
2007-01-08 12:23:18 +01:00
|
|
|
%defattr(-,root,root)
|
2010-01-08 01:32:43 +01:00
|
|
|
%dir %{progdir}
|
2013-05-14 16:33:59 +02:00
|
|
|
%dir %{progdir}/browser/extensions/
|
2007-01-08 12:23:18 +01:00
|
|
|
%endif
|
2009-12-21 14:04:16 +01:00
|
|
|
|
2011-07-01 11:12:30 +02:00
|
|
|
# this package does not need to provide files but is needed to fulfill
|
|
|
|
# requirements if no other branding package is to be installed
|
2015-01-14 19:32:16 +01:00
|
|
|
%if %branding
|
2011-07-01 11:12:30 +02:00
|
|
|
%files branding-upstream
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%dir %{progdir}
|
2015-01-14 19:32:16 +01:00
|
|
|
%endif
|
2011-06-01 08:05:09 +02:00
|
|
|
|
|
|
|
%if %crashreporter
|
|
|
|
%files buildsymbols
|
2010-11-30 15:35:52 +01:00
|
|
|
%defattr(-,root,root)
|
2011-06-01 08:05:09 +02:00
|
|
|
%{_datadir}/mozilla/*.zip
|
|
|
|
%endif
|
2009-07-04 13:30:11 +02:00
|
|
|
|
2007-02-25 23:32:56 +01:00
|
|
|
%changelog
|