summaryrefslogtreecommitdiffstats
path: root/live/draklive-install/po/Makefile
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2007-04-25 12:26:16 +0000
committerPascal Rigaux <pixel@mandriva.com>2007-04-25 12:26:16 +0000
commit126777bc019a54afb4ec51299f2cf9d2841698aa (patch)
tree97f76e571902ead55ba138f1156a4b4f00b9b779 /live/draklive-install/po/Makefile
parentf1f67448efc714873378dfeb8279fae68054a90a (diff)
downloaddrakx-backup-do-not-use-126777bc019a54afb4ec51299f2cf9d2841698aa.tar
drakx-backup-do-not-use-126777bc019a54afb4ec51299f2cf9d2841698aa.tar.gz
drakx-backup-do-not-use-126777bc019a54afb4ec51299f2cf9d2841698aa.tar.bz2
drakx-backup-do-not-use-126777bc019a54afb4ec51299f2cf9d2841698aa.tar.xz
drakx-backup-do-not-use-126777bc019a54afb4ec51299f2cf9d2841698aa.zip
re-sync after the big svn loss
Diffstat (limited to 'live/draklive-install/po/Makefile')
-rw-r--r--live/draklive-install/po/Makefile32
1 files changed, 0 insertions, 32 deletions
diff --git a/live/draklive-install/po/Makefile b/live/draklive-install/po/Makefile
deleted file mode 100644
index cf94c588b..000000000
--- a/live/draklive-install/po/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-NAME = draklive-install
-localedir = ${prefix}/share/locale
-PL_FILES = ../$(NAME) $(shell find .. -type f -name "*pm")
-
-MERGE_POFILES = $(shell for i in ../../../perl-install/share/po/*.po; do basename $$i; done)
-POFILES = $(wildcard *.po)
-MOFILES = $(POFILES:%.po=%.mo)
-LANGS = $(POFILES:%.po=%)
-
-all: $(NAME).pot $(POFILES) $(MOFILES)
-
-%.mo: %.po
- msgfmt -o $@ $<
-
-merge: $(NAME).pot
- @for n in $(MERGE_POFILES); do \
- echo "Merging $$n"; \
- msgmerge "$$n" $< > "$$n"t; \
- mv -f "$$n"t "$$n"; \
- done
-
-$(NAME).pot:
- perl_checker -q --generate-pot $@ $(PL_FILES)
-
-install: all
- for l in $(LANGS); do \
- install -d $(localedir)/$$l/LC_MESSAGES; \
- install -m 644 $$l.mo $(localedir)/$$l/LC_MESSAGES/$(NAME).mo; \
- done
-
-clean:
- @rm -rf *.mo $(POFILES:%=%t)