minix/commands/ftp101
Lionel Sambuc 9152e1c5a7 Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
 * tools
 * distribution
 * sets
 * release

The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.

For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.

Regarding new or modifications of Makefiles a few things:
 * Read share/mk/bsd.README
 * If you add a subdirectory, add a Makefile in it, and have it called
   by the parent through the SUBDIR variable.
 * Do not add arbitrary inclusion which crosses to another branch of
   the hierarchy; If you can't do without it, put a comment on why.
   If possible, do not use inclusion at all.
 * Use as much as possible the infrastructure, it is here to make
   life easier, do not fight it.

Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-11-15 16:07:29 +01:00
..
crc.c Initial revision 2006-06-19 14:55:09 +00:00
file.c retire _PROTOTYPE 2012-03-25 16:17:10 +02:00
file.h retire _PROTOTYPE 2012-03-25 16:17:10 +02:00
ftp.1 Initial revision 2006-06-19 14:55:09 +00:00
ftp.c retire _PROTOTYPE 2012-03-25 16:17:10 +02:00
ftp.h retire _PROTOTYPE 2012-03-25 16:17:10 +02:00
local.c retire _PROTOTYPE 2012-03-25 16:17:10 +02:00
local.h retire _PROTOTYPE 2012-03-25 16:17:10 +02:00
Makefile Upgrading build system to new NetBSD revision 2012-11-15 16:07:29 +01:00
net.c endianness compile fixes 2012-06-06 13:15:18 +02:00
net.h retire _PROTOTYPE 2012-03-25 16:17:10 +02:00
other.c retire _PROTOTYPE 2012-03-25 16:17:10 +02:00
other.h retire _PROTOTYPE 2012-03-25 16:17:10 +02:00
README Initial revision 2006-06-19 14:55:09 +00:00
xfer.c retire _PROTOTYPE 2012-03-25 16:17:10 +02:00
xfer.h retire _PROTOTYPE 2012-03-25 16:17:10 +02:00

ftp101 --- An FTP client program  for Minix 2.0 
written by Michael Temari <Michael@TemWare.Com> release 1.01a 2006-06-07

Full download: <a href="/pub/contrib/ftp101.tar.Z">ftp101.tar.Z</a>

FTP is the File Transfer Protocol client that allows you to connect to
a remote FTP server. 

This version should work equally well with Minix 2 and Minix 3.

Release 1.01a 2006-06-07: minor documentation edits
Release 1.01  2005-02-07: minor bug fix 
Release 1.00  2003-12-14: added "ver" command to display current version 
                          and an ftp(1) man page.

Installation: unpack the tarball, it will create an ftp101 directory. Although
this is a replacement for the ftp client provided in the Minix 2.0.0 and later
distributions, it is suggested you unpack and compile in the /usr/local/src
directory.

zcat < ftp101.tar.Z | tar xvfp -

Invoking make -n will show you what the Makefile will do.

make (or make ftp) compiles a new ftp binary, leaving it in the source
directory.

make install compiles the binary and installs it in /usr/bin.

make installman installs the man page in /usr/local/man/man1. The
directory must exist. 

Note: there is a bug in the version of the ftp client distributed with
Minix 2.0.2 and 2.0.3 that causes a \r (0xd) character to be appended
to file names in the destination directory when files are downloaded in
binary mode using the mget command. The bug was corrected in a release 
prior to 1.00.  

Notes by ASW revised 2006-06-07