tnftp: enable SSL (#1242)

This commit is contained in:
walkerlala
2017-03-23 16:35:54 +00:00
committed by Jérôme Duval
parent 4b90136519
commit 304525f244

View File

@@ -1,8 +1,8 @@
SUMMARY="NetBSD luke FTP client"
DESCRIPTION="NetBSD FTP client with several advanced features"
DESCRIPTION="NetBSD FTP client with several advanced features, such as command-line editting"
HOMEPAGE="http://ftp.netbsd.org/pub/NetBSD/misc/tnftp/"
COPYRIGHT="2001-2015 The NetBSD Foundation, Inc. All rights reserved."
LICENSE="BSD (2-clause)"
HOMEPAGE="http://ftp.netbsd.org/pub/NetBSD/misc/tnftp/"
REVISION="1"
SOURCE_URI="$HOMEPAGE/tnftp-$portVersion.tar.gz"
CHECKSUM_SHA256="c94a8a49d3f4aec1965feea831d4d5bf6f90c65fd8381ee0863d11a5029a43a0"
@@ -16,12 +16,16 @@ PROVIDES="
"
REQUIRES="
haiku
lib:libcrypto
lib:libncurses
lib:libssl
"
BUILD_REQUIRES="
haiku_devel
devel:libcrypto
devel:libncurses
devel:libssl
"
BUILD_PREREQUIRES="
cmd:aclocal
@@ -30,6 +34,7 @@ BUILD_PREREQUIRES="
cmd:autoheader
cmd:gcc
cmd:ld
cmd:pkg_config
cmd:libtoolize
cmd:make
"
@@ -44,7 +49,9 @@ BUILD()
autoconf
automake --add-missing
autoheader
runConfigure ./configure
runConfigure ./configure \
--enable-ssl \
--enable-editcomplete
make
}