[cairo-commit] svgslides/src .cvsignore, NONE, 1.1 Makefile.am, NONE, 1.1 svgslides.in, NONE, 1.1

Carl Worth commit at pdx.freedesktop.org
Thu Feb 10 14:25:29 PST 2005


Committed by: cworth

Update of /cvs/cairo/svgslides/src
In directory gabe:/tmp/cvs-serv13487/src

Added Files:
	.cvsignore Makefile.am svgslides.in 
Log Message:

        * example/Makefile: Move examples into a nice self-contained
        directory with a Makefile.

        * src/svgslides.in: Add a simple binary named svgslides for
        running things, (it finds the stylesheet under
        prefix/share/svgslides).

        * configure.in: Autotool-ify everything.


--- NEW FILE: .cvsignore ---
Makefile
Makefile.in
svgslides

--- NEW FILE: Makefile.am ---
bin_SCRIPTS = svgslides

pkgdata_DATA = svgslides.xsl svgslides.rnc svgslides-index.rnc


--- NEW FILE: svgslides.in ---
#!/bin/sh

ARGV0=`basename $0`

if [ $# -lt 1 ]; then
	echo "Usage: $0 slides.xml" >&2
	echo "Convert slides in a simple XML format to SVG." >&2
	exit 1
fi

prefix=@prefix@
xsltproc --path . @datadir@/svgslides/svgslides.xsl ${1+"$@"}





More information about the cairo-commit mailing list