3.48.1 (2020-05-18) - If FileZilla is configured to restore open tabs on startup, the directory trees no longer shrink in size 3.48.1-rc1 (2020-05-12) ! MSW: The settings directory is now initially created with tight permissions restricted to the user's account. Previously the directory could have had inherited too wide permissions if a custom location outside the user's profile directory had been preconfigured. + Redesigned certificate dialog + During directory comparison and comparative search, Ctrl+Shift+A can now be used to select only the highlighted files - Fixed import of settings - Fixed local file editing if the option to track local file changes had been disabled - Fixes to storing associations 3.48.0 (2020-04-27) ! Custom associations for file extensions containing spaces were not saved correctly 3.48.0-rc1 (2020-04-20) + Overhaul of file associations for editing files. The setting to inherit system associations has been removed. When first editing a type of file with no default editor set, a dialog is shown asking which editor to use. The system associatio, if it exists, is a choice in this dialog. - SFTP: Re-added support for AES-GCM which was accidentally removed in 3.46.1 - Fixes for comparative search leaving the program in an inconsistent state when closing the dialog during an ongoing search - Building and running FileZilla now depends on libfilezilla >= 0.20.0 (https://lib.filezilla-project.org/)
48 lines
1.4 KiB
Makefile
48 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.129 2020/06/10 15:22:32 wiz Exp $
|
|
|
|
VERSION= 3.48.1
|
|
DISTNAME= FileZilla_${VERSION}_src
|
|
PKGNAME= filezilla-${VERSION}
|
|
CATEGORIES= net x11
|
|
MASTER_SITES= https://download.filezilla-project.org/client/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://filezilla-project.org/
|
|
COMMENT= FTP, FTPS, and SFTP client with intuitive GUI
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LANGUAGES= c c++17
|
|
USE_TOOLS+= gmake pkg-config msgfmt msgmerge xgettext
|
|
WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
|
|
|
|
CONFIGURE_ARGS+= --disable-autoupdatecheck
|
|
# avoid xdg-utils dependency
|
|
CONFIGURE_ENV+= ac_cv_path_xdgopen=firefox
|
|
|
|
GNU_CONFIGURE_WX_VERSION= no
|
|
|
|
# For C++17.
|
|
GCC_REQD+= 7
|
|
|
|
.include "options.mk"
|
|
|
|
# As of 3.41, 64-bit atomic ops are required
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
CXXFLAGS+= -march=i586
|
|
.endif
|
|
|
|
.include "../../databases/sqlite3/buildlink3.mk"
|
|
.include "../../devel/libidn/buildlink3.mk"
|
|
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.libfilezilla+= libfilezilla>=0.22
|
|
.include "../../net/libfilezilla/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.gnutls+= gnutls>=3.4.0
|
|
.include "../../security/gnutls/buildlink3.mk"
|
|
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
|
BUILDLINK_API_DEPENDS.tinyxml+= tinyxml>=2.6.2nb1
|
|
.include "../../textproc/pugixml/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.wxGTK30+= wxGTK30>=3.0.4
|
|
.include "../../x11/wxGTK30/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|