Replace logomarks with plain text (#814220)
(cherry picked from commit 201234bfe147284b1086bdbf62f1960014ee6076)
This commit is contained in:
parent
bfbf291d73
commit
b629ca8adf
44
gnome-devel-docs-3.4.1-logos-removal.patch
Normal file
44
gnome-devel-docs-3.4.1-logos-removal.patch
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
diff -up gnome-devel-docs-3.4.1/platform-demos/C/getting-ready.page.bak gnome-devel-docs-3.4.1/platform-demos/C/getting-ready.page
|
||||||
|
--- gnome-devel-docs-3.4.1/platform-demos/C/getting-ready.page.bak 2012-04-16 20:18:02.000000000 +0200
|
||||||
|
+++ gnome-devel-docs-3.4.1/platform-demos/C/getting-ready.page 2012-04-20 17:43:41.000000000 +0200
|
||||||
|
@@ -37,17 +37,17 @@ Click on the image to go directly to the
|
||||||
|
<list>
|
||||||
|
<item><p>
|
||||||
|
<link href="http://live.gnome.org/DeveloperTools/Installation/Ubuntu">
|
||||||
|
- <media type="image" mime="image/png" src="media/ubuntu.png">Ubuntu</media>
|
||||||
|
+ Ubuntu
|
||||||
|
</link></p>
|
||||||
|
</item>
|
||||||
|
<item><p>
|
||||||
|
<link href="http://live.gnome.org/DeveloperTools/Installation/Fedora">
|
||||||
|
- <media type="image" mime="image/png" src="media/fedora.png">Fedora</media>
|
||||||
|
+ Fedora
|
||||||
|
</link></p>
|
||||||
|
</item>
|
||||||
|
<item><p>
|
||||||
|
<link href="http://live.gnome.org/DeveloperTools/Installation/OpenSuSE">
|
||||||
|
- <media type="image" mime="image/png" src="media/opensuse.png">OpenSuSE</media>
|
||||||
|
+ OpenSuSE
|
||||||
|
</link></p>
|
||||||
|
</item>
|
||||||
|
<item><p><link href="http://live.gnome.org/DeveloperTools/Installation">Others</link></p></item>
|
||||||
|
diff -up gnome-devel-docs-3.4.1/platform-demos/Makefile.am.bak gnome-devel-docs-3.4.1/platform-demos/Makefile.am
|
||||||
|
--- gnome-devel-docs-3.4.1/platform-demos/Makefile.am.bak 2012-04-16 19:54:23.000000000 +0200
|
||||||
|
+++ gnome-devel-docs-3.4.1/platform-demos/Makefile.am 2012-04-20 17:49:52.000000000 +0200
|
||||||
|
@@ -29,8 +29,6 @@ DOC_FIGURES = \
|
||||||
|
media/button_with_progress_bar.png \
|
||||||
|
media/dialog.png \
|
||||||
|
media/entry.png \
|
||||||
|
- media/fedora.png \
|
||||||
|
- media/opensuse.png \
|
||||||
|
media/GtkApplication.png \
|
||||||
|
media/guitar-tuner.png \
|
||||||
|
media/guitar-tuner-glade.png \
|
||||||
|
@@ -44,7 +42,6 @@ DOC_FIGURES = \
|
||||||
|
media/photo-wall-focused.png \
|
||||||
|
media/record-collection.png \
|
||||||
|
media/toolbar.png \
|
||||||
|
- media/ubuntu.png \
|
||||||
|
media/weatherAppJs.png \
|
||||||
|
media/window.png \
|
||||||
|
$(demo_sources)
|
@ -1,7 +1,7 @@
|
|||||||
Summary: GNOME developer documentation
|
Summary: GNOME developer documentation
|
||||||
Name: gnome-devel-docs
|
Name: gnome-devel-docs
|
||||||
Version: 3.4.1
|
Version: 3.4.1
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
License: GFDL
|
License: GFDL
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
URL: http://library.gnome.org
|
URL: http://library.gnome.org
|
||||||
@ -13,6 +13,11 @@ BuildRequires: rarian-compat
|
|||||||
BuildRequires: docbook-utils
|
BuildRequires: docbook-utils
|
||||||
BuildRequires: gettext
|
BuildRequires: gettext
|
||||||
|
|
||||||
|
# Logomarks should be removed and replaced with text
|
||||||
|
# https://bugzilla.redhat.com/show_bug.cgi?id=814220
|
||||||
|
Patch0: gnome-devel-docs-3.4.1-logos-removal.patch
|
||||||
|
BuildRequires: automake autoconf
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This package contains documents which are targeted for GNOME developers.
|
This package contains documents which are targeted for GNOME developers.
|
||||||
It contains, e.g., the Human Interface Guidelines, the Integration Guide
|
It contains, e.g., the Human Interface Guidelines, the Integration Guide
|
||||||
@ -20,10 +25,19 @@ and the Platform Overview.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
%patch0 -p1 -b .logos-removal
|
||||||
|
rm -f platform-demos/media/fedora.png
|
||||||
|
rm -f platform-demos/media/opensuse.png
|
||||||
|
rm -f platform-demos/media/ubuntu.png
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
aclocal || :
|
||||||
|
autoheader || :
|
||||||
|
automake || :
|
||||||
|
autoconf || :
|
||||||
|
|
||||||
%configure
|
%configure
|
||||||
make
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make install DESTDIR=$RPM_BUILD_ROOT
|
make install DESTDIR=$RPM_BUILD_ROOT
|
||||||
@ -35,6 +49,9 @@ make install DESTDIR=$RPM_BUILD_ROOT
|
|||||||
%doc README AUTHORS NEWS COPYING
|
%doc README AUTHORS NEWS COPYING
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Apr 20 2012 Tomas Bzatek <tbzatek@redhat.com> - 3.4.1-2
|
||||||
|
- Replace logomarks with plain text (#814220)
|
||||||
|
|
||||||
* Tue Apr 17 2012 Kalev Lember <kalevlember@gmail.com> - 3.4.1-1
|
* Tue Apr 17 2012 Kalev Lember <kalevlember@gmail.com> - 3.4.1-1
|
||||||
- Update to 3.4.1
|
- Update to 3.4.1
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user