2008-04-17 Sankar P <psankar@novell.com> * Makefile.am: Added new files deleted files not needed. * external-editor.c: (convert_to_camel_internet_address), (ee_editor_command_changed), (e_plugin_lib_get_configure_widget), (async_external_editor), (show_composer_dialog), (org_gnome_external_editor): Leak fixes, Temporary files, Bug fixes and so on. * org-gnome-external-editor-errors.xml: Modified error file for staying aligned with other plugins * apps-evolution-external-editor.schemas.in: Added new file for default schema * org-gnome-external-editor.error.xml: Removed in favor of the other errors file. ** Fix for bug #517168 svn path=/trunk/; revision=35373
55 lines
1.7 KiB
Makefile
55 lines
1.7 KiB
Makefile
INCLUDES = \
|
|
-DEVOLUTION_LOCALEDIR=\""$(localedir)"\" \
|
|
-DEVOLUTION_TOOLSDIR=\""$(privlibexecdir)"\" \
|
|
-DPREFIX=\""$(prefix)"\" \
|
|
-DSYSCONFDIR=\""$(sysconfdir)"\" \
|
|
-DDATADIR=\""$(datadir)"\" \
|
|
-DLIBDIR=\""$(libdir)"\" \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/composer \
|
|
$(SHELL_CFLAGS) \
|
|
$(EVOLUTION_MAIL_CFLAGS) \
|
|
$(E_UTIL_CFLAGS)
|
|
|
|
@EVO_PLUGIN_RULE@
|
|
|
|
error_DATA = org-gnome-external-editor-errors.xml
|
|
errordir = $(privdatadir)/errors
|
|
|
|
plugin_DATA = \
|
|
org-gnome-external-editor.eplug \
|
|
org-gnome-external-editor.xml
|
|
|
|
plugin_LTLIBRARIES = liborg-gnome-external-editor.la
|
|
|
|
liborg_gnome_external_editor_la_SOURCES = \
|
|
external-editor.c
|
|
|
|
liborg_gnome_external_editor_la_LDFLAGS = -module -avoid-version
|
|
|
|
schemadir = $(GCONF_SCHEMA_FILE_DIR)
|
|
schema_in_files = apps-evolution-external-editor.schemas.in
|
|
schema_DATA = $(schema_in_files:.schemas.in=.schemas)
|
|
|
|
@INTLTOOL_SCHEMAS_RULE@
|
|
|
|
install-data-local:
|
|
if test -z "$(DESTDIR)" ; then \
|
|
for p in $(schema_DATA) ; do \
|
|
GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $$p; \
|
|
done \
|
|
fi
|
|
|
|
EXTRA_DIST = \
|
|
org-gnome-external-editor.eplug.xml \
|
|
org-gnome-external-editor-errors.xml \
|
|
org-gnome-external-editor.xml \
|
|
$(schema_in_files)
|
|
|
|
BUILT_SOURCES = org-gnome-external-editor.eplug \
|
|
$(error_i18n)
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
DISTCLEANFILES = $(schema_DATA)
|