* data/cde_app_root/Makefile.am: New. * data/cde_app_root/dt/Makefile.am: New. * data/cde_app_root/dt/appconfig/Makefile.am: New. * data/cde_app_root/dt/appconfig/appmanager/Makefile.am: New. * data/cde_app_root/dt/appconfig/appmanager/C/Makefile.am: New. * data/cde_app_root/dt/appconfig/appmanager/C/Ximian/Makefile.am: New. * data/cde_app_root/dt/appconfig/icons/Makefile.am: New. * data/cde_app_root/dt/appconfig/icons/C/Makefile.am: New. * data/cde_app_root/dt/appconfig/types/Makefile.am: New. * data/cde_app_root/dt/appconfig/types/C/Makefile.am: New. * configure.in: Add a `--with-cde-path' option. Check for dtappintegrate in that path. Define HAVE_DTAPPINTEGRATE and GNOME_PREFIX. Also, generate data/cde_app_root/dt/appconfig/types/C/Ximian.dt.in and shell/evolution-nognome. svn path=/trunk/; revision=18083
38 lines
922 B
Makefile
38 lines
922 B
Makefile
desktopdir = $(datadir)/gnome/apps/Applications
|
|
desktop_in_files = evolution.desktop.in
|
|
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
|
|
@XML_I18N_MERGE_DESKTOP_RULE@
|
|
|
|
keysdir = $(datadir)/mime-info
|
|
keys_in_files = evolution.keys.in
|
|
keys_DATA = $(keys_in_files:.keys.in=.keys)
|
|
@XML_I18N_MERGE_KEYS_RULE@
|
|
|
|
mimedir = $(datadir)/mime-info
|
|
mime_DATA = evolution.mime
|
|
|
|
if HAVE_KDE_APPLNK
|
|
kdedesktopdir = $(KDE_APPLNK_DIR)/Applications
|
|
kdedesktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
|
|
endif
|
|
|
|
man_MANS = evolution.1
|
|
|
|
EXTRA_DIST = $(desktop_in_files) $(keys_in_files) $(mime_DATA) $(man_MANS)
|
|
|
|
SUBDIRS = cde_app_root
|
|
|
|
# CDE Stuff
|
|
|
|
if HAVE_DTAPPINTEGRATE
|
|
|
|
# This installs Evolution into the Application Manager on CDE
|
|
dtappintegrate:
|
|
$(DTAPPINTEGRATE) -s $(prefix)/share/evolution/cde_app_root
|
|
|
|
# ...And this uninstalls it
|
|
dtappunintegrate:
|
|
$(DTAPPINTEGRATE) -u -s $(prefix)/share/evolution/cde_app_root
|
|
|
|
endif
|