a0b3eae26e
Fix find-lang to work with new XDG help system OBS-URL: https://build.opensuse.org/request/show/109136 OBS-URL: https://build.opensuse.org/package/show/Base:System/rpm?expand=0&rev=191
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
From 6047ddf6aa984a65e334450e04d272631894b039 Mon Sep 17 00:00:00 2001
|
|
From: Panu Matilainen <pmatilai@redhat.com>
|
|
Date: Wed, 7 Mar 2012 11:31:15 +0200
|
|
Subject: [PATCH] Teach find-lang about the new gnome help layout (RhBug:736523)
|
|
|
|
---
|
|
scripts/find-lang.sh | 8 ++++++++
|
|
1 files changed, 8 insertions(+), 0 deletions(-)
|
|
|
|
Index: scripts/find-lang.sh
|
|
===================================================================
|
|
--- scripts/find-lang.sh.orig
|
|
+++ scripts/find-lang.sh
|
|
@@ -122,6 +122,14 @@ s:%lang(C) ::
|
|
|
|
find $TOP_DIR -type d|sed '
|
|
s:'"$TOP_DIR"'::
|
|
+'"$NO_ALL_NAME$GNOME"'s:\(.*/share/help/\)\([^/_]\+\)\(/'"$NAME"'\)$:%lang(\2) %doc \1\2\3/:
|
|
+'"$ALL_NAME$GNOME"'s:\(.*/share/help/\)\([^/_]\+\)\(/[a-zA-Z0-9.\_\-]\+\)$:%lang(\2) %doc \1\2\3/:
|
|
+s:^\([^%].*\)::
|
|
+s:%lang(C) ::
|
|
+/^$/d' >> $MO_NAME_NEW
|
|
+
|
|
+find $TOP_DIR -type d|sed '
|
|
+s:'"$TOP_DIR"'::
|
|
'"$NO_ALL_NAME$GNOME"'s:\(.*/gnome/help/'"$NAME"'$\):%dir %doc \1:
|
|
'"$NO_ALL_NAME$GNOME"'s:\(.*/gnome/help/'"$NAME"'/[a-zA-Z0-9.\_\-]/.\+\)::
|
|
'"$NO_ALL_NAME$GNOME"'s:\(.*/gnome/help/'"$NAME"'\/\)\([^/_]\+\):%lang(\2) %doc \1\2:
|