From owner-svn-ports-all@FreeBSD.ORG Fri Aug 15 19:44:15 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 088907D6; Fri, 15 Aug 2014 19:44:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 CEA8E2180; Fri, 15 Aug 2014 19:44:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7FJiExh049905; Fri, 15 Aug 2014 19:44:14 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7FJiELB049902; Fri, 15 Aug 2014 19:44:14 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201408151944.s7FJiELB049902@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Fri, 15 Aug 2014 19:44:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r365030 - in head/lang/picoc: . 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.18-1 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: Fri, 15 Aug 2014 19:44:15 -0000 Author: adamw Date: Fri Aug 15 19:44:13 2014 New Revision: 365030 URL: http://svnweb.freebsd.org/changeset/ports/365030 QAT: https://qat.redports.org/buildarchive/r365030/ Log: Fix build on -current, and fix LICENSE and WWW. Added: head/lang/picoc/files/patch-Makefile (contents, props changed) Modified: head/lang/picoc/Makefile head/lang/picoc/pkg-descr Modified: head/lang/picoc/Makefile ============================================================================== --- head/lang/picoc/Makefile Fri Aug 15 19:39:28 2014 (r365029) +++ head/lang/picoc/Makefile Fri Aug 15 19:44:13 2014 (r365030) @@ -8,7 +8,7 @@ MASTER_SITES= GOOGLE_CODE MAINTAINER= ports@FreeBSD.org COMMENT= Very small C interpreter for scripting -LICENSE= BSD +LICENSE= BSD3CLAUSE USES= gmake readline tar:bzip2 @@ -16,9 +16,6 @@ PLIST_FILES= bin/picoc WRKSRC= ${WRKDIR}/${PORTNAME} -MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" -CFLAGS+= -DUNIX_HOST - do-install: ${INSTALL_PROGRAM} ${WRKSRC}/picoc ${STAGEDIR}${PREFIX}/bin/picoc Added: head/lang/picoc/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/picoc/files/patch-Makefile Fri Aug 15 19:44:13 2014 (r365030) @@ -0,0 +1,19 @@ +--- Makefile.orig 2014-08-15 15:40:43.000000000 -0400 ++++ Makefile 2014-08-15 15:41:37.000000000 -0400 +@@ -1,5 +1,5 @@ +-CC=gcc +-CFLAGS=-Wall -pedantic -g -DUNIX_HOST ++CC?=gcc ++CFLAGS+=-Wall -pedantic -g -DUNIX_HOST + LIBS=-lm -lreadline + + TARGET = picoc +@@ -14,7 +14,7 @@ + all: $(TARGET) + + $(TARGET): $(OBJS) +- $(CC) $(CFLAGS) -o $(TARGET) $(OBJS) $(LIBS) ++ $(CC) $(CFLAGS) ${CPPFLAGS} -o $(TARGET) $(OBJS) ${LDFLAGS} $(LIBS) + + test: all + (cd tests; make test) Modified: head/lang/picoc/pkg-descr ============================================================================== --- head/lang/picoc/pkg-descr Fri Aug 15 19:39:28 2014 (r365029) +++ head/lang/picoc/pkg-descr Fri Aug 15 19:44:13 2014 (r365030) @@ -2,4 +2,4 @@ PicoC is a very small C interpreter for scripting a UAV's on-board flight system and it's also very suitable for other robotic, embedded and non-embedded applications too. -WWW: http://code.google.com/p/picoc/ +WWW: http://code.google.com/p/picoc/