Accepting request 37579 from home:vuntz:branches:GNOME:Factory
Copy from home:vuntz:branches:GNOME:Factory/epiphany via accept of submit request 37579 revision 3. Request was accepted with message: ok OBS-URL: https://build.opensuse.org/request/show/37579 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/epiphany?expand=0&rev=67
This commit is contained in:
parent
6f0778bd3d
commit
74be935626
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Apr 9 16:58:15 CEST 2010 - vuntz@opensuse.org
|
||||||
|
|
||||||
|
- When creating the extensions directory, create it with the value
|
||||||
|
that is in epiphany's pkg-config file. This ensures we'll have
|
||||||
|
the right directory.
|
||||||
|
- Get ready to use the certificate bundle file: we will pass
|
||||||
|
--with-ca-file=%{_sysconfdir}/ssl/ca-bundle.pem to configure
|
||||||
|
instead of --without-ca-file on 11.3 and later. This is commented
|
||||||
|
out for now since we need a ca-certificates package that is not
|
||||||
|
in Factory yet.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Apr 8 19:45:18 CEST 2010 - vuntz@opensuse.org
|
Thu Apr 8 19:45:18 CEST 2010 - vuntz@opensuse.org
|
||||||
|
|
||||||
|
@ -20,9 +20,9 @@
|
|||||||
Name: epiphany
|
Name: epiphany
|
||||||
Version: 2.30.2
|
Version: 2.30.2
|
||||||
Release: 1
|
Release: 1
|
||||||
%define major_version 2.30
|
# FIXME: once ca-certificates will create the bundle file, uncomment the --with-ca-file configure option
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
Summary: GNOME Web Browser Based on the Mozilla Rendering Engine
|
Summary: GNOME Web Browser Based on the WebKit Rendering Engine
|
||||||
Url: http://www.gnome.org/projects/epiphany/
|
Url: http://www.gnome.org/projects/epiphany/
|
||||||
Group: Productivity/Networking/Web/Browsers
|
Group: Productivity/Networking/Web/Browsers
|
||||||
Source: %{name}-%{version}.tar.bz2
|
Source: %{name}-%{version}.tar.bz2
|
||||||
@ -70,7 +70,7 @@ simplicity and standards compliance.
|
|||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
Summary: GNOME Web Browser based on the Mozilla Rendering Engine
|
Summary: GNOME Web Browser based on the WebKit Rendering Engine
|
||||||
Group: Development/Libraries/GNOME
|
Group: Development/Libraries/GNOME
|
||||||
Requires: %{name} = %{version}
|
Requires: %{name} = %{version}
|
||||||
Requires: gtk2-devel
|
Requires: gtk2-devel
|
||||||
@ -123,6 +123,12 @@ ACLOCAL="aclocal -I m4" autoreconf -f -i
|
|||||||
--enable-introspection \
|
--enable-introspection \
|
||||||
--enable-seed \
|
--enable-seed \
|
||||||
--without-ca-file
|
--without-ca-file
|
||||||
|
# FIXME: when ca-certificates will be recent-enough:
|
||||||
|
#%if 0%{?suse_version} > 1120
|
||||||
|
# --with-ca-file=%{_sysconfdir}/ssl/ca-bundle.pem
|
||||||
|
#%else
|
||||||
|
# --without-ca-file
|
||||||
|
#%endif
|
||||||
%__make %{?jobs:-j%jobs}
|
%__make %{?jobs:-j%jobs}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -133,9 +139,11 @@ ACLOCAL="aclocal -I m4" autoreconf -f -i
|
|||||||
%if 0%{?suse_version} <= 1120
|
%if 0%{?suse_version} <= 1120
|
||||||
%{__rm} %{buildroot}%{_datadir}/locale/en@shaw/LC_MESSAGES/*
|
%{__rm} %{buildroot}%{_datadir}/locale/en@shaw/LC_MESSAGES/*
|
||||||
%endif
|
%endif
|
||||||
# In case make install did not create the extensions folder
|
# In case make install did not create the extensions directory; note that we
|
||||||
if ! test -d %{buildroot}%{_libdir}/epiphany/%{major_version}/extensions; then
|
# determine this directory with the pkg-config file that got installed.
|
||||||
install -d -m 0755 %{buildroot}%{_libdir}/epiphany/%{major_version}/extensions
|
extensionsdir=`pkg-config --variable extensionsdir %{buildroot}%{_libdir}/pkgconfig/epiphany-*.pc`
|
||||||
|
if ! test -d %{buildroot}${extensionsdir}; then
|
||||||
|
install -d -m 0755 %{buildroot}${extensionsdir}
|
||||||
fi
|
fi
|
||||||
%suse_update_desktop_file -N "Epiphany" %name
|
%suse_update_desktop_file -N "Epiphany" %name
|
||||||
%suse_update_desktop_file bme System
|
%suse_update_desktop_file bme System
|
||||||
|
Loading…
Reference in New Issue
Block a user