summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Volkov <pva@gentoo.org>2007-01-22 14:22:18 +0000
committerPeter Volkov <pva@gentoo.org>2007-01-22 14:22:18 +0000
commit2c1d91cd2fa9ddc5cc3441ceb81a2026c73b3dd0 (patch)
tree37aa0242db963a2169aaa88da31c7249ef63a33c /app-doc/gimp-help
parentStable on Alpha + IA64. (diff)
downloadgentoo-2-2c1d91cd2fa9ddc5cc3441ceb81a2026c73b3dd0.tar.gz
gentoo-2-2c1d91cd2fa9ddc5cc3441ceb81a2026c73b3dd0.tar.bz2
gentoo-2-2c1d91cd2fa9ddc5cc3441ceb81a2026c73b3dd0.zip
Fixed bug #163174. Thank Mark Peloquin <markpeloquin AT gmail.com> for report and Martin von Gagern <Martin.vGagern AT gmx.net> for pointing me on bug.
(Portage version: 2.1.1-r2)
Diffstat (limited to 'app-doc/gimp-help')
-rw-r--r--app-doc/gimp-help/ChangeLog8
-rw-r--r--app-doc/gimp-help/files/gimp-help-2.0.11-image-honour-ALL_LINGUAS.patch10
2 files changed, 13 insertions, 5 deletions
diff --git a/app-doc/gimp-help/ChangeLog b/app-doc/gimp-help/ChangeLog
index 8ad719633473..f846c62e1406 100644
--- a/app-doc/gimp-help/ChangeLog
+++ b/app-doc/gimp-help/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-doc/gimp-help
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-doc/gimp-help/ChangeLog,v 1.24 2007/01/21 15:52:55 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-doc/gimp-help/ChangeLog,v 1.25 2007/01/22 14:22:18 pva Exp $
+
+ 22 Jan 2007; <pva@gentoo.org>
+ files/gimp-help-2.0.11-image-honour-ALL_LINGUAS.patch:
+ Fixed bug #163174. Thank Mark Peloquin <markpeloquin AT gmail.com> for
+ report and Martin von Gagern <Martin.vGagern AT gmx.net> for pointing me on
+ bug.
*gimp-help-0.11-r1 (21 Jan 2007)
diff --git a/app-doc/gimp-help/files/gimp-help-2.0.11-image-honour-ALL_LINGUAS.patch b/app-doc/gimp-help/files/gimp-help-2.0.11-image-honour-ALL_LINGUAS.patch
index c2a0977fc65c..4ea966cacc0a 100644
--- a/app-doc/gimp-help/files/gimp-help-2.0.11-image-honour-ALL_LINGUAS.patch
+++ b/app-doc/gimp-help/files/gimp-help-2.0.11-image-honour-ALL_LINGUAS.patch
@@ -1,5 +1,5 @@
---- Makefile.am.orig 2006-12-02 14:23:01.000000000 +0300
-+++ Makefile.am 2007-01-21 17:43:13.000000000 +0300
+--- Makefile.am.orig 2007-01-22 17:04:25.000000000 +0300
++++ Makefile.am 2007-01-22 17:04:47.000000000 +0300
@@ -3,17 +3,19 @@
STAMP_DIR = stamps
@@ -48,7 +48,7 @@
# only create a link in the PDF directory, because image files are
# included in the PDF anyways
@echo '*** Creating link in PDF directory to images ***'
-@@ -133,8 +147,19 @@
+@@ -133,8 +147,21 @@
@echo '*** Copying images ***'
# copy the image files to html directory
@@ -59,7 +59,9 @@
+ if test $$lang = "en"; then \
+ for dir in $(IMAGE_DIRS); do \
+ for file in `echo $(top_srcdir)/images/$$dir/*.png` `echo $(top_srcdir)/images/$$dir/*.jpg`; do \
-+ test -f $$file && cp $$file html/$$file; \
++ if test -f $$file ; then \
++ cp $$file html/$$file; \
++ fi; \
+ done; \
+ done; \
+ else \