Received: by mail.netbsd.org (Postfix, from userid 605) id CF3B784DCD; Fri, 14 Sep 2018 08:43:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CB38384D69 for ; Fri, 14 Sep 2018 08:43:03 +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 vysIdteWhJU0 for ; Fri, 14 Sep 2018 08:43:03 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0B6DE84CBC for ; Fri, 14 Sep 2018 08:43:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 009B2FBF8; Fri, 14 Sep 2018 08:43:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_153691458226960" MIME-Version: 1.0 Date: Fri, 14 Sep 2018 08:43:02 +0000 From: "Filip Hajny" Subject: CVS commit: pkgsrc/textproc/link-grammar To: pkgsrc-changes@NetBSD.org Reply-To: fhajny@netbsd.org X-Mailer: log_accum Message-Id: <20180914084303.009B2FBF8@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. --_----------=_153691458226960 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: fhajny Date: Fri Sep 14 08:43:02 UTC 2018 Modified Files: pkgsrc/textproc/link-grammar: Makefile Log Message: textproc/link-grammar: Force disable the optional Java bindings. Needs c99. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/textproc/link-grammar/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_153691458226960 Content-Disposition: inline Content-Length: 849 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/link-grammar/Makefile diff -u pkgsrc/textproc/link-grammar/Makefile:1.7 pkgsrc/textproc/link-grammar/Makefile:1.8 --- pkgsrc/textproc/link-grammar/Makefile:1.7 Fri Jul 15 11:36:43 2016 +++ pkgsrc/textproc/link-grammar/Makefile Fri Sep 14 08:43:02 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2016/07/15 11:36:43 mef Exp $ +# $NetBSD: Makefile,v 1.8 2018/09/14 08:43:02 fhajny Exp $ DISTNAME= link-grammar-5.3.7 CATEGORIES= textproc @@ -9,11 +9,13 @@ HOMEPAGE= http://www.abisource.com/proje COMMENT= Syntactic parsing library LICENSE= modified-bsd AND gnu-lgpl-v2.1 -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c99 c++ USE_LIBTOOL= yes USE_TOOLS+= pkg-config GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --disable-java-bindings + PKGCONFIG_OVERRIDE+= link-grammar.pc.in .include "../../mk/bsd.pkg.mk" --_----------=_153691458226960--