diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2001-08-16 04:11:31 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2001-08-16 04:11:31 +0800 |
commit | eaf4de8941d4d37c40c75bee0aecbbd75e08e184 (patch) | |
tree | a21926fcbaeadcb8b58cd319bad5d8086133c94a | |
parent | c43f2b9a56d4472bc3fd2bb83ab57f779221bf0c (diff) | |
download | gsoc2013-evolution-eaf4de8941d4d37c40c75bee0aecbbd75e08e184.tar gsoc2013-evolution-eaf4de8941d4d37c40c75bee0aecbbd75e08e184.tar.gz gsoc2013-evolution-eaf4de8941d4d37c40c75bee0aecbbd75e08e184.tar.bz2 gsoc2013-evolution-eaf4de8941d4d37c40c75bee0aecbbd75e08e184.tar.lz gsoc2013-evolution-eaf4de8941d4d37c40c75bee0aecbbd75e08e184.tar.xz gsoc2013-evolution-eaf4de8941d4d37c40c75bee0aecbbd75e08e184.tar.zst gsoc2013-evolution-eaf4de8941d4d37c40c75bee0aecbbd75e08e184.zip |
Added this for integration with scrollkeeper.
2001-08-15 Kjartan Maraas <kmaraas@gnome.org>
* omf-install/*: Added this for integration with scrollkeeper.
svn path=/trunk/; revision=12068
-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) |