Received: by mail.netbsd.org (Postfix, from userid 605) id 4D28284D59; Fri, 14 May 2021 13:35:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8874B84D25 for ; Fri, 14 May 2021 13:35:48 +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 AAD9ABRrJsGK for ; Fri, 14 May 2021 13:35:48 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0ADD384CBC for ; Fri, 14 May 2021 13:35:48 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 04D81FA95; Fri, 14 May 2021 13:35:48 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1620999347275970" MIME-Version: 1.0 Date: Fri, 14 May 2021 13:35:47 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/math/eukleides To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210514133548.04D81FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1620999347275970 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Fri May 14 13:35:47 UTC 2021 Modified Files: pkgsrc/math/eukleides: distinfo Added Files: pkgsrc/math/eukleides/patches: patch-build_Makefile Log Message: eukleides: honor environment flags To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/math/eukleides/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/math/eukleides/patches/patch-build_Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1620999347275970 Content-Disposition: inline Content-Length: 2044 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/eukleides/distinfo diff -u pkgsrc/math/eukleides/distinfo:1.9 pkgsrc/math/eukleides/distinfo:1.10 --- pkgsrc/math/eukleides/distinfo:1.9 Tue Nov 3 23:33:32 2015 +++ pkgsrc/math/eukleides/distinfo Fri May 14 13:35:47 2021 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.9 2015/11/03 23:33:32 agc Exp $ +$NetBSD: distinfo,v 1.10 2021/05/14 13:35:47 nia Exp $ SHA1 (eukleides-1.5.4.tar.bz2) = a608ccde9ec412cf9337c71afab613d9fd986427 RMD160 (eukleides-1.5.4.tar.bz2) = 63da73f7147f57f48046071564b9865145cda09e @@ -6,5 +6,6 @@ SHA512 (eukleides-1.5.4.tar.bz2) = 61020 Size (eukleides-1.5.4.tar.bz2) = 77410 bytes SHA1 (patch-Makefile) = 5fee73d0f18d399a3268140addb328b62e4669d8 SHA1 (patch-bash_euktoeps) = 64e5fe59779197e2f03afd88823d53168f7bfa9a +SHA1 (patch-build_Makefile) = eb173e9f91a3f6d2bb5fbc46f1a139abbfea9698 SHA1 (patch-doc_Makefile) = bee61472eb0d70ceb32fa9429e34dae2f6fece4d SHA1 (patch-man_Makefile) = b9224f78d60382bf921d29a25f10dbc596e5754f Added files: Index: pkgsrc/math/eukleides/patches/patch-build_Makefile diff -u /dev/null pkgsrc/math/eukleides/patches/patch-build_Makefile:1.1 --- /dev/null Fri May 14 13:35:47 2021 +++ pkgsrc/math/eukleides/patches/patch-build_Makefile Fri May 14 13:35:47 2021 @@ -0,0 +1,26 @@ +$NetBSD: patch-build_Makefile,v 1.1 2021/05/14 13:35:47 nia Exp $ + +Honor environment. + +--- build/Makefile.orig 2010-04-27 06:31:00.000000000 +0000 ++++ build/Makefile +@@ -7,17 +7,14 @@ BUILD_DIR = $(addsuffix _build,$(BINARY) + DEPEND = $(BUILD_DIR)/depend + COMMON_DIR = ../src/common + MAIN_DIR = ../src/$(BINARY) +-LEX = flex + LFLAGS = -8 +-YACC = bison + YFLAGS = -d +-CC = gcc + IFLAGS = -I$(COMMON_DIR) -I$(MAIN_DIR) -I$(BUILD_DIR) + ifneq ($(strip $(LOCALES)),) + MOFLAGS = -DMO_DIR=\"$(MO_DIR)\" + endif +-CFLAGS = -Wall -D__$(BINARY)__ $(IFLAGS) $(MOFLAGS) +-LDFLAGS = -lncurses -lreadline -lm ++CFLAGS += -Wall -D__$(BINARY)__ $(IFLAGS) $(MOFLAGS) ++LDFLAGS += -lncurses -lreadline -lm + VPATH = $(COMMON_DIR):$(MAIN_DIR):$(BUILD_DIR) + + $(BINARY): --_----------=_1620999347275970--