~ubuntu-branches/ubuntu/wily/evolution/wily

« back to all changes in this revision

Viewing changes to modules/bogofilter/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2012-07-03 23:07:40 UTC
  • mfrom: (1.1.92)
  • Revision ID: package-import@ubuntu.com-20120703230740-0hjh6kfpxsyb88gx
Tags: 3.5.3.1-0ubuntu1
* New upstream release 3.5.3.1.
* debian/control:
  - Add libwebkitgtk-3.0-dev, libjavascriptcoregtk-3.0-dev >= 1.8.0 to build
    dependencies.
  - Adjust Build-Depends for the new minimum versions required for EDS 3.5.
  - Also update evolution's Depends to require evolution-data-server >= 3.5,
    and << 3.6.
* debian/rules:
  - Update ELIBDIR to point to /usr/lib/evolution/3.6 now, as per the base
    version defined in configure.
  - Build all plugins rather than enabling experimental specifically; we can
    sort them to other packages after.
  - Drop the binary-install/evolution-common target.
* debian/patches/01_ubuntu_signature.patch: dropped; upstream code has changed
  sufficiently that it would pretty much need a rewrite; and Evolution is no
  longer the default shipped mail client on Desktop.
* debian/patches/04_delay_alarm_notifier.patch: refreshed.
* debian/patches/89_remove_component_id_registration.patch: dropped: we don't
  have UNE anymore and component ID registration has been moved to GSettings.
* debian/patches/10_revert_libevolution_avoid-version.patch: refreshed.
* debian/patches/91_add_u1_email_translations.patch: refreshed.
* debian/evolution-common.install:
  - Drop debian/signature.py.
  - Don't install /usr/share/mime-info; it's not built anymore.
* debian/signature.py: dropped; since we dropped the Ubuntu signature patch.
* debian/evolution.install: don't try to install files in /etc/gconf; evo
  has migrated to GSettings so there are no such files anymore.
* debian/evolution.install,
  debian/evolution-plugins.install,
  debian/evolution-plugins-experimental.install: remove the plugins that were
  converted to modules. Modules are already installed by libevolution.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
module_LTLIBRARIES = libevolution-module-bogofilter.la
 
1
module_LTLIBRARIES = module-bogofilter.la
2
2
 
3
 
libevolution_module_bogofilter_la_CPPFLAGS =                    \
 
3
module_bogofilter_la_CPPFLAGS = \
4
4
        $(AM_CPPFLAGS)                                          \
5
5
        -I$(top_srcdir)                                         \
6
6
        -DG_LOG_DOMAIN=\"evolution-bogofilter\"                 \
8
8
        $(EVOLUTION_DATA_SERVER_CFLAGS)                         \
9
9
        $(GNOME_PLATFORM_CFLAGS)
10
10
 
11
 
libevolution_module_bogofilter_la_SOURCES =                     \
 
11
module_bogofilter_la_SOURCES = \
12
12
        evolution-bogofilter.c
13
13
 
14
 
libevolution_module_bogofilter_la_LIBADD =                      \
 
14
module_bogofilter_la_LIBADD = \
15
15
        $(top_builddir)/e-util/libeutil.la                      \
16
16
        $(top_builddir)/mail/libevolution-mail.la               \
17
17
        $(top_builddir)/libemail-engine/libemail-engine.la \
19
19
        $(EVOLUTION_DATA_SERVER_LIBS)                           \
20
20
        $(GNOME_PLATFORM_LIBS)
21
21
 
22
 
libevolution_module_bogofilter_la_LDFLAGS =                     \
 
22
module_bogofilter_la_LDFLAGS = \
23
23
        -module -avoid-version $(NO_UNDEFINED)
24
24
 
25
 
schemadir = $(GCONF_SCHEMA_FILE_DIR)
26
 
schema_in_files = evolution-bogofilter.schemas.in
27
 
schema_DATA = $(schema_in_files:.schemas.in=.schemas)
28
 
 
29
 
@INTLTOOL_SCHEMAS_RULE@
30
 
 
31
 
if GCONF_SCHEMAS_INSTALL
32
 
 
33
 
if OS_WIN32
34
 
install-data-local:
35
 
        if test -z "$(DESTDIR)" ; then                                                  \
36
 
                for p in $(schema_DATA) ; do                                            \
37
 
                        (echo set GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE);    \
38
 
                         echo $(GCONFTOOL) --makefile-install-rule $$p) >_temp.bat;     \
39
 
                        cmd /c _temp.bat;                                               \
40
 
                        rm _temp.bat;                                                   \
41
 
                done                                                                    \
42
 
        fi
43
 
else
44
 
install-data-local:
45
 
        if test -z "$(DESTDIR)" ; then                                                  \
46
 
                for p in $(schema_DATA) ; do                                            \
47
 
                        GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE)               \
48
 
                                $(GCONFTOOL) --makefile-install-rule $$p;               \
49
 
                done                                                                    \
50
 
        fi
51
 
endif
52
 
 
53
 
endif
54
 
 
55
 
DISTCLEANFILES = $(schema_DATA)
56
 
 
57
 
EXTRA_DIST = $(schema_in_files)
58
 
 
59
25
-include $(top_srcdir)/git.mk