mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-24 06:52:14 +08:00
added sane-1.0.9, xsane-0.90, profile.xml update, fix link in sgml-dtd-3.1, updated xref in abiword
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@557 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
parent
fc1d0ba7d2
commit
7008de18ae
@ -10,6 +10,12 @@ page in Chapter 1 for details on who wrote what.</para>
|
||||
|
||||
<itemizedlist>
|
||||
|
||||
<listitem><para>January 2nd, 2003 [larry]: PST: Added sane-1.0.9 and
|
||||
xsane-0.90 submitted by Alex Kloss.</para></listitem>
|
||||
|
||||
<listitem><para>January 2nd, 2003 [larry]: Postlfs: Applied patch to
|
||||
profile supplied by James Robertson.</para></listitem>
|
||||
|
||||
<listitem><para>January 2nd, 2003 [larry]: PST: Added sgml-dtd versions
|
||||
3.1 and 4.2.</para></listitem>
|
||||
|
||||
|
@ -76,10 +76,11 @@ Tie-Ten-Quee</emphasis>.</para></listitem>
|
||||
<title>Installation Instruction Authors</title>
|
||||
<itemizedlist>
|
||||
|
||||
<listitem><para>aalib, Alsa, ffmpeg, MPlayer, opendivx, transcode and xvid: <emphasis>Alex Kloss</emphasis></para></listitem>
|
||||
<listitem><para>aalib, Alsa, ffmpeg, MPlayer, opendivx, sane, transcode,
|
||||
xvid and xsane: <emphasis>Alex Kloss</emphasis></para></listitem>
|
||||
|
||||
<listitem><para>AbiWord, at-spi, ATK, audiofile, avifile, bc, bonobo-activation, bug-buddy,
|
||||
cdrdao, cdrtools, cpio, curl, dhcp, DocBook, enlightenment, eog, esound,
|
||||
cdrdao, cdrtools, cpio, curl, dhcp, enlightenment, eog, esound,
|
||||
fcron, fluxbox, FNLIB, gail, galeon, gcc, gconf-editor, gdbm, gedit,
|
||||
gimp, GLib2, gmp, gnat, gnome-applets, gnome-common, gnome-desktop, gnome-games, gnome-libs,
|
||||
gnome-media, gnome-mime-data, gnome-panel, gnome-session,
|
||||
@ -91,8 +92,9 @@ libgnomeui, libgtkhtml, libgtop, libIDL, libogg, librep, librsvg,
|
||||
libvorbis, libwnck, libxml2, libxslt, libzvt, linc, Lunux_PAM, MPlayer,
|
||||
mutt, nautilus, oaf, OpenJade, OpenSP,
|
||||
OpenSSH, ORBit, ORBit2, pan, Pango, pccts, pcre, pkgconfig, postfix,
|
||||
procmail, Python, QT, rep-gtk, ruby, sawfish, scrollkeeper, sgml-common, shadow, unzip,
|
||||
vorbis-tools, wget, XFce, xine, yelp and zip: <emphasis>Larry Lawrence</emphasis></para></listitem>
|
||||
procmail, Python, QT, rep-gtk, ruby, sawfish, scrollkeeper, sgml-common,
|
||||
sgml-dtd, shadow, unzip,
|
||||
vorbis-tools, wget, XFce, xine, xml-dtd, yelp and zip: <emphasis>Larry Lawrence</emphasis></para></listitem>
|
||||
|
||||
<listitem><para>CDParanoia, mpg123, SDL and XMMS: <emphasis>Jeroen
|
||||
Coumans</emphasis></para></listitem>
|
||||
|
@ -31,7 +31,11 @@ as a interactive login shell. The file <filename>~/.bashrc</filename>
|
||||
is read when the shell is invoked as an interactive non-login
|
||||
shell.</para>
|
||||
|
||||
<para>Here is a base <filename>/etc/profile</filename>.</para>
|
||||
<para>Here is a base <filename>/etc/profile</filename>. Comments in the
|
||||
file should explain everything you need. For more information on the
|
||||
escape sequences you can use for your prompt (e.g. the PS1 environment
|
||||
variable) see <filename>info bash</filename> -- Node: Printing a
|
||||
Prompt.</para>
|
||||
|
||||
<para><screen># Begin /etc/profile
|
||||
# Written for Beyond Linux From Scratch
|
||||
@ -94,7 +98,6 @@ export PATH HISTSIZE PS1 LS_COLORS INPUTRC
|
||||
|
||||
# End /etc/profile</screen></para>
|
||||
|
||||
|
||||
<para>Here is a base <filename>/etc/bashrc</filename>. Comments in the
|
||||
file should explain everything you need.</para>
|
||||
|
||||
@ -137,7 +140,7 @@ the file should explain everything you need.</para>
|
||||
# System wide aliases and functions are in /etc/bashrc.
|
||||
|
||||
if [ -f "$HOME/.bashrc" ] ; then
|
||||
. $HOME/.bashrc
|
||||
source $HOME/.bashrc
|
||||
fi
|
||||
|
||||
if [ -d "$HOME/bin" ] ; then
|
||||
@ -163,13 +166,16 @@ file should explain everything you need.</para>
|
||||
# in /etc/bashrc.
|
||||
|
||||
if [ -f "/etc/bashrc" ] ; then
|
||||
. /etc/bashrc
|
||||
source /etc/bashrc
|
||||
fi
|
||||
|
||||
# End ~/.bashrc</screen></para>
|
||||
|
||||
<para>Here is a base <filename>~/.bash_logout</filename>. Comments in
|
||||
the file should explain everything you need.</para>
|
||||
the file should explain everything you need. You will notice that the
|
||||
base <filename>~/.bash_logout</filename> does not include a
|
||||
<userinput>clear</userinput> command. This is because the clear is
|
||||
handled in the <filename>/etc/issue</filename> file.</para>
|
||||
|
||||
<para><screen># Begin ~/.bash_logout
|
||||
# Written for Beyond Linux From Scratch
|
||||
@ -190,4 +196,9 @@ overwrite the global settings. It might be a good idea to create a base
|
||||
<filename>.dircolors</filename> file and place it in the
|
||||
<filename>/etc/skel</filename> directory for new users.</para>
|
||||
|
||||
<para>Ian Macdonald has written an excellent collection of tips and
|
||||
tricks to enhance your shell environment. You can read it online at
|
||||
<ulink
|
||||
url="http://www.caliban.org/bash/index.shtml">http://www.caliban.org/bash/index.shtml</ulink></para>
|
||||
|
||||
</sect1>
|
||||
|
@ -9,6 +9,10 @@
|
||||
|
||||
<!-- Scanning -->
|
||||
<!ENTITY pst-scanning SYSTEM "scanning/scanning.xml">
|
||||
<!ENTITY % sane SYSTEM "scanning/sane/sane.ent">
|
||||
<!ENTITY % xsane SYSTEM "scanning/xsane/xsane.ent">
|
||||
%sane;
|
||||
%xsane;
|
||||
|
||||
<!-- SGML -->
|
||||
<!ENTITY pst-sgml SYSTEM "typesetting/sgml.xml">
|
||||
|
10
pst/scanning/sane.xml
Normal file
10
pst/scanning/sane.xml
Normal file
@ -0,0 +1,10 @@
|
||||
<sect1 id="sane" xreflabel="sane-&sane-version;">
|
||||
<?dbhtml filename="sane.html" dir="pst"?>
|
||||
<title>sane-&sane-version;</title>
|
||||
|
||||
&sane-intro;
|
||||
&sane-inst;
|
||||
&sane-exp;
|
||||
&sane-desc;
|
||||
|
||||
</sect1>
|
18
pst/scanning/sane/sane-desc.xml
Normal file
18
pst/scanning/sane/sane-desc.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<sect2>
|
||||
<title>Contents</title>
|
||||
|
||||
<sect3><title>Backends:</title>
|
||||
<para>See <ulink url="http://www.mostang.com/sane/sane-supported-devices.html"/>
|
||||
for a list of available backends.</para>
|
||||
</sect3>
|
||||
|
||||
<sect3><title>Frontends:</title>
|
||||
<para><userinput>scanimage :</userinput> Command line interface for
|
||||
scanning.</para>
|
||||
<para><userinput>xscanimage :</userinput> Graphical user interface for
|
||||
scanning.</para>
|
||||
<para><userinput>gimp-plugin :</userinput> xscanimage as Gimp-plugin.</para>
|
||||
</sect3>
|
||||
|
||||
</sect2>
|
||||
|
7
pst/scanning/sane/sane-exp.xml
Normal file
7
pst/scanning/sane/sane-exp.xml
Normal file
@ -0,0 +1,7 @@
|
||||
<sect2>
|
||||
<title>Installation command explanations</title>
|
||||
|
||||
<para><userinput>--prefix=/usr :</userinput> All software is going to
|
||||
be installed in directories relative to<filename>/usr</filename>.</para>
|
||||
|
||||
</sect2>
|
35
pst/scanning/sane/sane-inst.xml
Normal file
35
pst/scanning/sane/sane-inst.xml
Normal file
@ -0,0 +1,35 @@
|
||||
<sect2>
|
||||
<title>Installation of sane</title>
|
||||
|
||||
<sect3><title>Preparing your system for scanner access</title>
|
||||
<para>To access your scanner, you will probably need the related kernel
|
||||
drivers. A SCSI scanner will need SCSI drivers, a parallel port scanner
|
||||
needs parallel port support (you should use enhanced EPP modes, too) and
|
||||
an USB scanner will need the USB scanner module and a SCSI system for
|
||||
emulation. Be sure that you have got the necessary devices to access the
|
||||
drivers.</para>
|
||||
</sect3>
|
||||
|
||||
<sect3><title>Installation of sane-backends</title>
|
||||
|
||||
<para>Install sane-backends by running the following commands:</para>
|
||||
|
||||
<para><screen><userinput>./configure --prefix=/usr &&
|
||||
make &&
|
||||
make install
|
||||
</userinput></screen></para>
|
||||
|
||||
</sect3>
|
||||
|
||||
<sect3><title>Installation of sane-frontends</title>
|
||||
|
||||
<para>To install sane-frontends, use the following commands:</para>
|
||||
|
||||
<para><screen><userinput>./configure --prefix=/usr &&
|
||||
make &&
|
||||
make install
|
||||
</userinput></screen></para>
|
||||
|
||||
</sect3>
|
||||
|
||||
</sect2>
|
25
pst/scanning/sane/sane-intro.xml
Normal file
25
pst/scanning/sane/sane-intro.xml
Normal file
@ -0,0 +1,25 @@
|
||||
<sect2>
|
||||
<title>Introduction to sane</title>
|
||||
|
||||
<screen>Required:
|
||||
Download location (HTTP): <ulink url="&sane-download-http;"/>
|
||||
Download location (FTP): <ulink url="&sane-be-download-ftp;"/>
|
||||
<ulink url="&sane-fe-download-ftp;"/>
|
||||
Version used: &sane-version;
|
||||
Package size: &sane-be-size; (Backends), &sane-fe-size; (Frontends)
|
||||
Estimated Disk space required: &sane-be-buildsize; (Backends), &sane-fe-buildsize; (Frontends)</screen>
|
||||
|
||||
<para>SANE is short for Scanner Access Now Easy. Alas, scanner access is
|
||||
not really easy, since every vendor has own protocols. The only known
|
||||
protocol that should bring some unity into this chaos is the TWAIN interface,
|
||||
but this is too unprecise to allow a stable scanning framework. Therefore,
|
||||
SANE comes with its own protocol, so the vendor drivers can't be used.</para>
|
||||
|
||||
<para>SANE is split into backends and frontends. The backends are drivers
|
||||
for the supported scanners. The frontends are user interfaces to access the
|
||||
backends.</para>
|
||||
|
||||
<screen>The frontends will utilize:
|
||||
<xref linkend="xfree86"/>, <xref linkend="GTK"/>, <xref linkend="gimp"/></screen>
|
||||
|
||||
</sect2>
|
13
pst/scanning/sane/sane.ent
Normal file
13
pst/scanning/sane/sane.ent
Normal file
@ -0,0 +1,13 @@
|
||||
<!ENTITY sane SYSTEM "../sane.xml">
|
||||
<!ENTITY sane-intro SYSTEM "sane-intro.xml">
|
||||
<!ENTITY sane-inst SYSTEM "sane-inst.xml">
|
||||
<!ENTITY sane-desc SYSTEM "sane-desc.xml">
|
||||
<!ENTITY sane-exp SYSTEM "sane-exp.xml">
|
||||
<!ENTITY sane-be-buildsize "31 MB">
|
||||
<!ENTITY sane-fe-buildsize "3.1 MB">
|
||||
<!ENTITY sane-version "1.0.9">
|
||||
<!ENTITY sane-download-http "http://www.mostang.com/sane">
|
||||
<!ENTITY sane-be-download-ftp "ftp://ftp.mostang.com/pub/sane/sane-backends-1.0.9.tar.gz">
|
||||
<!ENTITY sane-fe-download-ftp "ftp://ftp.mostang.com/pub/sane/sane-frontends-1.0.9.tar.gz">
|
||||
<!ENTITY sane-be-size "2.2 MB">
|
||||
<!ENTITY sane-fe-size "174 kb">
|
@ -2,6 +2,7 @@
|
||||
<?dbhtml filename="scanning.html" dir="pst"?>
|
||||
<title>Scanning</title>
|
||||
|
||||
<para>Placeholder for sane and xsane.</para>
|
||||
&sane;
|
||||
&xsane;
|
||||
|
||||
</chapter>
|
||||
|
10
pst/scanning/xsane.xml
Normal file
10
pst/scanning/xsane.xml
Normal file
@ -0,0 +1,10 @@
|
||||
<sect1 id="xsane" xreflabel="xsane-&xsane-version;">
|
||||
<?dbhtml filename="xsane.html" dir="pst"?>
|
||||
<title>xsane-&xsane-version;</title>
|
||||
|
||||
&xsane-intro;
|
||||
&xsane-inst;
|
||||
&xsane-exp;
|
||||
&xsane-desc;
|
||||
|
||||
</sect1>
|
9
pst/scanning/xsane/xsane-desc.xml
Normal file
9
pst/scanning/xsane/xsane-desc.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<sect2>
|
||||
<title>Contents</title>
|
||||
|
||||
<para>xsane comes with a graphical user interface, and (if gimp 1.2 is
|
||||
available) a gimp plugin with advanced features. Please refer to the
|
||||
documentation for further support.</para>
|
||||
|
||||
</sect2>
|
||||
|
7
pst/scanning/xsane/xsane-exp.xml
Normal file
7
pst/scanning/xsane/xsane-exp.xml
Normal file
@ -0,0 +1,7 @@
|
||||
<sect2>
|
||||
<title>Installation command explanations</title>
|
||||
|
||||
<para><userinput>--prefix=/usr :</userinput> All software is going to
|
||||
be installed in directories relative to<filename>/usr</filename>.</para>
|
||||
|
||||
</sect2>
|
11
pst/scanning/xsane/xsane-inst.xml
Normal file
11
pst/scanning/xsane/xsane-inst.xml
Normal file
@ -0,0 +1,11 @@
|
||||
<sect2>
|
||||
<title>Installation of xsane</title>
|
||||
|
||||
<para>Install xsane by running the following commands:</para>
|
||||
|
||||
<para><screen><userinput>./configure --prefix=/usr &&
|
||||
make &&
|
||||
make install
|
||||
</userinput></screen></para>
|
||||
|
||||
</sect2>
|
18
pst/scanning/xsane/xsane-intro.xml
Normal file
18
pst/scanning/xsane/xsane-intro.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<sect2>
|
||||
<title>Introduction to xsane</title>
|
||||
|
||||
<screen>Required:
|
||||
Download location (HTTP): <ulink url="&xsane-download-http;"/>
|
||||
Download location (FTP): <ulink url="&xsane-download-ftp;"/>
|
||||
Version used: &xsane-version;
|
||||
Package size: &xsane-size;
|
||||
Estimated Disk space required: &xsane-buildsize;</screen>
|
||||
|
||||
<para>xsane is another frontend for <xref linkend="sane"/>. It has
|
||||
additional features to improve the image quality compared to
|
||||
xscanimage.</para>
|
||||
|
||||
<screen>xsane requires:
|
||||
<xref linkend="sane"/>, <xref linkend="xfree86"/>, <xref linkend="libpng"/>, <xref linkend="GTK"/> and <xref linkend="gimp"/></screen>
|
||||
|
||||
</sect2>
|
10
pst/scanning/xsane/xsane.ent
Normal file
10
pst/scanning/xsane/xsane.ent
Normal file
@ -0,0 +1,10 @@
|
||||
<!ENTITY xsane SYSTEM "../xsane.xml">
|
||||
<!ENTITY xsane-intro SYSTEM "xsane-intro.xml">
|
||||
<!ENTITY xsane-inst SYSTEM "xsane-inst.xml">
|
||||
<!ENTITY xsane-desc SYSTEM "xsane-desc.xml">
|
||||
<!ENTITY xsane-exp SYSTEM "xsane-exp.xml">
|
||||
<!ENTITY xsane-buildsize "16 MB">
|
||||
<!ENTITY xsane-version "0.90">
|
||||
<!ENTITY xsane-download-http "http://www.xsane.org">
|
||||
<!ENTITY xsane-download-ftp "ftp://ftp.mostang.com/pub/sane/xsane/xsane-0.90.tar.gz">
|
||||
<!ENTITY xsane-size "2.5 MB">
|
@ -1,4 +1,4 @@
|
||||
<sect1 id="DocBook" xreflabel="DocBook-&DocBook-version;">
|
||||
<sect1 id="DocBook" xreflabel="xml-dtd-&DocBook-version;">
|
||||
<?dbhtml filename="DocBook.html" dir="pst"?>
|
||||
<title>xml-dtd-&DocBook-version;</title>
|
||||
|
||||
|
@ -14,6 +14,7 @@ is useful for writing reports, letters and other formatted documents.</para>
|
||||
<xref linkend="GLib"/> and <xref linkend="GTK"/>
|
||||
AbiWord will utilize:
|
||||
<xref linkend="expat"/>, <xref linkend="libpng"/>, <xref linkend="popt"/>, <xref linkend="gnome-libs"/>, <xref linkend="gnome-vfs1"/>, <xref linkend="gdk"/>,
|
||||
gal-0.20, bonobo-1.0.20, gnome-print-0.29 and ispell</screen>
|
||||
<xref linkend="gal"/>, <xref linkend="bonobo14"/>, <xref
|
||||
linkend="gnome-print"/> and ispell</screen>
|
||||
|
||||
</sect2>
|
||||
|
Loading…
Reference in New Issue
Block a user