Gentoo Archives: gentoo-commits

From: "Angelo Arrifano (miknix)" <miknix@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gpe-base/libgpewidget/files: libgpewidget-0.117-linguas.patch
Date: Sat, 03 Mar 2012 20:15:10
Message-Id: 20120303201456.75C7B2004C@flycatcher.gentoo.org
1 miknix 12/03/03 20:14:56
2
3 Added: libgpewidget-0.117-linguas.patch
4 Log:
5 Fix "ignored LINGUAS" bug 406419
6
7 (Portage version: 2.1.10.44/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 gpe-base/libgpewidget/files/libgpewidget-0.117-linguas.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gpe-base/libgpewidget/files/libgpewidget-0.117-linguas.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gpe-base/libgpewidget/files/libgpewidget-0.117-linguas.patch?rev=1.1&content-type=text/plain
14
15 Index: libgpewidget-0.117-linguas.patch
16 ===================================================================
17 --- po/Makefile.in.in.old 2012-03-03 20:53:16.237577607 +0100
18 +++ po/Makefile.in.in 2012-03-03 20:54:09.303580162 +0100
19 @@ -56,7 +56,7 @@
20
21 PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; fi)
22
23 -USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep ^$$lang$$ $(srcdir)/LINGUAS`" -o -n "`echo $$ALINGUAS|grep ' ?$$lang ?'`"; then printf "$$lang "; fi; done; fi)
24 +USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep ^$$lang$$ $(srcdir)/LINGUAS`" -o -n "`echo $$ALINGUAS|grep -E \" ?$$lang ?\"`"; then printf "$$lang "; fi; done; fi)
25
26 USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done)