pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/coccinelle



Module Name:    pkgsrc
Committed By:   dholland
Date:           Sun Sep 11 05:00:33 UTC 2016

Modified Files:
        pkgsrc/devel/coccinelle: Makefile

Log Message:
Disable use of menhir (an ocaml parser generator) because (a) the
configure script is finding only half of it for some incomprehensible
autoconf reason and this doesn't work, and (b) if forced the current
version of menhir rejects the .mly file anyway. Stick to the
pregenerated version of the parser and an included copy of the support
library.

XXX: Why wasn't this buildlinking menhir? It was linking against
XXX: its library.

PKGREVISION -> 8


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 pkgsrc/devel/coccinelle/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/coccinelle/Makefile
diff -u pkgsrc/devel/coccinelle/Makefile:1.27 pkgsrc/devel/coccinelle/Makefile:1.28
--- pkgsrc/devel/coccinelle/Makefile:1.27       Thu May  5 11:45:37 2016
+++ pkgsrc/devel/coccinelle/Makefile    Sun Sep 11 05:00:33 2016
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.27 2016/05/05 11:45:37 jaapb Exp $
+# $NetBSD: Makefile,v 1.28 2016/09/11 05:00:33 dholland Exp $
 
 DISTNAME=      coccinelle-1.0.0-rc17
 PKGNAME=       ${DISTNAME:S/-rc/rc/}
-PKGREVISION=   7
+PKGREVISION=   8
 CATEGORIES=    devel
 MASTER_SITES=  http://coccinelle.lip6.fr/distrib/
 EXTRACT_SUFX=  .tgz
@@ -13,7 +13,10 @@ COMMENT=     Tool for writing and applying s
 LICENSE=       gnu-gpl-v2
 
 BUILD_DEPENDS+=        ocaml-findlib-[0-9]*:../../devel/ocaml-findlib
-DEPENDS+=      menhir>=20071212:../../devel/menhir
+
+# the current version rejects this package's .mly file
+#DEPENDS+=     menhir>=20071212:../../devel/menhir
+CONFIGURE_ARGS+=       --without-menhir --disable-menhirLib
 
 MAKE_JOBS_SAFE=                no
 



Home | Main Index | Thread Index | Old Index