diff --git a/BUGS b/BUGS.txt similarity index 100% rename from BUGS rename to BUGS.txt diff --git a/CHANGES b/CHANGES.txt similarity index 100% rename from CHANGES rename to CHANGES.txt diff --git a/Makefile b/Makefile index a089fc0..3cd9190 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,39 @@ SUBDIRS= lib tools man -all install uninstall clean: +all install uninstall: for dir in $(SUBDIRS) ; do \ (cd $$dir && $(MAKE) $@) ; \ done + +# reStructuredText Makefile + +RST2HTML= rst2html.py +RST2LATEX= rst2latex.py +LATEX2PDF= pdflatex + +RSTFILES= $(wildcard *.txt) +HTMLFILES= $(RSTFILES:.txt=.html) +LATEXFILES= $(RSTFILES:.txt=.tex) +PDFFILES= $(RSTFILES:.txt=.pdf) + +all: html pdf + +html: $(HTMLFILES) +latex: $(LATEXFILES) +pdf: $(PDFFILES) + +%.html: %.txt + $(RST2HTML) $< > $@ + +%.tex: %.txt + $(RST2LATEX) $< > $@ + +%.pdf: %.tex + $(LATEX2PDF) $< + +clean: + for dir in $(SUBDIRS) ; do \ + (cd $$dir && $(MAKE) $@) ; \ + done + rm -f $(HTMLFILES) $(LATEXFILES) $(PDFFILES) + rm -f *.aux *.log *.out diff --git a/README b/README.txt similarity index 100% rename from README rename to README.txt diff --git a/docs/Makefile b/docs/Makefile deleted file mode 100644 index a82a515..0000000 --- a/docs/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# reStructuredText Makefile - -RST2HTML= rst2html.py -RST2LATEX= rst2latex.py -LATEX2PDF= pdflatex - -RSTFILES= $(wildcard *.txt) -HTMLFILES= $(RSTFILES:.txt=.html) -LATEXFILES= $(RSTFILES:.txt=.tex) -PDFFILES= $(RSTFILES:.txt=.pdf) - -all: html pdf - -html: $(HTMLFILES) -latex: $(LATEXFILES) -pdf: $(PDFFILES) - -%.html: %.txt - $(RST2HTML) $< > $@ - -%.tex: %.txt - $(RST2LATEX) $< > $@ - -%.pdf: %.tex - $(LATEX2PDF) $< - -clean: - rm -f $(HTMLFILES) $(LATEXFILES) $(PDFFILES) - rm -f *.aux *.log *.out diff --git a/docs/formats.txt b/formats.txt similarity index 100% rename from docs/formats.txt rename to formats.txt diff --git a/index.txt b/index.txt new file mode 100644 index 0000000..b3bc31e --- /dev/null +++ b/index.txt @@ -0,0 +1,94 @@ +======== +cuetools +======== + +:Author: Svend Sorensen +:Contact: sorensen@users.berlios.de + +cuetools is a set of utilites for working with Cue Sheet (cue) and Table of +Contents (toc) files. + +.. contents:: + +Documentation +============= + +cuetools Docs +------------- + +README.txt_ + Program Notes +CHANGES.txt_ + Change Summary +BUGS.txt_ + Program Bugs/TODO +COPYING_ + License Information +formats.txt_ + Description of the Cue Sheet/Table of Contents File Formats + +Man Pages +--------- + +cuebreakpoints.man_ + cuebreakpoints(1) manual page +cueconvert.man_ + cueconvert(1) manual page +cueprint.man_ + cueprint(1) manual page + +.. _README.txt: README.html +.. _CHANGES.txt: CHANGES.html +.. _BUGS.txt: BUGS.html +.. _COPYING: COPYING +.. _formats.txt: formats.html + +.. _cuebreakpoints.man: man/cuebreakpoints.html +.. _cueconvert.man: man/cueconvert.html +.. _cueprint.man: man/cueprint.html + +Resources +========= + +Project Links +------------- + +* cuetools `project page`_ [1]_ +* cuetools `downloads`_ [1]_ +* cuetools `Subversion repository`_ (ViewCVS_) [1]_ +* cueconvert `web interface`_ + +.. _project page: http://developer.berlios.de/projects/cuetools/ +.. _downloads: http://developer.berlios.de/project/showfiles.php?group_id=2130 +.. _Subversion repository: http://developer.berlios.de/svn/?group_id=2130 +.. _ViewCVS: http://svn.berlios.de/viewcvs/cuetools +.. _web interface: http://sorensen.freeshell.org/cuetools/cueconvert.html + +Mailing Lists [1]_ +------------------ + +cuetools-announce_ + news and announcements (cuetools-announce@lists.berlios.de) +cuetools-users_ + general discussion (cuetools-users@lists.berlios.de) + +.. _cuetools-users: https://lists.berlios.de/pipermail/cuetools-users +.. _cuetools-announce: https://lists.berlios.de/pipermail/cuetools-announce + +See Also +-------- + +* Cdrdao_ +* cdrdao(1) man page - description of toc file format +* shntool_ + +.. _Cdrdao: http://cdrdao.sourceforge.net +.. _shntool: http://www.etree.org/shnutils/shntool/ + +.. [1] Hosted by |BerliOS| + +.. |BerliOS| image:: http://developer.berlios.de/bslogo.php?group_id=2130 + :alt: BerliOS Developer Logo + :target: http://developer.berlios.de + :height: 32 + :width: 124