- Install evolution-alarm-notify in $(privlibexecdir) instead of $(bindir). - Set the X-GNOME-Bugzilla-Version in evolution-alarm-notify.desktop to @BASE_VERSION@.x (patch was missing the .x suffix). - Killed data/evolution.keys.in.in since it's full of CORBA cruft. The MimeType field in evolution.desktop fills this role now. - Copied the AS_AC_EXPAND macro from gnome-settings-daemon. The macro sets up path-related substitutions for use in automake input files. So for example AS_AC_EXPAND(PRIVLIBEXECDIR, "$privlibexecdir") in configure.ac allows us to use @PRIVLIBEXECDIR@ in .desktop.in files. - Simplified .desktop rules using gnome-settings-daemon as a guide.
35 lines
759 B
Makefile
35 lines
759 B
Makefile
SUBDIRS = icons
|
|
|
|
desktopdir = $(datadir)/applications
|
|
desktop_in_files = evolution.desktop.in evolution-settings.desktop.in
|
|
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
|
|
|
|
autostartdir = $(sysconfdir)/xdg/autostart
|
|
autostart_in_files = evolution-alarm-notify.desktop.in
|
|
autostart_DATA = $(autostart_in_files:.desktop.in=.desktop)
|
|
|
|
@INTLTOOL_DESKTOP_RULE@
|
|
|
|
mimedir = $(datadir)/mime-info
|
|
dist_mime_DATA = evolution.mime
|
|
|
|
if HAVE_KDE_APPLNK
|
|
|
|
kdedesktopdir = $(KDE_APPLNK_DIR)/Applications
|
|
kdedesktop_DATA = $(desktop_in_in_file:.desktop.in.in=.desktop)
|
|
|
|
endif
|
|
|
|
dist_noinst_MANS = evolution.1
|
|
|
|
|
|
CLEANFILES = \
|
|
$(autostart_DATA) \
|
|
$(desktop_DATA)
|
|
|
|
EXTRA_DIST = \
|
|
$(autostart_in_files) \
|
|
$(desktop_in_files)
|
|
|
|
-include $(top_srcdir)/git.mk
|