diff options
-rw-r--r-- | .gitignore | 19 | ||||
-rw-r--r-- | ChangeLog | 33 | ||||
l--------- | INSTALL | 2 | ||||
-rw-r--r-- | Makefile.am | 13 | ||||
-rw-r--r-- | NEWS | 7 | ||||
-rwxr-xr-x | autogen.sh | 19 | ||||
-rw-r--r-- | configure.ac (renamed from configure.in) | 1 | ||||
-rw-r--r-- | www/Makefile.am | 2 |
8 files changed, 90 insertions, 6 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ce898e5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,19 @@ +*.o +*.tar.gz + +.deps +aclocal.m4 +autom4te.cache +compile +config.h* +config.log +config.status +configure +depcomp +install-sh +missing +stamp-h1 +Makefile +Makefile.in + +/tools/rrdui-cgi @@ -1,3 +1,32 @@ -0.3 - - Initial public release +=== ChangeLog discontinued === + With the move to git, this project is switching from a ChangeLog + file to relying on commit messages to provide change history. Please + write commit messages in the following format: + +=== begin example commit === + + Short explanation of the commit + + Longer explanation explaining exactly what's changed, whether any + external or private interfaces changed, what bugs were fixed (with bug + tracker reference if applicable) and so forth. Be concise but not too + brief. + +=== end example commit === + + - Always add a brief description of the commit to the _first_ line of + the commit and terminate by two newlines. This may be the title of + a fixed bug, copied from Bugzilla. + + - First line (the brief description) must only be one sentence and + should start with a capital letter unless it starts with a + lowercase symbol or identifier. Don't use a trailing full stop, + and don't exceed 72 characters. + + - The main description (the body) is normal prose and should use + normal punctuation and capital letters where appropriate. + + - When committing code on behalf of others use the --author option, + e.g. git commit -a --author "Joe Coder <joe@coder.org>" and + --signoff. @@ -1 +1 @@ -/usr/share/automake-1.10/INSTALL
\ No newline at end of file +/usr/share/automake-1.11/INSTALL
\ No newline at end of file diff --git a/Makefile.am b/Makefile.am index 115359a..5536493 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,4 +4,15 @@ SUBDIRS = tools www EXTRA_DIST = graphics dist-hook: - rm -rf `find $(distdir)/ -name .svn` + @if test -d "$(srcdir)/.git"; \ + then \ + echo Creating ChangeLog && \ + ( cd "$(top_srcdir)" && \ + echo '# Generate automatically. Do not edit.'; echo; \ + $(top_srcdir)/missing --run git log --stat --date=short ) > ChangeLog.tmp \ + && mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \ + || ( rm -f ChangeLog.tmp ; \ + echo Failed to generate ChangeLog >&2 ); \ + else \ + echo A git clone is required to generate a ChangeLog >&2; \ + fi @@ -1 +1,6 @@ -See ChangeLog
\ No newline at end of file +0.4 + - Fix drag zoom problems with webkit and chrome + - Build cleanup + +0.3 + - Initial public release diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..1d0902a --- /dev/null +++ b/autogen.sh @@ -0,0 +1,19 @@ +#!/bin/sh -e + +set -e + +# Some boiler plate to get git setup as expected +if test -d .git; then + if test -f .git/hooks/pre-commit.sample && \ + test ! -f .git/hooks/pre-commit; then + cp -pv .git/hooks/pre-commit.sample .git/hooks/pre-commit + fi +fi + +set -x + +aclocal +autoheader +automake -a +autoconf +./configure "$@" diff --git a/configure.in b/configure.ac index 3facecc..142374b 100644 --- a/configure.in +++ b/configure.ac @@ -23,6 +23,7 @@ fi dnl Check for programs. AC_PROG_CC +AM_PROG_CC_C_O AC_PROG_INSTALL AC_PROG_RANLIB diff --git a/www/Makefile.am b/www/Makefile.am index 5bb713c..6755b7b 100644 --- a/www/Makefile.am +++ b/www/Makefile.am @@ -1,5 +1,5 @@ -EXTRA_DIST = ajax static +EXTRA_DIST = ajax htmldir = $(datadir)/rrdui/ nobase_html_DATA = \ |