Various text fixes and updates.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1461 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-04-18 00:37:51 +00:00
parent 43cb64b9be
commit 1a86c37454
5 changed files with 12 additions and 15 deletions

View file

@ -41,6 +41,7 @@ include $(srcdir)/../Version
TEXI_FILES = \
announce.texi \
base-desc.texi \
install.texi \
gnustep-base.texi \
news.texi \
@ -63,13 +64,13 @@ version.texi: $(srcdir)/../Version
rm -f version.texi
echo '@set GNUSTEP_BASE_VERSION' $(VERSION) \
> version.texi
echo '@set GNUSTEP_BASE_GCC_VERSION' $(GCC_VERSION) \
echo '@set GNUSTEP_BASE_GCC_VERSION $(GCC_VERSION)' \
>> version.texi
if [ $(FTP_MACHINE) ]; then \
echo '@set GNUSTEP_BASE_FTP_MACHINE' $(FTP_MACHINE) \
echo '@set GNUSTEP_BASE_FTP_MACHINE $(FTP_MACHINE)' \
>> version.texi; fi
if [ $(FTP_DIRECTORY) ]; then \
echo '@set GNUSTEP_BASE_FTP_DIRECTORY' $(FTP_DIRECTORY) \
echo '@set GNUSTEP_BASE_FTP_DIRECTORY $(FTP_DIRECTORY)' \
>> version.texi; fi
gnustep-base.dvi: gnustep-base.texi version.texi

View file

@ -8,16 +8,10 @@ available.
@section What is the Gnustep Base Library?
It is a library of general-purpose, non-graphical Objective C objects
designed in the Smalltalk tradition. It includes collection objects for
maintaining groups of objects and C types, streams for I/O to various
destinations, coders for formating objects and C types to streams, ports
for network packet transmission, distributed objects (remote object
messaging), pseudo-random number generators, character string classes,
and time handling facilities.
@include base-desc.texi
The library also includes the foundation classes for the GNUStep
project.
There is more information available at the Gnustep Base Library homepage
at @samp{http://www.cs.rochester.edu/u/mccallum/gnustep-base}.
@ignore
So that developers of non-free, commercial programs can use the library,

View file

@ -337,7 +337,7 @@ The Gnustep Base Library is a library of general-purpose, non-graphical
Objective C objects. For example, it includes classes for strings,
collections, byte streams, typed coders, invocations, notifications,
notification dispatchers, times, network ports, remote object messaging
support, and random number generators.
support, event loops and random number generators.
It provides functionality that aims to implement the
@samp{FoundationKit} portion of the OpenStep standard. In many cases,

View file

@ -10,7 +10,7 @@ The currently released version of the library is
@itemize @bullet
@item The library has changed its name from @samp{libgnustep-base} to
@item The library has changed its name from @samp{libobjects} to
@samp{libgnustep-base}. The Apr 17 ChangeLog entry contains a list of
the way various other names were changed.

View file

@ -1,8 +1,10 @@
@chapter GNU Objective-C Class Library README
@chapter Gnustep Base Library README
@c set the vars GNUSTEP_BASE_VERSION and GCC_VERSION
@include version.texi
@include base-desc.texi
Here is some introductory info to get you started:
@section Initial reading