diff options
author | 2010-01-13 21:58:24 +0000 | |
---|---|---|
committer | 2010-01-13 21:58:24 +0000 | |
commit | 11e1f7c549b1e6e2c40ef9f0eeda769dedf903b0 (patch) | |
tree | 8699085625a5a9fb7ef1b8da0edaaa37ee4cec89 /app-misc/gramps/files | |
parent | version bump (diff) | |
download | gentoo-2-11e1f7c549b1e6e2c40ef9f0eeda769dedf903b0.tar.gz gentoo-2-11e1f7c549b1e6e2c40ef9f0eeda769dedf903b0.tar.bz2 gentoo-2-11e1f7c549b1e6e2c40ef9f0eeda769dedf903b0.zip |
install mo files, as reported by Sven Wehner <sven AT atelophobia DOT de> on bug 300293
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'app-misc/gramps/files')
-rw-r--r-- | app-misc/gramps/files/gramps-3.1.3-fix_mo_install.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app-misc/gramps/files/gramps-3.1.3-fix_mo_install.patch b/app-misc/gramps/files/gramps-3.1.3-fix_mo_install.patch new file mode 100644 index 000000000000..3b7978b633fc --- /dev/null +++ b/app-misc/gramps/files/gramps-3.1.3-fix_mo_install.patch @@ -0,0 +1,11 @@ +--- po/Makefile.in.in-orig 2010-01-13 22:50:46.471767466 +0100 ++++ po/Makefile.in.in 2010-01-13 22:51:10.263766542 +0100 +@@ -56,7 +56,7 @@ + + PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; else echo "$(ALL_LINGUAS)"; fi) + +-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 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep '^$$lang$$'`"; then printf "$$lang "; fi; done; fi) ++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 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep ^$$lang$$`"; then printf "$$lang "; fi; done; fi) + + USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)" -o -n "$(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) + |