From 91263ea95ec16bb376245c6931ea28d65bdcdc88 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sun, 27 Jul 2003 19:18:57 +0000 Subject: Moved to standard repository layout git-svn-id: file:///home/lennart/svn/public/ivcall/trunk@2 e0b13411-74c3-0310-b366-a0654dd0340f --- doc/Makefile.am | 35 ++++++++++++++ doc/README.html.in | 131 +++++++++++++++++++++++++++++++++++++++++++++++++++++ doc/style.css | 12 +++++ 3 files changed, 178 insertions(+) create mode 100644 doc/Makefile.am create mode 100644 doc/README.html.in create mode 100644 doc/style.css (limited to 'doc') diff --git a/doc/Makefile.am b/doc/Makefile.am new file mode 100644 index 0000000..a6b9bb7 --- /dev/null +++ b/doc/Makefile.am @@ -0,0 +1,35 @@ +# $Id$ + +# This file is part of ivcall. +# +# ivcall is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# ivcall is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with ivcall; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. + +noinst_DATA = README.html README +EXTRA_DIST = $(noinst_DATA) style.css README.html.in + +MAINTAINERCLEANFILES = README README.html +CLEANFILES = + +if USE_LYNX +README: README.html + lynx --dump $^ | sed 's,file://localhost/.*/doc/README.html,README,' > $@ + +CLEANFILES += README +endif + +tidy: README.html + tidy -e < README.html + +.PHONY: tidy diff --git a/doc/README.html.in b/doc/README.html.in new file mode 100644 index 0000000..bf7a739 --- /dev/null +++ b/doc/README.html.in @@ -0,0 +1,131 @@ + + + + + +ivcall @PACKAGE_VERSION@ + + + + +

ivcall @PACKAGE_VERSION@

+ +

Copyright 2002,2003 Lennart Poettering <mzvscyhtq [at] itaparica.org>

+ + + +

License

+ +

This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License as +published by the Free Software Foundation; either version 2 of the +License, or (at your option) any later version.

+ +

This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details.

+ +

You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

+ +

News

+ +
Sun July 27 2003:

Version +0.2 released, changes include: many fixes, autoconf support

+ +

Overview

+ +

ivcall is a small utility which may be used to make automated +telephone calls with your isdn4linux supported ISDN +card. Outgoing calls are +supported as well as incoming calls. The audio data recieved +from the peer is written to STDOUT, audio data read from STDIN +is send to the peer. The audio data is in raw 8 bit uLaw 8 KHz format, +without any headers.

+ +

Status

+ +

Version @PACKAGE_VERSION@ is stable and feature complete.

+ +

Documentation

+ +

You may use ivcall as a Unix filter: + +

+ivcall LMSN RMSN < IFILE > OFILE
+
+ +

Replace LMSN by the local MSN and RMSN by the MSN +the program shall call. IFILE must be a raw uLAW 8 KHz +bytesized file, which is be played to the peer. OFILE is the +file the recorded audio data will be written to. It has the same +format as the input file. If no recording (or playback) is desired you +may pipe STDOUT (or STDIN) to /dev/null. + +

Four detailed usage information try:

+ +
+ivcall --help
+
+ +

If you want to create a sample playable with ivcall with your +soundcard, you'll need sox:

+ +
$ rec -t raw -r 8000 -U -b FILE
+ +

Don't forget to plug in a microphone and set the record volume with +aumix or something similar. However, it is recommended to create +audio samples with the telephone itself.

+ +

If you have a wave file you want to convert to a sample playable +with ivcall use sox as well:

+ +
$ sox IFILE -t raw -r 8000 -U -b OFILE
+ +

Requirements

+ +

A newer Linux Kernel (I think 2.0 is good enough, alltough I tested it +only with 2.4) with a compatible device driver (isdn4linux). + +

ivcall was developed and tested on Debian GNU/Linux +"testing" from July 2003, it should work on most other Linux +distributions since it uses GNU autoconf for source code configuration.

+ +

Installation

+ +

As this package is made with the GNU autotools you should run +./configure inside the distribution directory for configuring +the source tree. After that you should run make for +compilation and make install (as root) for installation of +ivcall.

+ +

Acknowledgements

+ +

For the developers of awag (Stefan Szomraky), minicom (Miquel van Smoorenburg) and vbox (Michael Herold), since I looked +on their source codes for learning how to use the isdn4linux modem emulation

+ +

Download

+ +

The newest release is always available from http://www.stud.uni-hamburg.de/~lennart/projects/ivcall/

+ +

The current release is @PACKAGE_VERSION@

+ +
+
Lennart Poettering <mzvscyhtq [at] itaparica.org>, July 2003
+
$Id$
+ + + diff --git a/doc/style.css b/doc/style.css new file mode 100644 index 0000000..0a40aef --- /dev/null +++ b/doc/style.css @@ -0,0 +1,12 @@ +/* $Id$ */ +body { color: black; background-color: white; margin: 0.5cm; } +a:link, a:visited { color: #900000; } +p { margin-left: 0.5cm; margin-right: 0.5cm; } +div.news-date { margin-left: 0.5cm; font-size: 80%; color: #4f0000; } +p.news-text { margin-left: 1cm; } +ul { margin-left: .5cm; } +ol { margin-left: .5cm; } +h1 { color: #00009F; } +h2 { color: #00009F; } +h3 { color: #00004F; margin-left: 0.5cm; } +pre { margin-left: .5cm; background-color: #f0f0f0; padding: 0.4cm;} -- cgit