diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | omf-install/.cvsignore | 3 | ||||
-rw-r--r-- | omf-install/Makefile.am | 17 |
3 files changed, 24 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2001-08-15 Kjartan Maraas <kmaraas@gnome.org> + + * omf-install/*: Added this for integration with scrollkeeper. + 2001-08-14 Dan Winship <danw@ximian.com> * configure.in (LDAP_LIBS): Remove an obvious typo reported by diff --git a/omf-install/.cvsignore b/omf-install/.cvsignore new file mode 100644 index 0000000000..9bd332edc9 --- /dev/null +++ b/omf-install/.cvsignore @@ -0,0 +1,3 @@ +Makefile +Makefile.in +*.omf diff --git a/omf-install/Makefile.am b/omf-install/Makefile.am new file mode 100644 index 0000000000..ee542a8598 --- /dev/null +++ b/omf-install/Makefile.am @@ -0,0 +1,17 @@ +omf_dest_dir=$(datadir)/omf/evolution +scrollkeeper_localstate_dir = $(localstatedir)/scrollkeeper + +install-data-local: + $(mkinstalldirs) $(DESTDIR)$(omf_dest_dir) + -for file in $(srcdir)/*.omf; do \ + $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(omf_dest_dir); \ + done + -scrollkeeper-update -p $(scrollkeeper_localstate_dir) + +uninstall-local: + -for file in $(srcdir)/*.omf; do \ + basefile=`basename $$file`; \ + rm -f $(omf_dest_dir)/$$basefile; \ + done + -rmdir $(omf_dest_dir) + -scrollkeeper-update -p $(scrollkeeper_localstate_dir) |