Received: by mail.netbsd.org (Postfix, from userid 605) id B5AB784DB5; Sun, 29 Jul 2018 23:23:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A2BB084D8A for ; Sun, 29 Jul 2018 23:23:10 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id NDxJzZP0GZZh for ; Sun, 29 Jul 2018 23:23:10 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id D986C84D35 for ; Sun, 29 Jul 2018 23:23:09 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BE402FBEC; Sun, 29 Jul 2018 23:23:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_15329065894180" MIME-Version: 1.0 Date: Sun, 29 Jul 2018 23:23:09 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/net/ucspi-ssl To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20180729232309.BE402FBEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_15329065894180 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Sun Jul 29 23:23:09 UTC 2018 Modified Files: pkgsrc/net/ucspi-ssl: Makefile options.mk Log Message: Add 'inet6' option to control dependency on ucspi-tcp{6,}. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 pkgsrc/net/ucspi-ssl/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/net/ucspi-ssl/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_15329065894180 Content-Disposition: inline Content-Length: 1670 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/ucspi-ssl/Makefile diff -u pkgsrc/net/ucspi-ssl/Makefile:1.21 pkgsrc/net/ucspi-ssl/Makefile:1.22 --- pkgsrc/net/ucspi-ssl/Makefile:1.21 Wed Jul 25 16:32:34 2018 +++ pkgsrc/net/ucspi-ssl/Makefile Sun Jul 29 23:23:09 2018 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.21 2018/07/25 16:32:34 schmonz Exp $ +# $NetBSD: Makefile,v 1.22 2018/07/29 23:23:09 schmonz Exp $ # DISTNAME= ucspi-ssl-0.99e -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= net MASTER_SITES= https://www.fehcom.de/ipnet/ucspi-ssl/ EXTRACT_SUFX= .tgz @@ -11,8 +11,6 @@ MAINTAINER= schmonz@NetBSD.org HOMEPAGE= https://www.fehcom.de/ipnet/ucspi-ssl.html COMMENT= Command-line tools for SSL client-server applications -DEPENDS+= ucspi-tcp6-[0-9]*:../../net/ucspi-tcp6 - WRKSRC= ${WRKDIR}/host/superscript.com/net/${PKGNAME_NOREV} DJB_SLASHPACKAGE= YES DJB_RESTRICTED= no Index: pkgsrc/net/ucspi-ssl/options.mk diff -u pkgsrc/net/ucspi-ssl/options.mk:1.5 pkgsrc/net/ucspi-ssl/options.mk:1.6 --- pkgsrc/net/ucspi-ssl/options.mk:1.5 Mon Jun 18 11:00:21 2018 +++ pkgsrc/net/ucspi-ssl/options.mk Sun Jul 29 23:23:09 2018 @@ -1,10 +1,16 @@ -# $NetBSD: options.mk,v 1.5 2018/06/18 11:00:21 schmonz Exp $ +# $NetBSD: options.mk,v 1.6 2018/07/29 23:23:09 schmonz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.ucspi-ssl -PKG_SUPPORTED_OPTIONS+= perl +PKG_SUPPORTED_OPTIONS+= inet6 perl .include "../../mk/bsd.options.mk" +.if !empty(PKG_OPTIONS:Minet6) +DEPENDS+= ucspi-tcp6-[0-9]*:../../net/ucspi-tcp6 +.else +DEPENDS+= ucspi-tcp-[0-9]*:../../net/ucspi-tcp +.endif + PLIST_VARS+= perl .if !empty(PKG_OPTIONS:Mperl) .include "../../lang/perl5/buildlink3.mk" --_----------=_15329065894180--