tnftp_20151004.bb 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. SUMMARY = "Enhanced NetBSD ftp client"
  2. DESCRIPTION = "tnftp (formerly known as lukemftp) is a port of the NetBSD FTP client \
  3. to other systems. It offers many enhancements over the traditional \
  4. BSD FTP client, including command-line editing, command-line fetches \
  5. of FTP and HTTP URLs (including via proxies), command-line uploads of \
  6. FTP URLs, context-sensitive word completion, dynamic progress bar, \
  7. IPv6 support, modification time preservation, paging of local and \
  8. remote files, passive mode support (with fallback to active mode), \
  9. SOCKS support, TIS FWTK gate-ftp server support, and transfer rate \
  10. throttling."
  11. SECTION = "net"
  12. LICENSE = "BSD-4-Clause"
  13. DEPENDS = "ncurses"
  14. SRC_URI = "ftp://ftp.netbsd.org/pub/NetBSD/misc/tnftp/${BPN}-${PV}.tar.gz \
  15. file://tnftp-autotools.patch \
  16. "
  17. inherit autotools update-alternatives pkgconfig
  18. ALTERNATIVE_PRIORITY = "100"
  19. ALTERNATIVE_${PN} = "ftp"
  20. ALTERNATIVE_LINK_NAME_${PN} = "${bindir}/ftp"
  21. ALTERNATIVE_TARGET_${PN} = "${bindir}/tnftp"
  22. FILES_${PN} = "${bindir}/tnftp"
  23. LIC_FILES_CHKSUM = "file://COPYING;md5=6d6796cb166a9bb050958241dad9479e"
  24. SRC_URI[md5sum] = "a49fbe752318d5a7893f900046ea00d5"
  25. SRC_URI[sha256sum] = "c94a8a49d3f4aec1965feea831d4d5bf6f90c65fd8381ee0863d11a5029a43a0"
  26. PACKAGECONFIG ?= "openssl"
  27. PACKAGECONFIG[openssl] = "--enable-ssl, --disable-ssl --with-ssl=no, openssl"