pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/curl -make the gssapi option default on NetBSD (wh...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/ba7f7b9af754
branches:  trunk
changeset: 539662:ba7f7b9af754
user:      drochner <drochner%pkgsrc.org@localhost>
date:      Mon Mar 10 18:35:54 2008 +0000

description:
-make the gssapi option default on NetBSD (where Kerberos comes for free)
 (suggested by Todd Kover in PR pkg/36144)
-propagate the krb dependency through bl3 if necessary
-bump PKGREVISION

diffstat:

 www/curl/Makefile      |  3 ++-
 www/curl/buildlink3.mk |  5 ++++-
 www/curl/options.mk    |  7 ++++++-
 3 files changed, 12 insertions(+), 3 deletions(-)

diffs (48 lines):

diff -r c1b375a145cb -r ba7f7b9af754 www/curl/Makefile
--- a/www/curl/Makefile Mon Mar 10 16:11:38 2008 +0000
+++ b/www/curl/Makefile Mon Mar 10 18:35:54 2008 +0000
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.79 2008/03/02 14:40:26 bjs Exp $
+# $NetBSD: Makefile,v 1.80 2008/03/10 18:35:54 drochner Exp $
 
 DISTNAME=      curl-7.18.0
+PKGREVISION=   1
 CATEGORIES=    www
 MASTER_SITES=  http://curl.haxx.se/download/ \
                ftp://ftp.sunet.se/pub/www/utilities/curl/
diff -r c1b375a145cb -r ba7f7b9af754 www/curl/buildlink3.mk
--- a/www/curl/buildlink3.mk    Mon Mar 10 16:11:38 2008 +0000
+++ b/www/curl/buildlink3.mk    Mon Mar 10 18:35:54 2008 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.19 2008/03/02 14:40:26 bjs Exp $
+# $NetBSD: buildlink3.mk,v 1.20 2008/03/10 18:35:54 drochner Exp $
 
 BUILDLINK_DEPTH:=      ${BUILDLINK_DEPTH}+
 CURL_BUILDLINK3_MK:=   ${CURL_BUILDLINK3_MK}+
@@ -21,6 +21,9 @@
 .  if !empty(PKG_BUILD_OPTIONS.curl:Mlibssh2)
 .    include "../../security/libssh2/buildlink3.mk"
 .  endif
+.  if !empty(PKG_BUILD_OPTIONS.curl:Mgssapi)
+.    include "../../mk/krb5.buildlink3.mk"
+.  endif
 .endif # CURL_BUILDLINK3_MK
 
 .include "../../devel/libidn/buildlink3.mk"
diff -r c1b375a145cb -r ba7f7b9af754 www/curl/options.mk
--- a/www/curl/options.mk       Mon Mar 10 16:11:38 2008 +0000
+++ b/www/curl/options.mk       Mon Mar 10 18:35:54 2008 +0000
@@ -1,7 +1,12 @@
-# $NetBSD: options.mk,v 1.3 2008/03/03 18:48:21 drochner Exp $
+# $NetBSD: options.mk,v 1.4 2008/03/10 18:35:54 drochner Exp $
 
 PKG_OPTIONS_VAR=       PKG_OPTIONS.curl
 PKG_SUPPORTED_OPTIONS= inet6 libssh2 gssapi
+.include "../../mk/bsd.prefs.mk"
+.if ${OPSYS} == NetBSD
+# Kerberos is built in - no additional dependency
+PKG_SUGGESTED_OPTIONS+=        gssapi
+.endif
 
 .include "../../mk/bsd.options.mk"
 



Home | Main Index | Thread Index | Old Index