diff options
author | kris <kris@FreeBSD.org> | 2000-10-30 01:54:34 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2000-10-30 01:54:34 +0000 |
commit | 8c4b4ce90cf546513e8eb4cf6f81cd78ba74d424 (patch) | |
tree | 6bc2e0bb03f3d7f60cb389389c9473a915e5737f /ftp/curl/Makefile | |
parent | 325f62891449e907a3df798642c6d57d2560157e (diff) | |
download | FreeBSD-ports-8c4b4ce90cf546513e8eb4cf6f81cd78ba74d424.zip FreeBSD-ports-8c4b4ce90cf546513e8eb4cf6f81cd78ba74d424.tar.gz |
Update to curl 7.4.1. Adds Kerberos support.
Submitted by: Peter Pentchev <roam@orbitel.bg>
Diffstat (limited to 'ftp/curl/Makefile')
-rw-r--r-- | ftp/curl/Makefile | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/ftp/curl/Makefile b/ftp/curl/Makefile index 120991d..dd4e749 100644 --- a/ftp/curl/Makefile +++ b/ftp/curl/Makefile @@ -6,9 +6,10 @@ # PORTNAME= curl -PORTVERSION= 7.2.1 +PORTVERSION= 7.4.1 CATEGORIES= ftp www -MASTER_SITES= http://curl.haxx.nu/stuff/ \ +MASTER_SITES= http://curl.haxx.se/download/ \ + http://download.sourceforge.net/curl/ \ ftp://ftp.rhrz.uni-bonn.de/pub-koeln/net/inet/ \ ftp://ftp.win.or.jp/pub/network/www/misc/ \ ftp://ftp.sunet.se/pub/www/utilities/curl/ \ @@ -18,7 +19,7 @@ MASTER_SITES= http://curl.haxx.nu/stuff/ \ MAINTAINER= kris@FreeBSD.org MAN1= curl.1 -MAN3= curl_easy_cleanup.3 curl_easy_init.3 curl_easy_perform.3 curl_easy_setopt.3 curl_formparse.3 curl_getdate.3 curl_getenv.3 curl_slist_append.3 curl_slist_free_all.3 curl_version.3 +MAN3= curl_easy_cleanup.3 curl_easy_getinfo.3 curl_easy_init.3 curl_easy_perform.3 curl_easy_setopt.3 curl_formparse.3 curl_getdate.3 curl_getenv.3 curl_slist_append.3 curl_slist_free_all.3 curl_version.3 INSTALLS_SHLIB= yes SHLIB_VER= 0 @@ -28,12 +29,16 @@ PLIST_SUB= SHLIB_VER="${SHLIB_VER}" .if defined(WITH_SSL) USE_OPENSSL= YES -CONFIGURE_ENV+= CPPFLAGS='-I${OPENSSLINC} -I${OPENSSLINC}/openssl' \ - LDFLAGS='-L${OPENSSLLIB}' +.endif + +.if exists(/usr/lib/libkrb.a) && defined(WITH_KERBEROS4) +CONFIGURE_ARGS += --with-krb4=/usr .endif GNU_CONFIGURE= yes USE_AUTOMAKE= yes +USE_BZIP2= yes +USE_GMAKE= yes MAKEFILES= Makefile src/Makefile post-configure: |