pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/flim Fix the regexp that selects the files to in...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/1aecec2af42d
branches:  trunk
changeset: 355768:1aecec2af42d
user:      hauke <hauke%pkgsrc.org@localhost>
date:      Mon Dec 12 11:42:49 2016 +0000

description:
Fix the regexp that selects the files to install to work with XEmacs.

diffstat:

 devel/flim/Makefile |  9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

diffs (33 lines):

diff -r 058ecb03cc43 -r 1aecec2af42d devel/flim/Makefile
--- a/devel/flim/Makefile       Mon Dec 12 10:15:50 2016 +0000
+++ b/devel/flim/Makefile       Mon Dec 12 11:42:49 2016 +0000
@@ -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 @@
 
 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 @@
 
 .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"



Home | Main Index | Thread Index | Old Index