1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
# vim:set noet ts=4:
#
# ibus-anthy - The Anthy engine for IBus
#
# Copyright (c) 2010-2026 Takao Fujiwara <takao.fujiwara1@gmail.com>
# Copyright (c) 2010-2018 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.
noinst_DATA = era.stamp
dicts_DATA = \
emoji.t \
era.t \
oldchar.t \
symbol.t \
$(NULL)
dictsdir = $(pkgdatadir)/dicts
# rf. i18n metainfo.xml
# http://www.freedesktop.org/software/appstream/docs/sect-Quickstart-Translation.html
# https://blogs.gnome.org/hughsie/2016/01/25/appdata-and-the-gettext-domain/
metainfo_in_files = ibus-anthy.appdata.xml.in
metainfo_DATA = org.freedesktop.ibus.engine.anthy.metainfo.xml
metainfodir=$(datadir)/metainfo
schemas_in_files = org.freedesktop.ibus.engine.anthy.gschema.xml.in
schemas_DATA = $(schemas_in_files:.xml.in=.xml)
schemasdir = $(datadir)/glib-2.0/schemas
CLEANFILES = \
$(metainfo_DATA) \
$(schemas_DATA) \
emoji.t \
era.stamp \
$(NULL)
$(metainfo_DATA): $(metainfo_in_files) Makefile
$(AM_V_GEN)$(MSGFMT) --xml --template $< -d $(top_srcdir)/po -o $@
$(schemas_DATA): $(schemas_in_files)
KASUMI_EXEC_BASENAME=`basename $(KASUMI_EXEC_FILE)`; \
$(SED) -e "s|\@ANTHY_ZIPCODE_FILE\@|$(ANTHY_ZIPCODE_FILE)|g" \
-e "s|\@KASUMI_EXEC_FILE\@|$(KASUMI_EXEC_FILE)|g" \
-e "s|\@KASUMI_EXEC_BASENAME\@|$$KASUMI_EXEC_BASENAME|g" \
-e "s|\@KASUMI_ICON_FILE\@|$(KASUMI_ICON_FILE)|g" \
-e "s|\@ON_OFF_KEYS\@|$(ON_OFF_KEYS)|g" \
-e "s|\@pkgdatadir\@|$(pkgdatadir)|g" \
$< > $@
emoji.t: emoji-each.t emoji-emoji.t
@echo "Generate $@"; \
$(SED) -e '/^#/d' $(srcdir)/emoji-emoji.t > emoji-emoji.t.$$$$; \
$(SED) -e "/^#@EMOJI_EMOJI@/r emoji-emoji.t.$$$$" \
$(srcdir)/emoji-each.t > emoji-each.t.$$$$; \
$(SED) -e '/^#@EMOJI_EMOJI@/d' emoji-each.t.$$$$ > emoji.t; \
rm emoji-emoji.t.$$$$ emoji-each.t.$$$$; \
$(NULL)
if ENABLE_ZIPCODE
dicts_DATA += zipcode.t
zipcode.t: $(ANTHY_ZIPCODE_FILE)
@echo "Generate $@"; \
$(PYTHON) zipcode-textdic.py $<; \
$(NULL)
CLEANFILES += zipcode.t
endif
era.t: era.stamp
era.stamp:
if test -f $(srcdir)/era.t ; then \
if ! $(srcdir)/era.py --check $(srcdir)/era.t ; then \
rm $(srcdir)/era.t; \
$(srcdir)/era.py $(srcdir)/era.t.in \
--output $(builddir)/era.t; \
echo "Generate era.t"; \
fi; \
fi; \
touch era.stampT; \
mv era.stampT era.stamp;
check:
if test -f $(srcdir)/era.t ; then \
$(srcdir)/era.py --check $(srcdir)/era.t; \
else \
$(srcdir)/era.py --check $(builddir)/era.t; \
fi
install-data-hook:
if test -z "$(DESTDIR)"; then \
glib-compile-schemas $(schemasdir); \
fi
uninstall-hook:
SCHEMAS_FILES=`ls $(schemasdir)/*.gschema.xml` || true; \
if test -z "$$SCHEMAS_FILES" && \
test -f $(schemasdir)/gschemas.compiled; then \
rm $(schemasdir)/gschemas.compiled; \
fi
EXTRA_DIST = \
$(metainfo_in_files) \
$(schemas_in_files) \
emoji-each.t \
emoji-emoji.t \
era.t \
era.t.in \
era.py \
oldchar.t \
symbol.t \
zipcode-textdic.py \
$(NULL)
|