Makefile.in
diffimg
CMakeFiles CMakeTmp CMakeFiles CMakeCache.txt cmake_install.cmake
+*.pdf
AM_CPPFLAGS = @GD_INCLUDES@
+pdfdir = $(pkgdatadir)/doc/pdf
+
+man_MANS = diffimg.1
+pdf_DATA = diffimg.1.pdf
+
if WITH_LIBGD
bin_PROGRAMS = diffimg
endif
diffimg_LDADD = @GD_LIBS@ @MATH_LIBS@
endif
+diffimg.1.pdf: $(srcdir)/diffimg.1
+ - $(GROFF) -Tps -man $(srcdir)/dot.1 | $(PS2PDF) - - >diffimg.1.pdf
+
GRAPH = "digraph G { hello -> world }"
test: diffimg
if `./diffimg hello1.png hello2.png >test2.png`;then echo same;else echo different;fi
CLEANFILES = *.png
-EXTRA_DIST = diffimg.vcproj
+EXTRA_DIST = diffimg.vcproj diffimg.1 diffimg.1.pdf
+DISTCLEANFILES = diffimg.1.pdf
--- /dev/null
+.\" Hey, EMACS: -*- nroff -*-
+.TH DIFFIMG 1 "Jan 31, 2010"
+.SH NAME
+diffimg \- Calculates intersection between two images
+.SH SYNOPSIS
+.B diffimg
+.RI image1
+.RI image2
+.RI [ outimage ]
+.SH DESCRIPTION
+.PP
+\fBdiffimg\fP generates an image where each pixel is the difference between the corresponding pixel
+in each of the two source images. Thus, if the source images are the same the resulting image will
+be black, otherwise it will have regions of non-black where the images differ.
+.PP
+Currently supports: .png, .gif, .jpg, and .ps by using ghostscript
+.SH AUTHOR
+diffimg was written by John Ellson <ellson@research.att.com>
+.PP
+This manual page was written by David Claughton <dave@eclecticdave.com>,
+for the Debian project (but may be used by others).
CMakeFiles
*.cmake
vimdot
+*.pdf
GRAPH = graph
endif
+pdfdir = $(pkgdatadir)/doc/pdf
+
AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/lib/common \
endif
endif
+man_MANS = vimdot.1
+pdf_DATA = vimdot.1.pdf
+
+vimdot.1.pdf: $(srcdir)/vimdot.1
+ - $(GROFF) -Tps -man $(srcdir)/dot.1 | $(PS2PDF) - - >vimdot.1.pdf
+
libgvplugin_xlib_C_la_SOURCES = \
gvplugin_xlib.c \
gvdevice_xlib.c
cp $(top_srcdir)/plugin/xlib/vimdot.sh vimdot
chmod +x vimdot
-EXTRA_DIST = vimdot.sh
-
-DISTCLEANFILES = vimdot
+EXTRA_DIST = vimdot.sh vimdot.1 vimdot.1.pdf
+DISTCLEANFILES = vimdot vimdot.1.pdf
--- /dev/null
+.\" Hey, EMACS: -*- nroff -*-
+.TH VIMDOT 1 "Jan 31, 2010"
+.SH NAME
+vimdot \- Combined text editor and dot viewer
+.SH SYNOPSIS
+.B vimdot
+.RI [ file ]
+.SH DESCRIPTION
+.PP
+\fBvimdot\fP is a simple script which launches the gvim or vim editor along with a GUI window showing the
+dot output of the edited file. The dot output window automatically refreshes everytime the file is saved
+in the editor.
+.PP
+If no filename is given, vimdot will use 'noname.dot' and initialise it with an example graph to get you
+started.
+.SH SEE ALSO
+.br
+vim(1), dot(1)
+.SH AUTHOR
+vimdot was written by John Ellson <ellson@research.att.com>
+.PP
+This manual page was written by David Claughton <dave@eclecticdave.com>,
+for the Debian project (but may be used by others).