aboutsummaryrefslogtreecommitdiffstats
path: root/po/Makefile
diff options
context:
space:
mode:
authorDavid Kaspar [Dee'Kej] <dkaspar@redhat.com>2018-05-25 21:54:26 +0200
committerDee'Kej <deekej@linuxmail.org>2018-05-30 12:32:22 +0200
commit35d79ff3b264f12d2e9b3ad97303ecb435bb530e (patch)
tree1160d94493e591b39b6b7a7365430f9ee37787ff /po/Makefile
parent87db0f22359504a9d8bef2beb889de60830610be (diff)
downloadinitscripts-35d79ff3b264f12d2e9b3ad97303ecb435bb530e.tar
initscripts-35d79ff3b264f12d2e9b3ad97303ecb435bb530e.tar.gz
initscripts-35d79ff3b264f12d2e9b3ad97303ecb435bb530e.tar.bz2
initscripts-35d79ff3b264f12d2e9b3ad97303ecb435bb530e.tar.xz
initscripts-35d79ff3b264f12d2e9b3ad97303ecb435bb530e.zip
po/Makefile simplified & updated to new repository layout
po/initscripts.pot updated as well
Diffstat (limited to 'po/Makefile')
-rw-r--r--po/Makefile93
1 files changed, 43 insertions, 50 deletions
diff --git a/po/Makefile b/po/Makefile
index a5658ec8..5d1d711d 100644
--- a/po/Makefile
+++ b/po/Makefile
@@ -1,17 +1,37 @@
-INSTALL= /usr/bin/install -c
-INSTALL_PROGRAM= ${INSTALL}
-INSTALL_DATA= ${INSTALL} -m 644
-INSTALLNLSDIR=/usr/share/locale
-
-MSGMERGE = msgmerge
-
-NLSPACKAGE = initscripts
-
-CATALOGS = $(shell ls *.po)
+# Basic Makefile for compiling & installing the translation files.
+#
+# Supports standard GNU Makefile variables for specifying the paths:
+# * prefix
+# * sbindir
+# * libdir
+# * datarootdir
+# * datadir
+# * sysconfdir
+# * DESTDIR
+#
+
+SHELL = /bin/bash
+
+# Normally /usr/local is used. However, it does not make sense for us to use it
+# here, as it just complicates things even further.
+prefix = /usr
+sbindir = $(prefix)/sbin
+libdir = $(prefix)/lib
+datarootdir = $(prefix)/share
+datadir = $(datarootdir)
+sysconfdir = /etc
+
+NLSDIR = $(datadir)/locale
+NLSPACKAGE = initscripts
+
+CATALOGS = $(shell ls *.po)
FMTCATALOGS = $(patsubst %.po,%.mo,$(CATALOGS))
-POTFILES = $(shell ls ../sysconfig/network-scripts/* | grep -v ifcfg-) \
- ../service ../sys-unconfig ../systemd/fedora-* ../rc.d/init.d/*
+POTFILES = $(shell ls ../network-scripts/* | grep -v ifcfg-) \
+ ..$(sbindir)/service ..$(sbindir)/sys-unconfig \
+ ..$(libdir)/systemd/fedora-* \
+ ..$(sysconfdir)/rc.d/init.d/*\
+
all: $(NLSPACKAGE).pot $(FMTCATALOGS)
@@ -23,45 +43,18 @@ $(NLSPACKAGE).pot: $(POTFILES)
mv $(NLSPACKAGE).po $(NLSPACKAGE).pot; \
fi
-refresh-po: Makefile
- catalogs='$(CATALOGS)'; \
- for cat in $$catalogs; do \
- lang=`echo $$cat | sed 's/.po//'`; \
- if $(MSGMERGE) $$lang.po $(NLSPACKAGE).pot > $$lang.pot ; then \
- mv -f $$lang.pot $$lang.po ; \
- echo "$(MSGMERGE) of $$lang succeeded" ; \
- else \
- echo "$(MSGMERGE) of $$lang failed" ; \
- rm -f $$lang.pot ; \
- fi \
- done
-
-update-po: $(NLSPACKAGE).pot Makefile refresh-po
+%.mo: %.po
+ msgfmt -o $@ $<
-report:
- @for cat in $(CATALOGS); do \
- echo -n "$$cat: "; \
- msgfmt -v --statistics -o /dev/null $$cat; \
+install: all
+ install -m 0755 -d $(DESTDIR)/$(NLSDIR)
+ for file in $(CATALOGS); do \
+ lang=`basename $$file .po`; \
+ mo_file=$$lang.mo; \
+ install -m 0755 -d $(DESTDIR)$(NLSDIR)/$$lang; \
+ install -m 0755 -d $(DESTDIR)$(NLSDIR)/$$lang/LC_MESSAGES; \
+ install -m 0644 $$mo_file $(DESTDIR)/$(NLSDIR)/$$lang/LC_MESSAGES/$(NLSPACKAGE).mo; \
done
clean:
- rm -f *mo *.pyc
-
-distclean: clean
- rm -f .depend Makefile
-
-depend:
-
-install: all
- mkdir -p $(PREFIX)/$(INSTALLNLSDIR)
- for n in $(CATALOGS); do \
- l=`basename $$n .po`; \
- mo=$$l.mo; \
- $(INSTALL) -m 755 -d $(PREFIX)/$(INSTALLNLSDIR)/$$l; \
- $(INSTALL) -m 755 -d $(PREFIX)/$(INSTALLNLSDIR)/$$l/LC_MESSAGES; \
- $(INSTALL) -m 644 $$mo \
- $(PREFIX)/$(INSTALLNLSDIR)/$$l/LC_MESSAGES/$(NLSPACKAGE).mo; \
- done
-
-%.mo: %.po
- msgfmt -o $@ $<
+ rm -f *.mo *.pyc