diff options
author | sobomax <sobomax@FreeBSD.org> | 2000-07-06 00:34:48 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2000-07-06 00:34:48 +0800 |
commit | db727c541008465f799162c9b20f9166b58b117f (patch) | |
tree | 6ee01905b8f2d9a46ac7f6b12d9057d227ee213c /ftp/ftpcopy/files | |
parent | 23b60d60e5848444f3c972d1b9ddd3848b223b4a (diff) | |
download | freebsd-ports-gnome-db727c541008465f799162c9b20f9166b58b117f.tar.gz freebsd-ports-gnome-db727c541008465f799162c9b20f9166b58b117f.tar.zst freebsd-ports-gnome-db727c541008465f799162c9b20f9166b58b117f.zip |
Add ftpcopy, a two command line ftp tools.
- ftpcopy is a simply FTP client written to copy files or directories
(recursively) from a FTP server.
- ftpls is a FTP client which generates directory listings, either in plain
text or HTML.
Diffstat (limited to 'ftp/ftpcopy/files')
-rw-r--r-- | ftp/ftpcopy/files/patch-aa | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/ftp/ftpcopy/files/patch-aa b/ftp/ftpcopy/files/patch-aa new file mode 100644 index 000000000000..516a8e883925 --- /dev/null +++ b/ftp/ftpcopy/files/patch-aa @@ -0,0 +1,21 @@ +--- Makefile.orig Wed Jul 5 19:14:15 2000 ++++ Makefile Wed Jul 5 19:14:57 2000 +@@ -1,6 +1,6 @@ + VERSION=0.2.2 + PACKAGE=ftpcopy +-prefix=/usr/local ++prefix=$(PREFIX) + + PACKAGE_VERSION=$(PACKAGE)-$(VERSION) + HEADERS= ftpparse.h ftplib.h urlparse.h timeoutio.h +@@ -8,8 +8,8 @@ + EXTRA_DIST= README $(man_MANS) NEWS ChangeLog install.list + INCLUDES=-I. -DPACKAGE_VERSION=\"$(PACKAGE)-$(VERSION)\" -DPACKAGE=\"$(PACKAGE)\" -DVERSION=\"$(VERSION)\" + EXTRA_DIST+=premake.defs premake.pl Makefile.pre premake.rules +-TAR=tar +-CC=gcc ++TAR?=tar ++CC?=gcc + LINK=./link.sh + COMPILE=./compile.sh + AR=ar |