Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 09A4C1A9217 for ; Sun, 29 Nov 2020 19:52:29 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 6516784D73; Sun, 29 Nov 2020 19:52:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A0EF384D53 for ; Sun, 29 Nov 2020 19:52:27 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id WGptV9hSA-yc for ; Sun, 29 Nov 2020 19:52:27 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2811484CE8 for ; Sun, 29 Nov 2020 19:52:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 21010FA9D; Sun, 29 Nov 2020 19:52:27 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_160667954794690" MIME-Version: 1.0 Date: Sun, 29 Nov 2020 19:52:27 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/editors/xemacs-current To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20201129195227.21010FA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_160667954794690 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Nov 29 19:52:27 UTC 2020 Modified Files: pkgsrc/editors/xemacs-current: PLIST options.mk Log Message: xemacs-current: Fix PLIST with ldap enabled To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 pkgsrc/editors/xemacs-current/PLIST cvs rdiff -u -r1.18 -r1.19 pkgsrc/editors/xemacs-current/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_160667954794690 Content-Disposition: inline Content-Length: 1775 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/editors/xemacs-current/PLIST diff -u pkgsrc/editors/xemacs-current/PLIST:1.25 pkgsrc/editors/xemacs-current/PLIST:1.26 --- pkgsrc/editors/xemacs-current/PLIST:1.25 Thu Sep 24 11:51:48 2020 +++ pkgsrc/editors/xemacs-current/PLIST Sun Nov 29 19:52:26 2020 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.25 2020/09/24 11:51:48 hauke Exp $ +@comment $NetBSD: PLIST,v 1.26 2020/11/29 19:52:26 nia Exp $ bin/ellcc bin/gnuattach bin/gnuclient @@ -229,6 +229,7 @@ lib/${DISTNAME}/${MACHINE_GNU_PLATFORM}/ lib/${DISTNAME}/${MACHINE_GNU_PLATFORM}/modules/auto-autoloads.el lib/${DISTNAME}/${MACHINE_GNU_PLATFORM}/modules/auto-autoloads.elc ${PLIST.canna}lib/${DISTNAME}/${MACHINE_GNU_PLATFORM}/modules/canna_api.ell +${PLIST.ldap}lib/${DISTNAME}/${MACHINE_GNU_PLATFORM}/modules/eldap.ell lib/${DISTNAME}/${MACHINE_GNU_PLATFORM}/movemail lib/${DISTNAME}/${MACHINE_GNU_PLATFORM}/profile lib/${DISTNAME}/${MACHINE_GNU_PLATFORM}/rcs2log Index: pkgsrc/editors/xemacs-current/options.mk diff -u pkgsrc/editors/xemacs-current/options.mk:1.18 pkgsrc/editors/xemacs-current/options.mk:1.19 --- pkgsrc/editors/xemacs-current/options.mk:1.18 Sat Jun 8 10:41:00 2019 +++ pkgsrc/editors/xemacs-current/options.mk Sun Nov 29 19:52:26 2020 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.18 2019/06/08 10:41:00 rillig Exp $ +# $NetBSD: options.mk,v 1.19 2020/11/29 19:52:26 nia Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.xemacs PKG_SUPPORTED_OPTIONS+= ldap canna debug @@ -53,7 +53,9 @@ CONFIGURE_ARGS+= --with-site-libraries=$ CONFIGURE_ARGS+= --with-site-runtime-libraries=${PREFIX}/lib .endif +PLIST_VARS+= ldap .if !empty(PKG_OPTIONS:Mldap) +PLIST.ldap= yes CONFIGURE_ARGS+= --with-ldap . include "../../databases/openldap-client/buildlink3.mk" .else --_----------=_160667954794690--