1PORTNAME= filezilla 2PORTVERSION= 3.68.1 3PORTREVISION= 1 4CATEGORIES= ftp 5MASTER_SITES= FREEBSD_LOCAL/pi 6DISTNAME= FileZilla_${PORTVERSION}_src 7 8MAINTAINER= ports@MidnightBSD.org 9COMMENT= Fast and reliable cross-platform FTP, FTPS, and SFTP client 10WWW= https://filezilla-project.org/ 11 12LICENSE= gpl2+ 13LICENSE_FILE= ${WRKSRC}/COPYING 14 15BUILD_DEPENDS= ${RUN_DEPENDS} 16LIB_DEPENDS= libfilezilla.so:ftp/libfilezilla \ 17 libharfbuzz.so:print/harfbuzz \ 18 libidn.so:dns/libidn \ 19 libnettle.so:security/nettle \ 20 libpugixml.so:textproc/pugixml 21 22RUN_DEPENDS= xdg-open:devel/xdg-utils 23 24TEST_DEPENDS= cppunit-config:devel/cppunit 25TEST_TARGET= check 26 27USES= compiler:c++17-lang gmake gnome iconv:wchar_t libtool localbase \ 28 pkgconfig sqlite tar:xz 29USE_GNOME= cairo gtk30 gdkpixbuf 30INSTALL_TARGET= install-strip 31GNU_CONFIGURE= yes 32CONFIGURE_ARGS+=--enable-fast-install 33GNU_CONFIGURE_MANPREFIX=${PREFIX}/share 34WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} 35 36USE_WX= 3.2 37WX_CONF_ARGS= relative 38 39OPTIONS_DEFINE= DBUS NLS 40OPTIONS_DEFAULT= DBUS 41OPTIONS_SUB= yes 42 43DBUS_LIB_DEPENDS= libdbus-1.so:devel/dbus 44DBUS_CONFIGURE_WITH= dbus 45 46NLS_USES= gettext 47NLS_USES_OFF= gettext-runtime 48NLS_CONFIGURE_OFF= --disable-locales 49 50.if !defined(MAINTAINER_MODE) 51CONFIGURE_ARGS+= --disable-manualupdatecheck 52.endif 53 54.include <bsd.port.mk> 55