From owner-svn-ports-all@freebsd.org Thu Jun 1 18:29:20 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C4E6DB7BD6E; Thu, 1 Jun 2017 18:29:20 +0000 (UTC) (envelope-from skreuzer@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 939AA392; Thu, 1 Jun 2017 18:29:20 +0000 (UTC) (envelope-from skreuzer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v51ITJNI070669; Thu, 1 Jun 2017 18:29:19 GMT (envelope-from skreuzer@FreeBSD.org) Received: (from skreuzer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v51ITJkv070667; Thu, 1 Jun 2017 18:29:19 GMT (envelope-from skreuzer@FreeBSD.org) Message-Id: <201706011829.v51ITJkv070667@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: skreuzer set sender to skreuzer@FreeBSD.org using -f From: Steven Kreuzer Date: Thu, 1 Jun 2017 18:29:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442304 - in head/math/moo: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Jun 2017 18:29:20 -0000 Author: skreuzer Date: Thu Jun 1 18:29:19 2017 New Revision: 442304 URL: https://svnweb.freebsd.org/changeset/ports/442304 Log: Define LICENSE Change COPTS to CFLAGS in Makefile Fix 'Inconsistent operator' error for regress target Added: head/math/moo/files/patch-Makefile (contents, props changed) Modified: head/math/moo/Makefile Modified: head/math/moo/Makefile ============================================================================== --- head/math/moo/Makefile Thu Jun 1 17:55:27 2017 (r442303) +++ head/math/moo/Makefile Thu Jun 1 18:29:19 2017 (r442304) @@ -8,6 +8,8 @@ CATEGORIES= math MAINTAINER= skreuzer@FreeBSD.org COMMENT= Calculator that accepts C-like syntax as input +LICENSE= PD + USE_GITHUB= yes GH_ACCOUNT= raylai GH_TAGNAME= ${PORTVERSION} Added: head/math/moo/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/moo/files/patch-Makefile Thu Jun 1 18:29:19 2017 (r442304) @@ -0,0 +1,19 @@ +--- Makefile.orig 2017-06-01 18:24:01 UTC ++++ Makefile +@@ -1,14 +1,14 @@ + PROG= moo + SRCS= moo.c scan.c + CPPFLAGS+= -I${.CURDIR} +-COPTS+= -Wall -W -Wno-unused -Wshadow -pedantic -std=c99 ++CFLAGS+= -Wall -W -Wno-unused -Wshadow -pedantic -std=c99 + CLEANFILES+= moo.c y.tab.h scan.c lex.yy.c + + LOCALBASE?=/usr/local + BINDIR=${LOCALBASE}/bin + MANDIR=${LOCALBASE}/man/cat + +-regress:: ++regress: + cd ${.CURDIR}/regress && ${MAKE} MOO=${.OBJDIR}/moo + + .include