]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - po/Makefile
glibc 2.21 pre-release update.
[thirdparty/glibc.git] / po / Makefile
index 087be9dc6360aec57249f4b993b6f227e8fe4b86..28f0f5ba6d54f5bd20e5394e570e6e0b056ea8a5 100644 (file)
@@ -1,27 +1,31 @@
-# Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+# Copyright (C) 1996-2015 Free Software Foundation, Inc.
 # This file is part of the GNU C Library.
 
 # The GNU C Library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Library General Public License
-# as published by the Free Software Foundation; either version 2 of
-# the License, or (at your option) any later version.
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
 
 # The GNU C Library is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Library General Public License for more details.
+# Lesser General Public License for more details.
 
-# You should have received a copy of the GNU Library General Public
-# License along with the GNU C Library; see the file COPYING.LIB.  If not,
-# write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-# Boston, MA 02111-1307, USA.
+# You should have received a copy of the GNU Lesser General Public
+# License along with the GNU C Library; if not, see
+# <http://www.gnu.org/licenses/>.
 
 # Makefile for installing libc message catalogs.
 
 subdir := po
 
+include ../Makeconfig
+
+# Add names of the languages with broken .po files here.
+BROKEN_LINGUAS =
+
 # List of languages for which we have message catalogs of translations.
-ALL_LINGUAS := $(basename $(wildcard *.po))
+ALL_LINGUAS := $(filter-out $(BROKEN_LINGUAS),$(basename $(wildcard *.po)))
 
 # You can override this in configparms or the make command line to limit
 # the languages which get installed.
@@ -34,22 +38,43 @@ endif
 # Text domain name to install under; must match ../locale/SYS_libc.c string.
 domainname = libc
 
-all: # Make this the default target; it will be defined in Rules.
-
-include ../Makeconfig
-
 # Pattern for where message catalog object for language % gets installed.
 mo-installed = $(inst_msgcatdir)/%/LC_MESSAGES/$(domainname).mo
 
 # Files to install: a $(domainname).mo file for each language.
 install-others = $(LINGUAS:%=$(mo-installed))
 
-# Files to distribute: all the source and compiled binary translation files.
-distribute = $(ALL_LINGUAS:=.po) $(ALL_LINGUAS:=.mo) libc.pot header.pot
-
 
 include ../Rules
 
+# Generate the translation template from all the source files.
+libc.pot: pot.header libc.pot.files
+       @rm -f $@.new
+       set `date -R`; disp="$$6"; \
+       sed -e 's/VERSION/$(version)/' \
+           -e "s/DATE/`date +'%Y-%m-%d %H:%M'$$disp`/" \
+           -e "s/CHARSET/UTF-8/" \
+           $< > $@.new
+       egrep -v '\.ksh$$' $(word 2,$^) > $(objdir)/tmp-libc.pot-files
+       cd ..; $(XGETTEXT) --keyword=_ --keyword=N_ \
+                          --add-comments=TRANS --flag=error:3:c-format \
+                          --flag=f_print:2:c-format \
+                          --sort-by-file --omit-header -E -n -d - \
+                          -f $(objdir)/tmp-libc.pot-files >> po/$@.new
+       egrep '\.ksh$$' $(word 2,$^) > $(objdir)/tmp-libc.pot-files
+       cd ..; $(XGETTEXT) --add-comments=TRANS --language=Shell \
+                          --sort-by-file --omit-header -E -n -o po/$@.new -j \
+                          -f $(objdir)/tmp-libc.pot-files po/$@.new
+       rm $(objdir)/tmp-libc.pot-files
+       mv -f $@.new $@
+
+po-sed-cmd = \
+  '/\/tst-/d;$(foreach S,[ch] cxx sh ksh bash,$(subst .,\.,/.$S\(.in\)*$$/p;))'
+
+# Omit tst-* files, and get only files with the given suffixes.
+libc.pot.files: FORCE
+       $(..)scripts/list-sources.sh .. | sed -n $(po-sed-cmd) > $@.new
+       mv -f $@.new $@
 
 .SUFFIXES: .mo .po .pot
 
@@ -81,9 +106,6 @@ ifneq (,$(pofiles))
        chmod 444 $@
 
 linguas: $(pofiles:$(podir)/%=%)
-ifeq ($(with-cvs),yes)
-       test ! -d CVS || cvs $(CVSOPTS) commit -m'Copied from $(podir)' $^
-endif
 linguas.mo: $(pofiles:$(podir)/%.po=%.mo)
 
 endif