summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Cloos <cloos@jhcloos.com>2007-12-06 16:37:18 -0500
committerJames Cloos <cloos@jhcloos.com>2007-12-06 16:37:18 -0500
commit50c7d6c00221a8c89ed083ac9fd85eec8d8c33a6 (patch)
tree575b8c991ff707a869cf62a97ff3e9a7cad23643
parent9f58ebd8af282f9284ee53ec35238dc0f35b8f48 (diff)
Replace static ChangeLog with dist-hook to generate from git log
-rw-r--r--ChangeLog61
-rw-r--r--Makefile.am10
2 files changed, 10 insertions, 61 deletions
diff --git a/ChangeLog b/ChangeLog
deleted file mode 100644
index 0bcf450..0000000
--- a/ChangeLog
+++ /dev/null
@@ -1,61 +0,0 @@
-2006-04-01 Adam Jackson <ajax@freedesktop.org>
-
- * configure.ac:
- Bump to 1.0.2.
-
-2006-02-03 Alan Coopersmith <alan.coopersmith@sun.com>
-
- * xkbevd.man:
- Bug #5802 <https://bugs.freedesktop.org/show_bug.cgi?id=5802>
- Wrong name in .TH line in xkbevd man page (Masatake YAMATO)
-
-2005-12-20 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * configure.ac:
- Update package version for X11R7 release.
-
-2005-12-14 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * configure.ac:
- Update package version number for final X11R7 release candidate.
-
-2005-12-06 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * Makefile.am:
- Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
-
-2005-12-03 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * configure.ac:
- Update package version number for X11R7 RC3 release.
-
-2005-11-19 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * configure.ac:
- Update dependencies to work with separate build roots.
-
-2005-11-09 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * configure.ac:
- Update package version number for X11R7 RC2 release.
-
-2005-10-20 Donnie Berkholz <spyderous@gentoo.org>
-
- * Makefile.am: Set DFLT_XKB_CONFIG_ROOT instead of using hard-coded default.
-
-2005-10-18 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * configure.ac:
- Update package version number for RC1 release.
-
-2005-10-15 Kevin E. Martin <kem-at-freedesktop-dot-org>
-
- * Makefile.am: Have generated files be cleaned by maintainer in
- order to pass check-tarball test.
-
-2005-08-02 Keith Packard <keithp@keithp.com>
-
- * Makefile.am:
- Mark generated files as BUILT_SOURCES and CLEANFILES
- to ensure they are regenerated after 'make clean' and
- to make parallel builds work right.
diff --git a/Makefile.am b/Makefile.am
index 6cb7c7e..2d7b360 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -73,3 +73,13 @@ SUFFIXES = .$(APP_MAN_SUFFIX) .man
.man.$(APP_MAN_SUFFIX):
sed $(MAN_SUBSTS) < $< > $@
+
+EXTRA_DIST += ChangeLog
+MAINTAINERCLEANFILES = ChangeLog
+
+.PHONY: ChangeLog
+
+ChangeLog:
+ (GIT_DIR=$(top_srcdir)/.git git-log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2)
+
+dist-hook: ChangeLog