aboutsummaryrefslogtreecommitdiff
path: root/nls/ja_JP
diff options
context:
space:
mode:
Diffstat (limited to 'nls/ja_JP')
-rw-r--r--nls/ja_JP/Makefile.am19
1 files changed, 12 insertions, 7 deletions
diff --git a/nls/ja_JP/Makefile.am b/nls/ja_JP/Makefile.am
index 9a4d97a..dcaf37b 100644
--- a/nls/ja_JP/Makefile.am
+++ b/nls/ja_JP/Makefile.am
@@ -1,3 +1,8 @@
1# nls/ja_JP/Makefile.am for Fluxbox - an X11 Window Manager
2
3THE_LANG = ja_JP
4CODESET = eucJP
5
1NLSTEST = @NLS@ 6NLSTEST = @NLS@
2CLEANFILES = fluxbox.cat 7CLEANFILES = fluxbox.cat
3MAINTAINERCLEANFILES = Makefile.in Translation.m 8MAINTAINERCLEANFILES = Makefile.in Translation.m
@@ -6,23 +11,23 @@ EXTRA_DIST=$(MFILES)
6all-local: fluxbox.cat 11all-local: fluxbox.cat
7install-data-local: fluxbox.cat 12install-data-local: fluxbox.cat
8 @if test x$(NLSTEST) = "x-DNLS"; then \ 13 @if test x$(NLSTEST) = "x-DNLS"; then \
9 echo "Installing catalog in $(DESTDIR)$(pkgdatadir)/nls/ja_JP"; \ 14 echo "Installing catalog in $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG)"; \
10 $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/nls/ja_JP; \ 15 $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \
11 $(INSTALL_DATA) fluxbox.cat $(DESTDIR)$(pkgdatadir)/nls/ja_JP; \ 16 $(INSTALL_DATA) fluxbox.cat $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \
12 fi 17 fi
13uninstall-local: 18uninstall-local:
14 @if test x$(NLSTEST) = "x-DNLS"; then \ 19 @if test x$(NLSTEST) = "x-DNLS"; then \
15 rm -f $(DESTDIR)$(pkgdatadir)/nls/ja_JP/fluxbox.cat; \ 20 rm -f $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG)/fluxbox.cat; \
16 rmdir $(DESTDIR)$(pkgdatadir)/nls/ja_JP; \ 21 rmdir $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \
17 fi 22 fi
18 23
19Translation.m: $(MFILES) 24Translation.m: $(MFILES)
20 @if test x$(NLSTEST) = "x-DNLS"; then \ 25 @if test x$(NLSTEST) = "x-DNLS"; then \
21 rm -f Translation.m; \ 26 rm -f Translation.m; \
22 awk -f ../convert.awk output=Translation.m $(MFILES); \ 27 awk -f ../convert.awk codeset=$(CODESET) output=Translation.m $(MFILES); \
23 fi 28 fi
24 29
25fluxbox.cat: Translation.m 30fluxbox.cat: Translation.m
26 @if test x$(NLSTEST) = "x-DNLS"; then \ 31 @if test x$(NLSTEST) = "x-DNLS"; then \
27 LANG=ja_JP $(gencat_cmd) fluxbox.cat Translation.m; \ 32 LANG=$(THE_LANG) $(gencat_cmd) fluxbox.cat Translation.m; \
28 fi 33 fi