From f479fd29a876d445291d7e55de9e9a22bac419b6 Mon Sep 17 00:00:00 2001 From: Matthieu Herrb Date: Mon, 30 Jul 2007 21:07:05 +0200 Subject: - renamed .cvsignore -> .gitignore - Replace static ChangeLog with disthook to generate from git log --- .cvsignore | 19 ------------------- .gitignore | 20 ++++++++++++++++++++ ChangeLog | 31 ------------------------------- Makefile.am | 11 ++++++++++- 4 files changed, 30 insertions(+), 51 deletions(-) delete mode 100644 .cvsignore create mode 100644 .gitignore delete mode 100644 ChangeLog diff --git a/.cvsignore b/.cvsignore deleted file mode 100644 index d998a5e..0000000 --- a/.cvsignore +++ /dev/null @@ -1,19 +0,0 @@ -.deps -Makefile -Makefile.in -aclocal.m4 -autom4te.cache -compile -config.guess -config.h -config.h.in -config.log -config.status -config.sub -configure -depcomp -install-sh -missing -stamp-h1 -xsetroot -xsetroot.1 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b599625 --- /dev/null +++ b/.gitignore @@ -0,0 +1,20 @@ +.deps +Makefile +Makefile.in +aclocal.m4 +autom4te.cache +compile +config.guess +config.h +config.h.in +config.log +config.status +config.sub +configure +depcomp +iceauth +iceauth.1 +install-sh +missing +stamp-h1 +*~ diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index a7722ec..0000000 --- a/ChangeLog +++ /dev/null @@ -1,31 +0,0 @@ -2005-12-20 Kevin E. Martin - - * configure.ac: - Update package version for X11R7 release. - -2005-12-14 Kevin E. Martin - - * configure.ac: - Update package version number for final X11R7 release candidate. - -2005-12-06 Kevin E. Martin - - * Makefile.am: - Change *man_SOURCES ==> *man_PRE to fix autotools warnings. - -2005-12-03 Kevin E. Martin - - * configure.ac: - Update package version number for X11R7 RC3 release. - -2005-11-20 Alan Coopersmith - - * configure.ac: - Change dependency from xmu to xmuu since the full xmu - (with all its baggage like Xt) is not needed here. - -2005-10-18 Kevin E. Martin - - * configure.ac: - Update package version number for RC1 release. - diff --git a/Makefile.am b/Makefile.am index 5ff96b7..6e1bacf 100644 --- a/Makefile.am +++ b/Makefile.am @@ -35,9 +35,18 @@ appmandir = $(APP_MAN_DIR) appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@) -EXTRA_DIST = $(appman_PRE) +EXTRA_DIST = $(appman_PRE) ChangeLog autogen.sh CLEANFILES = $(appman_DATA) +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 + SED = sed # Strings to replace in man pages -- cgit v1.2.3