2009-12-05 17:25:01 +01:00
|
|
|
$NetBSD: patch-aa,v 1.15 2009/12/05 16:25:01 tnn Exp $
|
2009-06-08 12:16:22 +02:00
|
|
|
|
|
|
|
Do not install by default Perl scripts; they are installed via
|
|
|
|
${INSTALL_SCRIPT} if the user set the "perl" option.
|
2001-10-03 16:37:13 +02:00
|
|
|
|
2009-12-01 08:46:48 +01:00
|
|
|
Do not remove the *.la files.
|
|
|
|
|
|
|
|
--- src/Makefile.in.orig 2009-09-16 11:31:08.000000000 +0200
|
|
|
|
+++ src/Makefile.in
|
|
|
|
@@ -980,7 +980,7 @@ top_builddir = @top_builddir@
|
2009-06-08 11:54:50 +02:00
|
|
|
top_srcdir = @top_srcdir@
|
Update to version 3.3.5
Changes:
- prefer ssl over gnutls by default, by popular demand
- refresh MASTER_SITES list
- add perl option, installs optional additional perl scripts
3.3.5:
======
- added mirror --older-than, --size-range and --max-errors options.
- improved CCC support - allowed protected transfers after CCC.
- added support for sftp v5 and v6 (experimental).
- added configure option --with-pager.
- fixed file uploading via protected ftp with openssl.
- fixed compilation on cygwin.
- fixed compilation with sun c++.
3.3.4:
======
- added support for CCC command and ftp:ssl-use-ccc setting.
- remove password from URLs when showing them on status line.
- fixed `open -u' with an URL.
- fixed a rare spinning.
- fixed compilation on HP-UX.
- fixed handling of 334 reply to AUTH command.
3.3.3:
======
- added support for LFTP_HOME environment variable.
- added workaround for proftpd's empty directories.
- fixed `open file:/path'.
- fixed some bugs introduced in 3.3.2.
3.3.2:
======
- fixed a coredump caused by double-free.
3.3.1:
======
- new setting xfer:destination-directory (default for -O option of get, mget).
- fixed path+file combination in http - avoid double slash.
- fixed url composition in hftp, a slash was missed.
- fixed `open ftp.example.com/path'.
- fixed a coredump when a bookmark contained lots of quotable characters.
- fixed a coredump when an error happened while loading CA or CRL
certificates.
- fixed uploading of empty files via ftp with ftp:ssl-protect-data on.
- fixed exit code of slot command.
- fixed a coredump with `kill all'.
- fixed path extraction from html files (broken in 3.3.0).
3.3.0:
======
- now plain files can be current location in http protocol.
- report total bytes transferred and transfer rate in mirror.
- included a script for file verification (verify-file). It can check crc32,
md5sum, gzip, bzip2, rpm, unzip and other things.
- new settings xfer:verify, xfer:verify-command. When xfer:verify is on,
verify-command is launched after successful file transfer (to local disk)
to check the file consistency.
- fixed `source -e' to allow subprocess reading from the terminal.
- fixed `source' to return error exit code if the file is unreadable.
- fixed `source' on large command files - some commands were truncated.
2005-12-04 23:12:07 +01:00
|
|
|
pkgverlibdir = $(pkglibdir)/$(VERSION)
|
|
|
|
bin_SCRIPTS = lftpget
|
|
|
|
-pkgdata_SCRIPTS = import-ncftp import-netscape verify-file convert-netscape-cookies
|
|
|
|
+pkgdata_SCRIPTS = import-ncftp import-netscape
|
|
|
|
noinst_SCRIPTS = ftpget
|
2006-05-01 20:53:31 +02:00
|
|
|
EXTRA_DIST = $(pkgdata_SCRIPTS) $(bin_SCRIPTS) $(noinst_SCRIPTS)
|
|
|
|
lftp_SOURCES = lftp.cc complete.h complete.cc lftp_rl.c lftp_rl.h
|
2009-12-01 08:46:48 +01:00
|
|
|
@@ -1513,7 +1513,7 @@ all-am: Makefile $(LTLIBRARIES) $(PROGRA
|
2006-02-01 17:41:32 +01:00
|
|
|
install-binPROGRAMS: install-libLTLIBRARIES
|
|
|
|
|
2001-10-03 16:37:13 +02:00
|
|
|
installdirs:
|
2006-02-01 17:41:32 +01:00
|
|
|
- for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgverlibdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgdatadir)"; do \
|
2006-08-11 17:19:35 +02:00
|
|
|
+ for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgdatadir)"; do \
|
2009-06-08 11:54:50 +02:00
|
|
|
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
2004-05-27 16:37:16 +02:00
|
|
|
done
|
2001-10-03 16:37:13 +02:00
|
|
|
install: install-am
|
2009-12-05 17:25:01 +01:00
|
|
|
@@ -1631,6 +1631,9 @@ uninstall-am: uninstall-binPROGRAMS unin
|
2009-12-01 08:46:48 +01:00
|
|
|
|
2009-12-05 17:25:01 +01:00
|
|
|
# libtool does not strip modules, do it here.
|
|
|
|
install-data-hook:
|
|
|
|
+ :
|
|
|
|
+
|
|
|
|
+install-data-hook-disabled:
|
|
|
|
@WITH_MODULES_TRUE@ rm -f $(DESTDIR)$(pkgverlibdir)/*.la; \
|
|
|
|
@WITH_MODULES_TRUE@ case " $(LDFLAGS) " in *" -s "*) \
|
|
|
|
@WITH_MODULES_TRUE@ $(STRIP) $(DESTDIR)$(pkgverlibdir)/*.so;; \
|