97817c89b3
0.20.2 (2020-03-10) + Add encrypt_key and decrypt_key to fz::symmetric key - fz::datetime::set_rfc822 now parses the zone offset - Removed unneeded asserts from format.hpp 0.20.1 (2020-02-24) - Fix potential crash after removing the last speed limit bucket - TLS: Fix reported key exchange algorithm and improve details 0.20.0 (2020-02-14) + Added fz::symmetric_key + Added itertions parameter to fz::private_key::from_password + Added fz::base32_encode and fz::base32_decode + Unified all decode functions to always return a vector, added alternatives returning string with a _s suffix in the function name + Changed equal_insensitive_ascii to take (w)string_view
34 lines
943 B
Makefile
34 lines
943 B
Makefile
# $NetBSD: Makefile,v 1.29 2020/03/10 15:29:10 wiz Exp $
|
|
|
|
DISTNAME= libfilezilla-0.20.2
|
|
CATEGORIES= net
|
|
# some kind of direct-download disabling
|
|
#MASTER_SITES= https://dl3.cdn.filezilla-project.org/libfilezilla/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://lib.filezilla-project.org/
|
|
COMMENT= Library for building high-performing, platform-independent programs
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake msgfmt pkg-config
|
|
USE_LANGUAGES= c c++17
|
|
|
|
PKGCONFIG_OVERRIDE+= lib/libfilezilla.pc.in
|
|
|
|
# for C++17
|
|
GCC_REQD+= 7
|
|
|
|
# As of 0.19, 64-bit atomic ops are required
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
CXXFLAGS+= -march=i586
|
|
.endif
|
|
|
|
BUILDLINK_API_DEPENDS.nettle+= nettle>=3.1
|
|
.include "../../security/nettle/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.gnutls+= gnutls>=3.5.7
|
|
.include "../../security/gnutls/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|