debian/0000755000000000000000000000000012211651052007161 5ustar debian/changelog0000644000000000000000000001130612211650367011044 0ustar cvsgraph (1.7.0-4) unstable; urgency=low * Make configure test for -lm after testing for GD (which may discard prior additions to LIBS). We need -lm for atan2 regardless of whether we have gdlib-config. Patch from Colin Watson (closes: #709012). * Use dh-autoreconf to help apply this change. -- Mark Brown Wed, 04 Sep 2013 16:23:51 +0100 cvsgraph (1.7.0-3) unstable; urgency=low * Explicitly specify source format. -- Mark Brown Mon, 06 May 2013 22:32:00 +0100 cvsgraph (1.7.0-2) unstable; urgency=low * Policy 3.9.4. * Use debhelper 9. -- Mark Brown Fri, 03 May 2013 11:56:09 +0100 cvsgraph (1.7.0-1) unstable; urgency=low * New upstream release. -- Mark Brown Thu, 01 Mar 2012 09:27:54 +0000 cvsgraph (1.6.1-1) unstable; urgency=low * New upstream release. * Use debhelper compatibility level 6. * Policy 3.7.3 (no changes). -- Mark Brown Sat, 26 Jan 2008 10:27:51 +0000 cvsgraph (1.6.0-1) unstable; urgency=low * New upstream release. -- Mark Brown Sat, 6 May 2006 16:03:38 +0100 cvsgraph (1.5.2-1) unstable; urgency=low * New upstream release. * Apply patch from Nicolas François fixing typo in cvsgraph.conf.5 (closes: #326529). -- Mark Brown Thu, 8 Sep 2005 22:59:43 +0100 cvsgraph (1.5.1-1) unstable; urgency=low * New upstream release (closes: #304165). -- Mark Brown Tue, 12 Apr 2005 22:03:17 +0100 cvsgraph (1.4.0-3) unstable; urgency=low * Build-Depends is a single line field. * Policy 3.6.1. * Update to use debhelper 4. -- Mark Brown Sun, 23 May 2004 11:51:51 +0100 cvsgraph (1.4.0-2) unstable; urgency=low * Fix escaping in manual page with patch provided by Nicolas Francois (closes: #211979). -- Mark Brown Sun, 5 Oct 2003 11:26:33 +0100 cvsgraph (1.4.0-1) unstable; urgency=low * New upstream release (closes: #203751). -- Mark Brown Fri, 1 Aug 2003 11:20:03 +0100 cvsgraph (1.3.0-4) unstable; urgency=low * Disable configure time check that sizeof(int) == sizeof(void). I have tried to reproduce the bug that's testing for on my Alpha system and not got very far so I'm working on the basis that it's more useful to have something that works a lot of the time than something that never works. -- Mark Brown Mon, 16 Dec 2002 11:05:49 +0000 cvsgraph (1.3.0-3) unstable; urgency=low * New maintainer. * Update to policy 3.5.7. * Add build dependancies on libfreetype6-dev and libttf-dev. * Insist on building with libgd2-noxpm-dev. If you attempt to build with libgd2-xpm-dev configure fails claiming that it can't find required libraries since it attempts to link libgd as well as other libraries when trying to detect other libraries but libgd requires libxpm. -- Mark Brown Wed, 30 Oct 2002 16:10:20 +0000 cvsgraph (1.3.0-2) unstable; urgency=low * Remove empty /etc/cvsgraph on purge (closes: #160296) -- Jon Middleton Wed, 11 Sep 2002 20:01:03 +0100 cvsgraph (1.3.0-1) unstable; urgency=low * New Upstream release. * Change image background to transparent * Change revision box colour to white * Rebuild against libgd2-dev (closes: #155663, #155673) -- Jon Middleton Fri, 9 Aug 2002 07:39:32 +0100 cvsgraph (1.2.0-2) unstable; urgency=low * Update Build-dep to libgd2-noxpm. * Rebuild against newer libgd (closes: #151239) -- Jon Middleton Fri, 2 Aug 2002 18:45:13 +0100 cvsgraph (1.2.0-1) unstable; urgency=low * New Upstream release. -- Jon Middleton Tue, 4 Jun 2002 15:41:27 +0100 cvsgraph (1.1.3-1) unstable; urgency=low * New upstream release. * Not released. -- Jon Middleton Fri, 15 Feb 2002 20:18:37 +0000 cvsgraph (1.1.2-4) unstable; urgency=low * Given the recent changes in default conf of viewcvs, support it by default. * Changed format of title. -- Jon Middleton Fri, 15 Feb 2002 15:09:10 +0000 cvsgraph (1.1.2-3) unstable; urgency=low * Fixed spelling error in Description. (Closes: #119646, #124530) -- Jon Middleton Mon, 17 Dec 2001 23:29:51 +0000 cvsgraph (1.1.2-2) unstable; urgency=low * Added missing build build-depends Closes: #118950 -- Jon Middleton Sun, 11 Nov 2001 17:05:37 +0000 cvsgraph (1.1.2-1) unstable; urgency=low * Initial Release. * Closes: #118292. -- Jon Middleton Sun, 4 Nov 2001 14:58:46 +0000 debian/control0000644000000000000000000000115512211650175010573 0ustar Source: cvsgraph Section: devel Priority: optional Maintainer: Mark Brown Build-Depends: debhelper (>> 9), dpkg-dev (>= 1.16.1), libgd2-noxpm-dev | libgd2-xpm-dev, bison | byacc, flex, libfreetype6-dev, dh-autoreconf Standards-Version: 3.9.4 Package: cvsgraph Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: Create a tree of revisions/branches from a CVS/RCS file CvsGraph was inspired by the graph option from WinCVS. It represents the revisions and branches in a CVS/RCS file in a graphical tree structure, also listing any tags associated with any given revision. debian/cvsgraph.postrm0000644000000000000000000000176212140713530012253 0ustar #!/bin/sh # postrm script for cvsgraph # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `remove' # * `purge' # * `upgrade' # * `failed-upgrade' # * `abort-install' # * `abort-install' # * `abort-upgrade' # * `disappear' overwrit>r> # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in purge) # remove the tmp dir if [ -d /etc/cvsgraph ]; then rmdir --ignore-fail-on-non-empty /etc/cvsgraph fi ;; remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 1 esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/copyright0000644000000000000000000000075012140713530011117 0ustar This package was debianized by Jon Middleton on Sun, 4 Nov 2001 14:58:46 +0000. It was downloaded from http://www.akhphd.au.dk/~bertho/cvsgraph/ Upstream Author: Bertho Copyright: CvsGraph is distributed under GNU GPL v2. You are free to distribute this software under the terms of the GNU General Public License. On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL file. debian/compat0000644000000000000000000000000212140713665010371 0ustar 9 debian/source/0000755000000000000000000000000012211651013010456 5ustar debian/source/format0000644000000000000000000000001412211651013011664 0ustar 3.0 (quilt) debian/cvsgraph.files0000644000000000000000000000005112140713530012017 0ustar cvsgraph_1.4.0-2_i386.deb devel optional debian/cvsweb.diff0000644000000000000000000000375112140713530011313 0ustar --- cvsweb.cgi Sun Nov 26 02:51:04 2000 +++ cvsweb_graph.cgi Fri Mar 23 00:03:19 2001 @@ -331,8 +331,9 @@ # # See if the module is in our forbidden list. # -$where =~ m:([^/]*):; +$where =~ m:([^/]*)/(.*):; $module = $1; +my $pathinrepository = $2; if ($module && &forbidden_module($module)) { &fatal("403 Forbidden", "Access to $where forbidden."); } @@ -499,7 +500,7 @@ next if ($input{'hidenonreadable'} && !(-r "$fullname/$_")); if (s|^Attic/||) { - $attic = " (in the Attic) " . $hideAtticToggleLink; + $attic = " (in the Attic) " . $hideAtticToggleLink; } else { $attic = ""; @@ -530,7 +531,7 @@ else { print &link($diricon,$url); } - print " ", &link($_ . "/", $url), $attic; + print " ", &link($_ . "/", $url), $attic; if ($_ eq "Attic") { print "  Graph"; +#*** print " " if ($dirtable); download_link($fileurl, $rev, $rev, @@ -2349,7 +2358,7 @@ $text = $text . "s"; } if ($num > 0) { - return $num . " " . $text; + return $num . " " . $text; } else { return ""; @@ -2368,7 +2377,7 @@ # this function works correct for time >= 2 seconds if ($secs < 2) { - return "very little time"; + return "very little time"; } my %desc = (1 , 'second', @@ -2394,7 +2403,7 @@ my $resttime = plural_write(int ($rest / $break), $desc{"$break"}); if ($resttime) { - $retval = $retval . ", " . $resttime; + $retval = $retval . ", " . $resttime; } } debian/patches/0000755000000000000000000000000012211651111010604 5ustar debian/patches/series0000644000000000000000000000001412211651052012020 0ustar debian-past debian/patches/debian-past0000644000000000000000000003340212211651111012720 0ustar Description: Patches that were in Debian before native got banned Author: Mark Brown --- cvsgraph-1.7.0.orig/configure.in +++ cvsgraph-1.7.0/configure.in @@ -73,8 +73,6 @@ AC_PROG_LEX AC_PROG_YACC AC_PATH_PROG(ac_prog_pkg_config, pkg-config) -AC_CHECK_LIB(m, sqrt) - AC_CHECK_LIB(freetype, FT_Load_Glyph) if test "$ac_cv_lib_freetype_FT_Load_Glyph" != "yes" then @@ -84,6 +82,8 @@ fi # find out what the GD library uses AX_CHECK_GD +AC_CHECK_LIB(m, atan2) + # Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS([getopt.h sys/wait.h gd.h]) --- /dev/null +++ cvsgraph-1.7.0/contrib/Makefile @@ -0,0 +1,307 @@ +# Makefile.in generated by automake 1.10 from Makefile.am. +# contrib/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +pkgdatadir = $(datadir)/cvsgraph +pkglibdir = $(libdir)/cvsgraph +pkgincludedir = $(includedir)/cvsgraph +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +subdir = contrib +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ + $(srcdir)/cvsgraphwrapper.php.in $(srcdir)/mkimage.php.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = mkimage.php cvsgraphwrapper.php +SOURCES = +DIST_SOURCES = +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /home/broonie/src/packages/cvsgraph/cvsgraph-1.7.0/missing --run aclocal-1.10 +AMTAR = ${SHELL} /home/broonie/src/packages/cvsgraph/cvsgraph-1.7.0/missing --run tar +AUTOCONF = ${SHELL} /home/broonie/src/packages/cvsgraph/cvsgraph-1.7.0/missing --run autoconf +AUTOHEADER = ${SHELL} /home/broonie/src/packages/cvsgraph/cvsgraph-1.7.0/missing --run autoheader +AUTOMAKE = ${SHELL} /home/broonie/src/packages/cvsgraph/cvsgraph-1.7.0/missing --run automake-1.10 +AWK = gawk +CC = gcc +CCDEPMODE = depmode=gcc3 +CFLAGS = -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security +CPP = gcc -E +CPPFLAGS = -D_FORTIFY_SOURCE=2 +CYGPATH_W = echo +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /bin/grep -E +EXEEXT = +GDLIB_CONFIG = +GD_CFLAGS = +GD_LDFLAGS = +GD_LIBS = +GREP = /bin/grep +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +LDFLAGS = -Wl,-z,relro +LEX = flex +LEXLIB = -lfl +LEX_OUTPUT_ROOT = lex.yy +LIBOBJS = +LIBS = -lfreetype -lm +LTLIBOBJS = +MAKEINFO = ${SHELL} /home/broonie/src/packages/cvsgraph/cvsgraph-1.7.0/missing --run makeinfo +MKDIR_P = /bin/mkdir -p +OBJEXT = o +PACKAGE = cvsgraph +PACKAGE_BUGREPORT = cvsgraph@akhphd.au.dk +PACKAGE_NAME = cvsgraph +PACKAGE_STRING = cvsgraph 1.7.0 +PACKAGE_TARNAME = cvsgraph +PACKAGE_VERSION = 1.7.0 +PATH_SEPARATOR = : +SET_MAKE = +SHELL = /bin/bash +STRIP = +VERSION = 1.7.0 +YACC = bison -y +YFLAGS = +abs_builddir = /home/broonie/src/packages/cvsgraph/cvsgraph-1.7.0/contrib +abs_srcdir = /home/broonie/src/packages/cvsgraph/cvsgraph-1.7.0/contrib +abs_top_builddir = /home/broonie/src/packages/cvsgraph/cvsgraph-1.7.0 +abs_top_srcdir = /home/broonie/src/packages/cvsgraph/cvsgraph-1.7.0 +ac_ct_CC = gcc +ac_prog_pkg_config = /usr/bin/pkg-config +am__include = include +am__leading_dot = . +am__quote = +am__tar = ${AMTAR} chof - "$$tardir" +am__untar = ${AMTAR} xf - +bindir = ${exec_prefix}/bin +build_alias = +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share +docdir = ${datarootdir}/doc/${PACKAGE_TARNAME} +dvidir = ${docdir} +exec_prefix = ${prefix} +host_alias = +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${prefix}/share/info +install_sh = $(SHELL) /home/broonie/src/packages/cvsgraph/cvsgraph-1.7.0/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${prefix}/share/man +mkdir_p = /bin/mkdir -p +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /usr +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = . +sysconfdir = /etc/cvsgraph +target_alias = +top_builddir = .. +top_srcdir = .. +AUTOMAKE_OPTIONS = gnu +CLEANFILES = cvsgraphwrapper.php mkimage.php +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu contrib/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu contrib/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +mkimage.php: $(top_builddir)/config.status $(srcdir)/mkimage.php.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +cvsgraphwrapper.php: $(top_builddir)/config.status $(srcdir)/cvsgraphwrapper.php.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: --- /dev/null +++ cvsgraph-1.7.0/contrib/cvsgraphwrapper.php @@ -0,0 +1,69 @@ + + + + + <?php echo "CvsGraph of '$f'\n"; ?> + + + + +
+CvsGraph of '$f'\n"; + + /* Generate an imagemap */ + $mapname = "CvsGraphMap"; + $arg9 = "-9 './'"; + $arg8 = "-8 '$ucr'"; + $arg0 = "-0 'Branch:'"; + $arg1 = "-1 'Revision:'"; + $arg2 = "-2 'Diff:'"; + $argM = "-M '$mapname'"; + passthru("$cvsgraph $arg0 $arg1 $arg2 $arg8 $arg9 $argM -i -c $cvsgraph_conf -r $sr -m $sm $sf"); + + /* Link a CvsGraph image */ + echo "\"CvsGraph\n"; + echo "

\nClick on the revisions/branches to display them\n"; + echo "
\nClick between the revisions to display the diffs\n"; +?> +


+
+
+Created with CvsGraph +
+ + --- /dev/null +++ cvsgraph-1.7.0/contrib/mkimage.php @@ -0,0 +1,29 @@ + --- cvsgraph-1.7.0.orig/cvsgraph.conf +++ cvsgraph-1.7.0/cvsgraph.conf @@ -124,7 +124,7 @@ # CVS/RCS repository can be found # cvsmodule # -cvsroot = "/var/cvs"; +cvsroot = "/var/lib/cvs"; cvsmodule = ""; # color_bg @@ -132,7 +132,7 @@ cvsmodule = ""; # transparent_bg # Make color_bg the transparent color (only useful with PNG) color_bg = "#ffffff"; -transparent_bg = false; +#transparent_bg = false; # date_format # The strftime(3) format string for date and time debian/README.Debian0000644000000000000000000000101412140713530011217 0ustar CvsGraph ======== CvsGraph is most useful if used through a web interface. There are example php3 scripts in examples directory. There is support for CvsGraph in the upcoming release of viewcvs (0.8). There is also a patch in the examples directory against the CVS version of cvsweb. By default the cvsroot is configured as /var/lib/cvs (the Debian default) to set it to something else change the cvsroot config option in /etc/cvsgraph/cvsgraph.conf to where ever your repository is found. Jon Middleton debian/cvsgraph.dirs0000644000000000000000000000002512140713530011657 0ustar usr/bin etc/cvsgraph debian/rules0000755000000000000000000000310412211650437010245 0ustar #!/usr/bin/make -f # Sample debian/rules that uses debhelper. # GNU copyright 1997 to 1999 by Joey Hess. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 export DPKG_EXPORT_BUILDFLAGS=1 include /usr/share/dpkg/buildflags.mk LDLIBS+=-lm configure: configure-stamp configure-stamp: dh_testdir dh_autoreconf # Add here commands to configure the package. ./configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --sysconfdir=/etc/cvsgraph touch configure-stamp build-indep: build build-arch: build build: configure-stamp build-stamp build-stamp: dh_testdir # Add here commands to compile the package. $(MAKE) touch build-stamp clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp if [ -f Makefile ]; then $(MAKE) distclean ; fi dh_auto_clean dh_clean install: build dh_testdir dh_testroot dh_prep dh_installdirs cp cvsgraph $(CURDIR)/debian/cvsgraph/usr/bin cp cvsgraph.conf $(CURDIR)/debian/cvsgraph/etc/cvsgraph # Build architecture-independent files here. binary-indep: build install # We have nothing to do by default. # Build architecture-dependent files here. binary-arch: build install dh_testdir dh_testroot dh_installdocs dh_installexamples contrib/mkimage.php contrib/cvsgraphwrapper.php contrib/cvsgraph-httpd.conf dh_installman cvsgraph.conf.5 cvsgraph.1 dh_installchangelogs ChangeLog dh_strip dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install configure debian/cvsgraph.docs0000644000000000000000000000000712140713530011646 0ustar README