build: remove intltool dependency
This commit is contained in:
parent
1aaeeb8214
commit
269ba69e6d
14 changed files with 181 additions and 102 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -55,9 +55,6 @@ INSTALL
|
||||||
config.rpath
|
config.rpath
|
||||||
data/gnome-contacts-search-provider.ini
|
data/gnome-contacts-search-provider.ini
|
||||||
data/gnome-contacts.desktop
|
data/gnome-contacts.desktop
|
||||||
data/gnome-contacts.desktop.in
|
|
||||||
data/org.gnome.Contacts.search-provider.ini
|
|
||||||
data/org.gnome.Contacts.search-provider.ini.in
|
|
||||||
data/org.gnome.Contacts.SearchProvider.service
|
data/org.gnome.Contacts.SearchProvider.service
|
||||||
data/gnome-contacts.appdata.xml
|
data/gnome-contacts.appdata.xml
|
||||||
po/Makevars.template
|
po/Makevars.template
|
||||||
|
@ -69,6 +66,5 @@ po/insert-header.sin
|
||||||
po/quot.sed
|
po/quot.sed
|
||||||
po/remove-potcdate.sin
|
po/remove-potcdate.sin
|
||||||
data/org.gnome.Contacts.desktop
|
data/org.gnome.Contacts.desktop
|
||||||
data/org.gnome.Contacts.desktop.in
|
|
||||||
data/org.gnome.Contacts.service
|
data/org.gnome.Contacts.service
|
||||||
data/org.gnome.Contacts.appdata.xml
|
data/org.gnome.Contacts.appdata.xml
|
||||||
|
|
13
Makefile.am
13
Makefile.am
|
@ -1,16 +1,13 @@
|
||||||
ACLOCAL_AMFLAGS = -I m4 -I libgd ${ACLOCAL_FLAGS}
|
ACLOCAL_AMFLAGS = -I m4 -I libgd ${ACLOCAL_FLAGS}
|
||||||
NULL=
|
NULL=
|
||||||
SUBDIRS = libgd src vapi data po
|
SUBDIRS = libgd vapi src data po
|
||||||
if BUILD_MAN_PAGES
|
if BUILD_MAN_PAGES
|
||||||
SUBDIRS += man
|
SUBDIRS += man
|
||||||
endif
|
endif
|
||||||
DIST_SUBDIRS = libgd src vapi data po man
|
DIST_SUBDIRS = libgd vapi src data po man
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
autogen.sh \
|
autogen.sh \
|
||||||
intltool-extract.in \
|
|
||||||
intltool-merge.in \
|
|
||||||
intltool-update.in \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
ChangeLog:
|
ChangeLog:
|
||||||
|
@ -32,12 +29,6 @@ distclean-local:
|
||||||
rm -f ChangeLog; \
|
rm -f ChangeLog; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
DISTCLEANFILES = \
|
|
||||||
intltool-extract \
|
|
||||||
intltool-merge \
|
|
||||||
intltool-update
|
|
||||||
|
|
||||||
MAINTAINERCLEANFILES = \
|
MAINTAINERCLEANFILES = \
|
||||||
$(srcdir)/aclocal.m4 \
|
$(srcdir)/aclocal.m4 \
|
||||||
$(srcdir)/autoscan.log \
|
$(srcdir)/autoscan.log \
|
||||||
|
|
41
autogen.sh
41
autogen.sh
|
@ -1,6 +1,39 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
mkdir -p m4
|
# Run this to generate all the initial makefiles, etc.
|
||||||
autopoint --force
|
test -n "$srcdir" || srcdir=$(dirname "$0")
|
||||||
|
test -n "$srcdir" || srcdir=.
|
||||||
|
|
||||||
|
olddir=$(pwd)
|
||||||
|
|
||||||
|
cd $srcdir
|
||||||
|
|
||||||
|
(test -f configure.ac) || {
|
||||||
|
echo "*** ERROR: Directory '$srcdir' does not look like the top-level project directory ***"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
# shellcheck disable=SC2016
|
||||||
|
PKG_NAME=$(autoconf --trace 'AC_INIT:$1' configure.ac)
|
||||||
|
|
||||||
|
if [ "$#" = 0 -a "x$NOCONFIGURE" = "x" ]; then
|
||||||
|
echo "*** WARNING: I am going to run 'configure' with no arguments." >&2
|
||||||
|
echo "*** If you wish to pass any to it, please specify them on the" >&2
|
||||||
|
echo "*** '$0' command line." >&2
|
||||||
|
echo "" >&2
|
||||||
|
fi
|
||||||
|
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
AUTOPOINT='intltoolize --automake --copy' autoreconf -fiv -Wall || exit
|
|
||||||
test -n "$NOCONFIGURE" || ./configure "$@"
|
aclocal --install || exit 1
|
||||||
|
autoreconf --verbose --force --install || exit 1
|
||||||
|
|
||||||
|
cd "$olddir"
|
||||||
|
if [ "$NOCONFIGURE" = "" ]; then
|
||||||
|
$srcdir/configure "$@" || exit 1
|
||||||
|
|
||||||
|
if [ "$1" = "--help" ]; then exit 0 else
|
||||||
|
echo "Now type 'make' to compile $PKG_NAME" || exit 1
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "Skipping configure process."
|
||||||
|
fi
|
||||||
|
|
45
configure.ac
45
configure.ac
|
@ -3,39 +3,26 @@ AC_INIT([gnome-contacts],[3.22.1],[http://bugzilla.gnome.org/enter_bug.cgi?produ
|
||||||
AC_CONFIG_SRCDIR([src/main.vala])
|
AC_CONFIG_SRCDIR([src/main.vala])
|
||||||
AC_CONFIG_HEADERS([config.h])
|
AC_CONFIG_HEADERS([config.h])
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
AM_INIT_AUTOMAKE([tar-ustar dist-xz no-dist-gzip])
|
AM_INIT_AUTOMAKE([tar-ustar dist-xz no-dist-gzip -Wno-portability])
|
||||||
|
|
||||||
# Enable silent rules is available
|
# Enable silent rules is available
|
||||||
AM_SILENT_RULES([yes])
|
AM_SILENT_RULES([yes])
|
||||||
|
|
||||||
AC_CONFIG_FILES([Makefile
|
|
||||||
libgd/Makefile
|
|
||||||
vapi/Makefile
|
|
||||||
src/Makefile
|
|
||||||
man/Makefile
|
|
||||||
data/Makefile
|
|
||||||
data/org.gnome.Contacts.desktop.in
|
|
||||||
data/org.gnome.Contacts.search-provider.ini.in
|
|
||||||
po/Makefile.in
|
|
||||||
])
|
|
||||||
|
|
||||||
LT_INIT
|
|
||||||
AC_PROG_CC
|
|
||||||
AM_PROG_VALAC([0.24.0])
|
|
||||||
AC_PROG_INSTALL
|
|
||||||
|
|
||||||
GLIB_GSETTINGS
|
|
||||||
|
|
||||||
# i18n stuff
|
|
||||||
IT_PROG_INTLTOOL([0.40])
|
|
||||||
|
|
||||||
AM_GNU_GETTEXT([external])
|
|
||||||
AM_GNU_GETTEXT_VERSION([0.17])
|
|
||||||
|
|
||||||
GETTEXT_PACKAGE=gnome-contacts
|
GETTEXT_PACKAGE=gnome-contacts
|
||||||
AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], ["$GETTEXT_PACKAGE"], [Gettext Package])
|
AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], ["$GETTEXT_PACKAGE"], [Gettext Package])
|
||||||
AC_SUBST(GETTEXT_PACKAGE)
|
AC_SUBST(GETTEXT_PACKAGE)
|
||||||
|
|
||||||
|
AM_GNU_GETTEXT_VERSION([0.19.7])
|
||||||
|
AM_GNU_GETTEXT([external])
|
||||||
|
|
||||||
|
LT_INIT
|
||||||
|
AC_PROG_CC
|
||||||
|
AM_PROG_VALAC([0.24.0])
|
||||||
|
AC_PROG_INSTALL
|
||||||
|
AC_PATH_PROG([GLIB_GENMARSHAL],[glib-genmarshal])
|
||||||
|
AC_PATH_PROG([GLIB_MKENUMS],[glib-mkenums])
|
||||||
|
AC_PATH_PROG([GLIB_COMPILE_RESOURCES],[glib-compile-resources])
|
||||||
|
GLIB_GSETTINGS
|
||||||
|
|
||||||
pkg_modules="gtk+-3.0 >= 3.20.0
|
pkg_modules="gtk+-3.0 >= 3.20.0
|
||||||
glib-2.0 >= 2.37.6
|
glib-2.0 >= 2.37.6
|
||||||
|
@ -112,6 +99,14 @@ AS_IF([test "x$enable_man_pages" != "xno"],
|
||||||
|
|
||||||
AM_CONDITIONAL([BUILD_MAN_PAGES], [test "x$have_manutils" = "xyes"])
|
AM_CONDITIONAL([BUILD_MAN_PAGES], [test "x$have_manutils" = "xyes"])
|
||||||
|
|
||||||
|
AC_CONFIG_FILES([Makefile
|
||||||
|
libgd/Makefile
|
||||||
|
vapi/Makefile
|
||||||
|
src/Makefile
|
||||||
|
man/Makefile
|
||||||
|
data/Makefile
|
||||||
|
po/Makefile.in
|
||||||
|
])
|
||||||
|
|
||||||
dnl libgd
|
dnl libgd
|
||||||
LIBGD_INIT([
|
LIBGD_INIT([
|
||||||
|
|
|
@ -1,21 +1,22 @@
|
||||||
NULL=
|
NULL =
|
||||||
|
|
||||||
|
org.gnome.Contacts.desktop: org.gnome.Contacts.desktop.in
|
||||||
|
$(AM_V_GEN)$(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@
|
||||||
desktopdir = $(datadir)/applications
|
desktopdir = $(datadir)/applications
|
||||||
desktop_in_files = org.gnome.Contacts.desktop.in
|
desktop_DATA = org.gnome.Contacts.desktop
|
||||||
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
|
|
||||||
|
org.gnome.Contacts.appdata.xml: org.gnome.Contacts.appdata.xml.in
|
||||||
|
$(AM_V_GEN)$(MSGFMT) --xml --template $< -d $(top_srcdir)/po -o $@
|
||||||
|
appdatadir = $(datadir)/appdata
|
||||||
|
appdata_DATA = org.gnome.Contacts.appdata.xml
|
||||||
|
|
||||||
searchproviderdir = $(datadir)/gnome-shell/search-providers
|
searchproviderdir = $(datadir)/gnome-shell/search-providers
|
||||||
searchprovider_DATA = org.gnome.Contacts.search-provider.ini
|
searchprovider_DATA = org.gnome.Contacts.search-provider.ini
|
||||||
|
|
||||||
%.ini: %.ini.in
|
|
||||||
LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@
|
|
||||||
|
|
||||||
@INTLTOOL_DESKTOP_RULE@
|
|
||||||
|
|
||||||
service_in_files = org.gnome.Contacts.SearchProvider.service.in
|
|
||||||
|
|
||||||
servicedir = $(datadir)/dbus-1/services
|
servicedir = $(datadir)/dbus-1/services
|
||||||
service_DATA = $(service_in_files:.service.in=.service) org.gnome.Contacts.service
|
service_DATA = \
|
||||||
|
org.gnome.Contacts.SearchProvider.service \
|
||||||
|
org.gnome.Contacts.service
|
||||||
|
|
||||||
%.service: %.service.in Makefile
|
%.service: %.service.in Makefile
|
||||||
$(AM_V_GEN) [ -d $(@D) ] || $(mkdir_p) $(@D) ; \
|
$(AM_V_GEN) [ -d $(@D) ] || $(mkdir_p) $(@D) ; \
|
||||||
|
@ -27,29 +28,28 @@ org.gnome.Contacts.service:
|
||||||
echo 'Exec=${bindir}/gnome-contacts --gapplication-service') > $@.tmp && \
|
echo 'Exec=${bindir}/gnome-contacts --gapplication-service') > $@.tmp && \
|
||||||
mv $@.tmp $@
|
mv $@.tmp $@
|
||||||
|
|
||||||
@INTLTOOL_XML_RULE@
|
|
||||||
appdatadir = $(datadir)/appdata
|
|
||||||
appdata_DATA = $(appdata_in_files:.xml.in=.xml)
|
|
||||||
appdata_in_files = org.gnome.Contacts.appdata.xml.in
|
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
org.gnome.Contacts.desktop.in.in \
|
org.gnome.Contacts.desktop.in \
|
||||||
org.gnome.Contacts.search-provider.ini.in.in \
|
org.gnome.Contacts.appdata.xml.in \
|
||||||
|
org.gnome.Contacts.search-provider.ini \
|
||||||
|
org.gnome.Contacts.SearchProvider.service.in \
|
||||||
contacts.gresource.xml \
|
contacts.gresource.xml \
|
||||||
ui/app-menu.ui \
|
ui/app-menu.ui \
|
||||||
ui/contacts-address-map.ui \
|
ui/contacts-address-map.ui \
|
||||||
ui/contacts-window.ui \
|
ui/contacts-window.ui \
|
||||||
ui/contacts-list-pane.ui \
|
ui/contacts-list-pane.ui \
|
||||||
ui/style.css \
|
ui/style.css \
|
||||||
$(appdata_in_files) \
|
|
||||||
$(service_in_files) \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
CLEANFILES = $(service_DATA) \
|
CLEANFILES = \
|
||||||
|
$(service_DATA) \
|
||||||
|
org.gnome.Contacts.desktop \
|
||||||
|
org.gnome.Contacts.appdata.xml \
|
||||||
|
org.gnome.Contacts.SearchProvider.service \
|
||||||
$(appdata_DATA)
|
$(appdata_DATA)
|
||||||
|
|
||||||
DISTCLEANFILES = \
|
DISTCLEANFILES = \
|
||||||
org.gnome.Contacts.desktop \
|
org.gnome.Contacts.desktop \
|
||||||
org.gnome.Contacts.search-provider.ini \
|
org.gnome.Contacts.appdata.xml \
|
||||||
gnome-contacts.desktop \
|
org.gnome.Contacts.SearchProvider.service
|
||||||
gnome-contacts.desktop.in
|
|
||||||
|
|
|
@ -3,19 +3,19 @@
|
||||||
<id>org.gnome.Contacts.desktop</id>
|
<id>org.gnome.Contacts.desktop</id>
|
||||||
<metadata_license>CC0-1.0</metadata_license>
|
<metadata_license>CC0-1.0</metadata_license>
|
||||||
<project_license>GPL-2.0+</project_license>
|
<project_license>GPL-2.0+</project_license>
|
||||||
<_name>GNOME Contacts</_name>
|
<name>GNOME Contacts</name>
|
||||||
<_summary>A contacts manager for GNOME</_summary>
|
<summary>A contacts manager for GNOME</summary>
|
||||||
<description>
|
<description>
|
||||||
<_p>
|
<p>
|
||||||
Contacts keeps and organize your contacts information. You can create,
|
Contacts keeps and organize your contacts information. You can create,
|
||||||
edit, delete and link together pieces of information about your contacts.
|
edit, delete and link together pieces of information about your contacts.
|
||||||
Contacts aggregates the details from all your sources providing a
|
Contacts aggregates the details from all your sources providing a
|
||||||
centralized place for managing your contacts.
|
centralized place for managing your contacts.
|
||||||
</_p>
|
</p>
|
||||||
<_p>
|
<p>
|
||||||
Contacts will also integrate with online address books and automatically
|
Contacts will also integrate with online address books and automatically
|
||||||
link contacts from different online sources.
|
link contacts from different online sources.
|
||||||
</_p>
|
</p>
|
||||||
</description>
|
</description>
|
||||||
<screenshots>
|
<screenshots>
|
||||||
<screenshot height="575" width="800" type="default">
|
<screenshot height="575" width="800" type="default">
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
_Name=Contacts
|
Name=Contacts
|
||||||
_Comment=A contacts manager for GNOME
|
Comment=A contacts manager for GNOME
|
||||||
_Keywords=friends;address book;
|
Keywords=friends;address book;
|
||||||
Icon=x-office-address-book
|
Icon=x-office-address-book
|
||||||
Exec=gnome-contacts
|
Exec=gnome-contacts
|
||||||
Terminal=false
|
Terminal=false
|
|
@ -1,6 +1,4 @@
|
||||||
[Shell Search Provider]
|
[Shell Search Provider]
|
||||||
_Title=GNOME Contacts
|
|
||||||
Icon=x-office-address-book
|
|
||||||
DesktopId=org.gnome.Contacts.desktop
|
DesktopId=org.gnome.Contacts.desktop
|
||||||
BusName=org.gnome.Contacts.SearchProvider
|
BusName=org.gnome.Contacts.SearchProvider
|
||||||
ObjectPath=/org/gnome/Contacts/SearchProvider
|
ObjectPath=/org/gnome/Contacts/SearchProvider
|
78
po/Makevars
Normal file
78
po/Makevars
Normal file
|
@ -0,0 +1,78 @@
|
||||||
|
# Makefile variables for PO directory in any package using GNU gettext.
|
||||||
|
|
||||||
|
# Usually the message domain is the same as the package name.
|
||||||
|
DOMAIN = $(PACKAGE)
|
||||||
|
|
||||||
|
# These two variables depend on the location of this directory.
|
||||||
|
subdir = po
|
||||||
|
top_builddir = ..
|
||||||
|
|
||||||
|
# These options get passed to xgettext.
|
||||||
|
XGETTEXT_OPTIONS = --from-code=UTF-8 --keyword=_ --keyword=N_ --keyword=C_:1c,2 --keyword=NC_:1c,2 --keyword=g_dngettext:2,3 --add-comments
|
||||||
|
|
||||||
|
# This is the copyright holder that gets inserted into the header of the
|
||||||
|
# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding
|
||||||
|
# package. (Note that the msgstr strings, extracted from the package's
|
||||||
|
# sources, belong to the copyright holder of the package.) Translators are
|
||||||
|
# expected to transfer the copyright for their translations to this person
|
||||||
|
# or entity, or to disclaim their copyright. The empty string stands for
|
||||||
|
# the public domain; in this case the translators are expected to disclaim
|
||||||
|
# their copyright.
|
||||||
|
COPYRIGHT_HOLDER = Free Software Foundation, Inc.
|
||||||
|
|
||||||
|
# This tells whether or not to prepend "GNU " prefix to the package
|
||||||
|
# name that gets inserted into the header of the $(DOMAIN).pot file.
|
||||||
|
# Possible values are "yes", "no", or empty. If it is empty, try to
|
||||||
|
# detect it automatically by scanning the files in $(top_srcdir) for
|
||||||
|
# "GNU packagename" string.
|
||||||
|
PACKAGE_GNU =
|
||||||
|
|
||||||
|
# This is the email address or URL to which the translators shall report
|
||||||
|
# bugs in the untranslated strings:
|
||||||
|
# - Strings which are not entire sentences, see the maintainer guidelines
|
||||||
|
# in the GNU gettext documentation, section 'Preparing Strings'.
|
||||||
|
# - Strings which use unclear terms or require additional context to be
|
||||||
|
# understood.
|
||||||
|
# - Strings which make invalid assumptions about notation of date, time or
|
||||||
|
# money.
|
||||||
|
# - Pluralisation problems.
|
||||||
|
# - Incorrect English spelling.
|
||||||
|
# - Incorrect formatting.
|
||||||
|
# It can be your email address, or a mailing list address where translators
|
||||||
|
# can write to without being subscribed, or the URL of a web page through
|
||||||
|
# which the translators can contact you.
|
||||||
|
MSGID_BUGS_ADDRESS =
|
||||||
|
|
||||||
|
# This is the list of locale categories, beyond LC_MESSAGES, for which the
|
||||||
|
# message catalogs shall be used. It is usually empty.
|
||||||
|
EXTRA_LOCALE_CATEGORIES =
|
||||||
|
|
||||||
|
# This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt'
|
||||||
|
# context. Possible values are "yes" and "no". Set this to yes if the
|
||||||
|
# package uses functions taking also a message context, like pgettext(), or
|
||||||
|
# if in $(XGETTEXT_OPTIONS) you define keywords with a context argument.
|
||||||
|
USE_MSGCTXT = yes
|
||||||
|
|
||||||
|
# These options get passed to msgmerge.
|
||||||
|
# Useful options are in particular:
|
||||||
|
# --previous to keep previous msgids of translated messages,
|
||||||
|
# --quiet to reduce the verbosity.
|
||||||
|
MSGMERGE_OPTIONS =
|
||||||
|
|
||||||
|
# These options get passed to msginit.
|
||||||
|
# If you want to disable line wrapping when writing PO files, add
|
||||||
|
# --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and
|
||||||
|
# MSGINIT_OPTIONS.
|
||||||
|
MSGINIT_OPTIONS =
|
||||||
|
|
||||||
|
# This tells whether or not to regenerate a PO file when $(DOMAIN).pot
|
||||||
|
# has changed. Possible values are "yes" and "no". Set this to no if
|
||||||
|
# the POT file is checked in the repository and the version control
|
||||||
|
# program ignores timestamps.
|
||||||
|
PO_DEPENDS_ON_POT = no
|
||||||
|
|
||||||
|
# This tells whether or not to forcibly update $(DOMAIN).pot and
|
||||||
|
# regenerate PO files on "make dist". Possible values are "yes" and
|
||||||
|
# "no". Set this to no if the POT file and PO files are maintained
|
||||||
|
# externally.
|
||||||
|
DIST_DEPENDS_ON_UPDATE_PO = no
|
|
@ -1,6 +1,5 @@
|
||||||
data/org.gnome.Contacts.appdata.xml.in
|
data/org.gnome.Contacts.appdata.xml.in
|
||||||
data/org.gnome.Contacts.desktop.in.in
|
data/org.gnome.Contacts.desktop
|
||||||
[type: gettext/ini]data/org.gnome.Contacts.search-provider.ini.in.in
|
|
||||||
src/contacts-accounts-list.vala
|
src/contacts-accounts-list.vala
|
||||||
src/contacts-address-map.vala
|
src/contacts-address-map.vala
|
||||||
src/contacts-app.vala
|
src/contacts-app.vala
|
||||||
|
@ -15,8 +14,8 @@ src/contacts-linked-accounts-dialog.vala
|
||||||
src/contacts-types.vala
|
src/contacts-types.vala
|
||||||
src/contacts-view.vala
|
src/contacts-view.vala
|
||||||
src/contacts-window.vala
|
src/contacts-window.vala
|
||||||
[type: gettext/glade]data/ui/app-menu.ui
|
data/ui/app-menu.ui
|
||||||
[type: gettext/glade]data/ui/contacts-list-pane.ui
|
data/ui/contacts-list-pane.ui
|
||||||
[type: gettext/glade]data/ui/contacts-window.ui
|
data/ui/contacts-window.ui
|
||||||
src/main.vala
|
src/main.vala
|
||||||
src/org.gnome.Contacts.gschema.xml.in
|
src/org.gnome.Contacts.gschema.xml
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
data/org.gnome.Contacts.appdata.xml
|
data/org.gnome.Contacts.appdata.xml
|
||||||
data/org.gnome.Contacts.desktop.in
|
|
||||||
sub/data/org.gnome.Contacts.desktop.in
|
|
||||||
data/org.gnome.Contacts.search-provider.ini.in
|
|
||||||
src/contacts-accounts-list.c
|
src/contacts-accounts-list.c
|
||||||
src/contacts-address-map.c
|
src/contacts-address-map.c
|
||||||
src/contacts-app.c
|
src/contacts-app.c
|
||||||
|
@ -16,4 +13,3 @@ src/contacts-types.c
|
||||||
src/contacts-view.c
|
src/contacts-view.c
|
||||||
src/contacts-window.c
|
src/contacts-window.c
|
||||||
src/main.c
|
src/main.c
|
||||||
src/org.gnome.Contacts.gschema.xml
|
|
||||||
|
|
1
src/.gitignore
vendored
1
src/.gitignore
vendored
|
@ -34,4 +34,3 @@ gnome-contacts-search-provider
|
||||||
memory-icon.c
|
memory-icon.c
|
||||||
org.gnome.Contacts.enums.xml
|
org.gnome.Contacts.enums.xml
|
||||||
org.gnome.Contacts.gschema.valid
|
org.gnome.Contacts.gschema.valid
|
||||||
org.gnome.Contacts.gschema.xml
|
|
||||||
|
|
|
@ -48,11 +48,7 @@ gsettings_ENUM_NAMESPACE = org.gnome.Contacts
|
||||||
gsettings_ENUM_FILES = \
|
gsettings_ENUM_FILES = \
|
||||||
contacts-view.c
|
contacts-view.c
|
||||||
|
|
||||||
gsettingsschema_in_files = org.gnome.Contacts.gschema.xml.in
|
gsettings_SCHEMAS = org.gnome.Contacts.gschema.xml
|
||||||
gsettings_SCHEMAS = $(gsettingsschema_in_files:.xml.in=.xml)
|
|
||||||
.PRECIOUS: $(gsettings_SCHEMAS)
|
|
||||||
|
|
||||||
@INTLTOOL_XML_NOMERGE_RULE@
|
|
||||||
|
|
||||||
@GSETTINGS_RULES@
|
@GSETTINGS_RULES@
|
||||||
|
|
||||||
|
@ -91,12 +87,11 @@ gnome_contacts_search_provider_LDADD = $(CONTACTS_LIBS)
|
||||||
|
|
||||||
CLEANFILES = \
|
CLEANFILES = \
|
||||||
$(vala_sources:.vala=.c) \
|
$(vala_sources:.vala=.c) \
|
||||||
$(gsettings_SCHEMAS) \
|
|
||||||
*.vapi *.stamp
|
*.vapi *.stamp
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
|
org.gnome.Contacts.gschema.xml \
|
||||||
cheese-flash.h \
|
cheese-flash.h \
|
||||||
um-crop-area.h \
|
um-crop-area.h \
|
||||||
$(gsettingsschema_in_files) \
|
|
||||||
contacts-esd-setup.h \
|
contacts-esd-setup.h \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
|
@ -2,14 +2,13 @@
|
||||||
<schema id="org.gnome.Contacts" path="/org/gnome/Contacts/" gettext-domain="gnome-contacts">
|
<schema id="org.gnome.Contacts" path="/org/gnome/Contacts/" gettext-domain="gnome-contacts">
|
||||||
<key name="did-initial-setup" type="b">
|
<key name="did-initial-setup" type="b">
|
||||||
<default>false</default>
|
<default>false</default>
|
||||||
<_summary>First-time setup done.</_summary>
|
<summary>First-time setup done.</summary>
|
||||||
<_description>Set to true when the user ran the first-time setup wizard.</_description>
|
<description>Set to true when the user ran the first-time setup wizard.</description>
|
||||||
</key>
|
</key>
|
||||||
<key name="view-subset" enum="org.gnome.Contacts.ContactsViewSubset">
|
<key name="view-subset" enum="org.gnome.Contacts.ContactsViewSubset">
|
||||||
<default>'main'</default>
|
<default>'main'</default>
|
||||||
<_summary>View subset</_summary>
|
<summary>View subset</summary>
|
||||||
<_description>View contacts subset</_description>
|
<description>View contacts subset</description>
|
||||||
</key>
|
</key>
|
||||||
</schema>
|
</schema>
|
||||||
|
|
||||||
</schemalist>
|
</schemalist>
|
Loading…
Add table
Add a link
Reference in a new issue