a1e69bb621
3.8.0 (2014-03-28) + OS X: Implemented the reboot, shutdown and suspend queue completion actions - Popup dialogs no longer automatically open if other dialogs are already open. This prevents FileZilla from becoming unresponsive on OS X - Fix calculation of current transfer speed. In some situations the transfer speed tooltip over the activity indicators showed negative speeds - Fix handling of focus item in local directory listings if connecting to a site with a default local directory 3.8.0-rc1 (2014-03-22) + MSW: Added suspend as new queue completion action - Minor fixes to new updater 3.8.0-beta2 (2014-03-13) + Use Server Name Indication (SNI) With FTP over TLS and HTTP over TLS - Minor updater improvements to further improve reliability - Updated translations 3.8.0-beta1 (2014-03-10) ! Updated GnuTLS to latest version to address vulnerabilities in GnuTLS' certificate validation + Redesigned update dialog - Fix initial state of the 'Enable' item in speed limit menu - Date/Time handling routines now carry precision information, this avoids comparisons of timestamps with different accuracy, e.g. 2014-02-01 and 2014-02-01 10:00 now compare as being identical when using the "Overwrite if newer" file exists action - MSW: Make handling of FD_CLOSE socket events more robust 3.7.4.1 (2014-02-11) - Fix detection of modified files - Additional fixes for site-specific bookmark handling 3.7.4 (2014-02-09) + Added SOCKS4 support - Additional bugfix for site-specific bookmarks - Improve compatibility with servers sending directory listings in Polish language or in EBCDIC encoding - Handle set user id bit when populating permissions dialog. 3.7.4-rc1 (2014-02-01) + Added Corsican and Kabyle translations + SFTP now supports the hmac-sha2-256 algorithm - MSW: Show local timestamps for old files using the correct daylight saving time (DST) offset. - Fix loading of transfer queue if starting FileZilla while another instance is in the process of shutting down - Fix interaction between site-specific bookmarks and multiple tabs - Don't resume uploads when there's zero octets left to transfer - Improve symbolic link detection when using MLSD - If processing a queue with files queued on multiple servers and not storing passwords, the password was not always asked prior to switching servers - Use the correct name element when importing sites - MSW: Show actual Windows version in about dialog regardless of app-compat settings
34 lines
1.1 KiB
Makefile
34 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.52 2014/04/17 12:16:43 wiz Exp $
|
|
|
|
VERSION= 3.8.0
|
|
DISTNAME= FileZilla_${VERSION}_src
|
|
PKGNAME= filezilla-${VERSION}
|
|
CATEGORIES= net x11
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=filezilla/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://filezilla-project.org/
|
|
COMMENT= FTP, FTPS and SFTP client with intuitive GUI
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LANGUAGES= c c++
|
|
USE_TOOLS+= gmake pkg-config msgfmt msgmerge
|
|
WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
|
|
|
|
CONFIGURE_ARGS+= --disable-autoupdatecheck
|
|
# avoid xdg-utils dependency
|
|
CONFIGURE_ENV+= ac_cv_path_xdgopen=firefox
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../databases/sqlite3/buildlink3.mk"
|
|
.include "../../devel/libidn/buildlink3.mk"
|
|
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
|
|
.include "../../security/gnutls/buildlink3.mk"
|
|
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
|
BUILDLINK_API_DEPENDS.tinyxml+= tinyxml>=2.6.2nb1
|
|
.include "../../textproc/tinyxml/buildlink3.mk"
|
|
.include "../../x11/wxGTK28/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|