2001-08-02 Jon Trowbridge <trow@ximian.com> * printing/Makefile.am (ecpsdir): Add camel dependency. * gui/component/Makefile.am: Add camel dependency. * backend/ebook/Makefile.am: Add camel dependency. * gui/component/addressbook-factory.c (main): Properly init camel. * backend/ebook/e-destination.c (e_destination_clear_strings): Clear ->raw. (e_destination_is_empty): We aren't empty if ->raw is set.. (e_destination_set_raw): Replaces e_destination_set_string. (e_destination_get_name): Use camel's parser to extract the name from ->raw. (e_destination_get_email): Use camel's parser to extract the email address from ->raw. (e_destination_get_address): Use camel to produce properly quoted, RFC-compliant addresses. Thanks camel! (Bug #5860) * gui/component/select-names/e-select-names-completion.c (emailify_match): Always append an e-mail address, as long as it doesn't have one already at it's beginning or end. Don't limit self to just emailifying entries tied to cards with multiple addresses. (I didn't really want to do this, but people seem to like keeping multiple cards for the same person, and other solutions (like scanning all matches for duplicate names, and only emailifying those) just seemed like way too much work for such a limited payoff.) * gui/component/select-names/e-select-names-text-model.c: s/e_destination_set_string/e_destination_set_raw/. * gui/component/select-names/e-select-names-popup.c (popup_menu_card): Quote _'s in our popup menus, so that "foo_bar" doesn't get displayed as "foobar" w/ the 'b' underlined. (Bug #5558) (popup_menu_nocard): Ditto. 2001-08-02 Jon Trowbridge <trow@ximian.com> * Makefile.am: Added camel dependency (now needed by ebook). 2001-08-02 Jon Trowbridge <trow@ximian.com> * gui/Makefile.am: Added camel dependency (now needed by ebook). 2001-08-02 Jon Trowbridge <trow@ximian.com> * Makefile.am: Added camel dependency (now needed by ebook). svn path=/trunk/; revision=11602
76 lines
1.9 KiB
Makefile
76 lines
1.9 KiB
Makefile
ecpsdir = $(datadir)/evolution/ecps
|
|
|
|
ecps_DATA = \
|
|
smallbook.ecps \
|
|
medbook.ecps \
|
|
phonelist.ecps
|
|
|
|
gladedir = $(datadir)/evolution/glade
|
|
|
|
glade_DATA = \
|
|
e-contact-print.glade
|
|
|
|
INCLUDES = \
|
|
$(GNOME_INCLUDEDIR) \
|
|
-DG_LOG_DOMAIN=\"addressbook-printing\" \
|
|
-I$(top_srcdir)/addressbook \
|
|
-I$(top_srcdir) \
|
|
-DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \
|
|
-DEVOLUTION_ECPSDIR=\""$(ecpsdir)"\" \
|
|
-DDATADIR=\""$(datadir)"\" \
|
|
$(GNOME_PRINT_CFLAGS) \
|
|
$(BONOBO_GNOME_CFLAGS) \
|
|
$(EXTRA_GNOME_CFLAGS)
|
|
|
|
noinst_LIBRARIES = \
|
|
libecontactprint.a
|
|
|
|
libecontactprint_a_SOURCES = \
|
|
e-contact-print-envelope.c \
|
|
e-contact-print-envelope.h \
|
|
e-contact-print-style-editor.c \
|
|
e-contact-print-style-editor.h \
|
|
e-contact-print-types.h \
|
|
e-contact-print.c \
|
|
e-contact-print.h
|
|
|
|
noinst_PROGRAMS = \
|
|
contact-print-test \
|
|
contact-print-style-editor-test
|
|
|
|
contact_print_test_SOURCES = \
|
|
test-print.c
|
|
|
|
contact_print_test_LDADD = \
|
|
$(top_builddir)/addressbook/backend/ebook/libebook.la \
|
|
$(top_builddir)/camel/libcamel.la \
|
|
$(top_builddir)/libibex/libibex.la \
|
|
$(top_builddir)/e-util/libeutil.la \
|
|
$(top_builddir)/libversit/libversit.la \
|
|
$(top_builddir)/e-util/ename/libename.la \
|
|
libecontactprint.a \
|
|
$(BONOBO_CONF_LIBS) \
|
|
$(EXTRA_GNOME_LIBS) \
|
|
$(BONOBO_GNOME_LIBS) \
|
|
$(GNOME_PRINT_LIBS)
|
|
|
|
contact_print_style_editor_test_SOURCES = \
|
|
test-contact-print-style-editor.c
|
|
|
|
contact_print_style_editor_test_LDADD = \
|
|
$(top_builddir)/addressbook/backend/ebook/libebook.la \
|
|
$(top_builddir)/camel/libcamel.la \
|
|
$(top_builddir)/libibex/libibex.la \
|
|
$(top_builddir)/e-util/libeutil.la \
|
|
$(top_builddir)/libversit/libversit.la \
|
|
$(top_builddir)/e-util/ename/libename.la \
|
|
libecontactprint.a \
|
|
$(BONOBO_CONF_LIBS) \
|
|
$(EXTRA_GNOME_LIBS) \
|
|
$(BONOBO_GNOME_LIBS) \
|
|
$(GNOME_PRINT_LIBS)
|
|
|
|
EXTRA_DIST = \
|
|
$(glade_DATA) \
|
|
$(ecps_DATA)
|