Received: by mail.netbsd.org (Postfix, from userid 605) id 3652184E29; Sun, 23 Feb 2020 14:09:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B0C9684D75 for ; Sun, 23 Feb 2020 14:09:14 +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 7NuSelRdZov3 for ; Sun, 23 Feb 2020 14:09:14 +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 3295E84D3A for ; Sun, 23 Feb 2020 14:09:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 211A1FBF4; Sun, 23 Feb 2020 14:09:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_15824669549530" MIME-Version: 1.0 Date: Sun, 23 Feb 2020 14:09:14 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/chat/irssi To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20200223140914.211A1FBF4@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. --_----------=_15824669549530 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Feb 23 14:09:14 UTC 2020 Modified Files: pkgsrc/chat/irssi: Makefile options.mk Log Message: irssi: Add an OTR option. Enable it by default. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.95 -r1.96 pkgsrc/chat/irssi/Makefile cvs rdiff -u -r1.21 -r1.22 pkgsrc/chat/irssi/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_15824669549530 Content-Disposition: inline Content-Length: 1414 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/chat/irssi/Makefile diff -u pkgsrc/chat/irssi/Makefile:1.95 pkgsrc/chat/irssi/Makefile:1.96 --- pkgsrc/chat/irssi/Makefile:1.95 Sat Jan 18 21:48:50 2020 +++ pkgsrc/chat/irssi/Makefile Sun Feb 23 14:09:13 2020 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.95 2020/01/18 21:48:50 jperkin Exp $ +# $NetBSD: Makefile,v 1.96 2020/02/23 14:09:13 nia Exp $ DISTNAME= ${IRSSI_DISTNAME} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= chat EXTRACT_SUFX= ${IRSSI_EXTRACT_SUFX} Index: pkgsrc/chat/irssi/options.mk diff -u pkgsrc/chat/irssi/options.mk:1.21 pkgsrc/chat/irssi/options.mk:1.22 --- pkgsrc/chat/irssi/options.mk:1.21 Tue Feb 12 04:43:52 2019 +++ pkgsrc/chat/irssi/options.mk Sun Feb 23 14:09:13 2020 @@ -1,11 +1,19 @@ -# $NetBSD: options.mk,v 1.21 2019/02/12 04:43:52 maya Exp $ +# $NetBSD: options.mk,v 1.22 2020/02/23 14:09:13 nia Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.irssi -PKG_SUPPORTED_OPTIONS= perl truecolor -PKG_SUGGESTED_OPTIONS= perl truecolor +PKG_SUPPORTED_OPTIONS= otr perl truecolor +PKG_SUGGESTED_OPTIONS= otr perl truecolor .include "../../mk/bsd.options.mk" +.if !empty(PKG_OPTIONS:Motr) +# Build it into the main irssi executable instead of a module. +CONFIGURE_ARGS+= --with-otr=static +.include "../../chat/libotr/buildlink3.mk" +.else +CONFIGURE_ARGS+= --with-otr=no +.endif + PLIST_VARS+= perl .if !empty(PKG_OPTIONS:Mperl) PLIST.perl= yes --_----------=_15824669549530--