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 "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 57DFC7A2F3 for ; Mon, 12 Dec 2016 11:42:51 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id BF058855F7; Mon, 12 Dec 2016 11:42:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4FAAC855E5 for ; Mon, 12 Dec 2016 11:42:50 +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 heH2_yk81RYz for ; Mon, 12 Dec 2016 11:42:49 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id AFD648556E for ; Mon, 12 Dec 2016 11:42:49 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AAFA5FBA6; Mon, 12 Dec 2016 11:42:49 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_148154296912940" MIME-Version: 1.0 Date: Mon, 12 Dec 2016 11:42:49 +0000 From: "Hauke Fath" Subject: CVS commit: pkgsrc/devel/flim To: pkgsrc-changes@NetBSD.org Reply-To: hauke@netbsd.org X-Mailer: log_accum Message-Id: <20161212114249.AAFA5FBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_148154296912940 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: hauke Date: Mon Dec 12 11:42:49 UTC 2016 Modified Files: pkgsrc/devel/flim: Makefile Log Message: Fix the regexp that selects the files to install to work with XEmacs. To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.38 pkgsrc/devel/flim/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_148154296912940 Content-Disposition: inline Content-Length: 1131 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/flim/Makefile diff -u pkgsrc/devel/flim/Makefile:1.37 pkgsrc/devel/flim/Makefile:1.38 --- pkgsrc/devel/flim/Makefile:1.37 Wed Nov 25 12:49:46 2015 +++ pkgsrc/devel/flim/Makefile Mon Dec 12 11:42:49 2016 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.37 2015/11/25 12:49:46 jperkin Exp $ +# $NetBSD: Makefile,v 1.38 2016/12/12 11:42:49 hauke Exp $ DISTNAME= flim-1.14.9 PKGNAME= ${EMACS_PKGNAME_PREFIX}${DISTNAME} -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= devel MASTER_SITES= http://www.kanji.zinbun.kyoto-u.ac.jp/~tomo/comp/emacsen/lisp/flim/flim-1.14/ @@ -45,7 +45,7 @@ post-build: do-install: plist cd ${WRKSRC}; \ - grep -v '^@' ${PLIST} | grep '/site-lisp/flim/' | \ + grep -v '^@' ${PLIST} | grep -E '/site-(|packages/)lisp/flim/' | \ while read file; do \ file=$$( basename $$file ); \ ${INSTALL_DATA} $$file \ @@ -60,6 +60,9 @@ post-install: .include "../../editors/emacs/modules.mk" +.if (${EMACS_FLAVOR} != "xemacs") BUILDLINK_API_DEPENDS.apel+= apel>=10.7 .include "../../devel/apel/buildlink3.mk" +.endif + .include "../../mk/bsd.pkg.mk" --_----------=_148154296912940--