updated on Wed Jan 11 00:07:16 UTC 2012
[aur-mirror.git] / xgngeo / fix-install-path.patch
blob16492106a16185479d6f2ebc0a9239d965b4e870
1 --- XGngeo/setup.py 2012-01-09 16:49:55.712992948 -0200
2 +++ XGngeo-new/setup.py 2012-01-09 17:02:16.018982367 -0200
3 @@ -48,26 +48,28 @@
4 #ROM info.
5 (os.path.join("share", "xgngeo"),glob.glob(os.path.join("data", "rominfos.*"))),
6 #License text.
7 - (os.path.join("share", "xgngeo"),['LICENSE.txt']),
8 + # This license, GPL, is one of common licenses and therefore is part of
9 + # 'licenses' package - No need to install this file again.
10 + #(os.path.join("share", "xgngeo"),['LICENSE.txt']),
11 #Plain text documentation.
12 - (os.path.join("share", "xgngeo","doc"),[os.path.join("doc", "xgngeo-doc.txt")]),
13 + (os.path.join("share", "doc", "xgngeo"),[os.path.join("doc", "xgngeo-doc.txt")]),
14 # *.desktop (menu entry)
15 (os.path.join("share", "applications"), [os.path.join("data", "misc", "xgngeo.desktop")]),
16 #Localization files.
17 #Spanish
18 - (os.path.join("share", "xgngeo", "locale", "es", "LC_MESSAGES"),
19 + (os.path.join("share", "locale", "es", "LC_MESSAGES"),
20 [os.path.join("data", "locale", "es", "LC_MESSAGES", "xgngeo.mo")]),
21 #German
22 - (os.path.join("share", "xgngeo", "locale", "de", "LC_MESSAGES"),
23 + (os.path.join("share", "locale", "de", "LC_MESSAGES"),
24 [os.path.join("data", "locale", "de", "LC_MESSAGES", "xgngeo.mo")]),
25 #French
26 - (os.path.join("share", "xgngeo", "locale", "fr", "LC_MESSAGES"),
27 + (os.path.join("share", "locale", "fr", "LC_MESSAGES"),
28 [os.path.join("data", "locale", "fr", "LC_MESSAGES", "xgngeo.mo")]),
29 #Polish
30 - (os.path.join("share", "xgngeo", "locale", "pl", "LC_MESSAGES"),
31 + (os.path.join("share", "locale", "pl", "LC_MESSAGES"),
32 [os.path.join("data", "locale", "pl", "LC_MESSAGES", "xgngeo.mo")]),
33 #Portuguese of Brazil
34 - (os.path.join("share", "xgngeo", "locale", "pt_BR", "LC_MESSAGES"),
35 + (os.path.join("share", "locale", "pt_BR", "LC_MESSAGES"),
36 [os.path.join("data", "locale", "pt_BR", "LC_MESSAGES", "xgngeo.mo")])