92062d33cd
Copy from home:vuntz:branches:GNOME:Factory/epiphany-branding-openSUSE via accept of submit request 29817 revision 3. Request was accepted with message: Forwarding to openSUSE:Factory OBS-URL: https://build.opensuse.org/request/show/29817 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/epiphany-branding-openSUSE?expand=0&rev=17
84 lines
2.8 KiB
RPMSpec
84 lines
2.8 KiB
RPMSpec
#
|
|
# spec file for package epiphany-branding-%{branding_name} (Version 11.3)
|
|
#
|
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
%define build_openSUSE 0
|
|
%define build_SLED 0
|
|
|
|
Name: epiphany-branding-%{branding_name}
|
|
License: GPL v2 or later
|
|
Version: 11.3
|
|
Release: 1
|
|
Summary: %{branding_name} branding of epiphany
|
|
Group: Productivity/Networking/Web/Browsers
|
|
Source0: COPYING
|
|
Source1: branding.conf.in
|
|
# PATCH-FEATURE-OPENSUSE opensuse-bookmarks.patch vuntz@novell.com -- Add openSUSE bookmarks
|
|
Patch0: opensuse-bookmarks.patch
|
|
# PATCH-FEATURE-SLED sled-bookmarks.patch vuntz@novell.com -- Add SLED bookmarks
|
|
Patch1: sled-bookmarks.patch
|
|
# To be in sync with upstream defaults, do branding as a patch for upstream file.
|
|
# WARNING: As this package conflicts with epiphany-branding-%{branding_name}, you cannot
|
|
# reuse build root. You have to build in a clean build root every time!
|
|
BuildRequires: epiphany-branding-upstream
|
|
BuildRequires: epiphany
|
|
%if 0%{suse_version} > 1110
|
|
BuildRequires: lsb-release
|
|
%else
|
|
BuildRequires: lsb
|
|
%endif
|
|
BuildRequires: suse-release
|
|
%define distro_version %(lsb_release -r -s)
|
|
%define epiphany_version %(rpm -q --qf '%%{version}-%%{release}' epiphany)
|
|
Provides: epiphany-branding = %{epiphany_version}
|
|
Conflicts: otherproviders(epiphany-branding)
|
|
Supplements: packageand(epiphany:branding-%{branding_name})
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
This package provides %{branding_name} Look and Feel for Epiphany.
|
|
|
|
%prep
|
|
cp -a %{_datadir}/epiphany/default-bookmarks.rdf .
|
|
%if %build_openSUSE
|
|
%patch0
|
|
%endif
|
|
%if %build_SLED
|
|
%patch1
|
|
%endif
|
|
cp -a %{SOURCE0} .
|
|
|
|
%build
|
|
sed "s,@distroversion@,%{distro_version},g;s,@pkgversion@,%{epiphany_version},g" %{SOURCE1} > branding.conf
|
|
|
|
%install
|
|
# custom bookmarks
|
|
install -D -m0644 default-bookmarks.rdf %{buildroot}%{_datadir}/epiphany/default-bookmarks.rdf
|
|
# user agent
|
|
install -D -m0644 branding.conf %{buildroot}%{_datadir}/epiphany/branding.conf
|
|
|
|
%clean
|
|
rm -rf %{buildroot}
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc COPYING
|
|
%{_datadir}/epiphany/default-bookmarks.rdf
|
|
%{_datadir}/epiphany/branding.conf
|
|
|
|
%changelog
|