mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-21 22:53:37 +00:00
Run this command across the source:
perl -pi.bak -e 's/(20[012][0-9])-20[12][012]/$1-2023/g' `git ls-files`
and remove changes to po{,-docs}/*.po{,t} (these will be regenerated
later when we run 'make dist').
90 lines
2.6 KiB
Makefile
90 lines
2.6 KiB
Makefile
# libguestfs
|
|
# Copyright (C) 2009-2023 Red Hat Inc.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program 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 General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
include $(top_srcdir)/subdir-rules.mk
|
|
|
|
DOMAIN = $(PACKAGE_NAME)
|
|
COPYRIGHT_HOLDER = Red Hat Inc.
|
|
MSGID_BUGS_ADDRESS = https://bugzilla.redhat.com/enter_bug.cgi?component=libguestfs&product=Virtualization+Tools
|
|
|
|
# Languages.
|
|
# Don't use LINGUAS (uppercase) as Gentoo defines it (RHBZ#804464).
|
|
linguas := $(shell cat $(srcdir)/LINGUAS)
|
|
|
|
POTFILES := $(shell $(SED) 's,^,$(top_srcdir)/,' $(srcdir)/POTFILES)
|
|
POFILES := $(linguas:%=%.po)
|
|
GMOFILES := $(linguas:%=%.gmo)
|
|
|
|
EXTRA_DIST = \
|
|
LINGUAS \
|
|
POTFILES \
|
|
$(DOMAIN).pot \
|
|
$(POFILES) \
|
|
$(GMOFILES)
|
|
|
|
if HAVE_GNU_GETTEXT
|
|
|
|
XGETTEXT_ARGS = \
|
|
--default-domain=$(DOMAIN) \
|
|
--from-code=utf-8 \
|
|
--add-comments=TRANSLATORS: \
|
|
--keyword=_ --keyword=N_ --keyword=__ --keyword=__x \
|
|
--flag=error:3:c-format \
|
|
--flag=error_at_line:5:c-format \
|
|
--flag=asprintf:2:c-format \
|
|
--flag=vasprintf:2:c-format \
|
|
--flag=xasprintf:1:c-format \
|
|
--copyright-holder='$(COPYRIGHT_HOLDER)' \
|
|
--package-name="$(PACKAGE_NAME)" \
|
|
--package-version="$(PACKAGE_VERSION)" \
|
|
--msgid-bugs-address="$(MSGID_BUGS_ADDRESS)" \
|
|
--directory=$(top_srcdir)
|
|
|
|
# For explanation, see
|
|
# http://mingw-users.1079350.n2.nabble.com/Getting-rid-of-xgettext-s-quot-CHARSET-quot-warning-td5620533.html
|
|
FIX_CHARSET = \
|
|
$(SED) -i 's|text/plain; charset=CHARSET|text/plain; charset=utf-8|g'
|
|
|
|
$(DOMAIN).pot: Makefile POTFILES $(POTFILES)
|
|
rm -f $@-t
|
|
touch $@-t
|
|
$(XGETTEXT) -j -o $@-t $(XGETTEXT_ARGS) \
|
|
--files-from=$(abs_srcdir)/POTFILES
|
|
$(FIX_CHARSET) $@-t
|
|
mv $@-t $@
|
|
|
|
.po.gmo:
|
|
rm -f $@ $@-t
|
|
$(MSGFMT) -c -o $@-t $(srcdir)/$<
|
|
mv $@-t $@
|
|
|
|
# Install.
|
|
# Cannot use 'localedir' since this conflicts with autoconf.
|
|
langinstdir = $(datadir)/locale
|
|
|
|
install-data-hook: $(GMOFILES)
|
|
mkdir -p $(DESTDIR)$(langinstdir)
|
|
for lang in $(linguas); do \
|
|
d=$(DESTDIR)$(langinstdir)/$$lang/LC_MESSAGES; \
|
|
mkdir -p $$d; \
|
|
install -m 0644 $$lang.gmo $$d/$(DOMAIN).mo; \
|
|
done
|
|
|
|
.PRECIOUS: $(DOMAIN).pot $(POFILES)
|
|
|
|
endif
|