From owner-svn-ports-head@freebsd.org Wed Oct 25 08:35:28 2017 Return-Path: Delivered-To: svn-ports-head@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 2446FE42DCE; Wed, 25 Oct 2017 08:35:28 +0000 (UTC) (envelope-from pizzamig@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 E60513214; Wed, 25 Oct 2017 08:35:27 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9P8ZRLw044537; Wed, 25 Oct 2017 08:35:27 GMT (envelope-from pizzamig@FreeBSD.org) Received: (from pizzamig@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9P8ZQ1W044535; Wed, 25 Oct 2017 08:35:26 GMT (envelope-from pizzamig@FreeBSD.org) Message-Id: <201710250835.v9P8ZQ1W044535@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pizzamig set sender to pizzamig@FreeBSD.org using -f From: Luca Pizzamiglio Date: Wed, 25 Oct 2017 08:35:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r452834 - in head/lang/see: . files X-SVN-Group: ports-head X-SVN-Commit-Author: pizzamig X-SVN-Commit-Paths: in head/lang/see: . files X-SVN-Commit-Revision: 452834 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Oct 2017 08:35:28 -0000 Author: pizzamig Date: Wed Oct 25 08:35:26 2017 New Revision: 452834 URL: https://svnweb.freebsd.org/changeset/ports/452834 Log: lang/see: Fix license Fix also other lint issues. PR: 222537 Submitted by: yasu@utahime.org Approved by: numisemis@yahoo.com (maintainer) Approved by: lme (mentor) Differential Revision: https://reviews.freebsd.org/D12780 Modified: head/lang/see/Makefile head/lang/see/files/patch-libsee_dtoa.c Modified: head/lang/see/Makefile ============================================================================== --- head/lang/see/Makefile Wed Oct 25 06:16:11 2017 (r452833) +++ head/lang/see/Makefile Wed Oct 25 08:35:26 2017 (r452834) @@ -13,7 +13,12 @@ MASTER_SITES= http://download.openpkg.org/components/c MAINTAINER= numisemis@yahoo.com COMMENT= Simple ECMAScript Engine (SEE) -LICENSE= BSD +LICENSE= BSD3CLAUSE DTOA.C +LICENSE_COMB= multi +LICENSE_NAME_DTOA.C= License of dtoa.c +LICENSE_FILE_BSD3CLAUSE= ${WRKSRC}/COPYING +LICENSE_FILE_DTOA.C= ${WRKSRC}/COPYING +LICENSE_PERMS_DTOA.C= ${_LICENSE_PERMS_DEFAULT} BROKEN_aarch64= fails to configure: floating point not detected: Exactly one of IEEE_8087, IEEE_MC68k, VAX, or IBM should be defined BROKEN_armv6= fails to configure: floating point not detected: Exactly one of IEEE_8087, IEEE_MC68k, VAX, or IBM should be defined @@ -25,8 +30,8 @@ DEBUG_DESC= Internal SEE library debugging CONFLICTS= see-devel-[0-9]* -USE_LDCONFIG= yes USES= libtool pathfix perl5 +USE_LDCONFIG= yes USE_PERL5= build GNU_CONFIGURE= yes INSTALL_TARGET= install-strip Modified: head/lang/see/files/patch-libsee_dtoa.c ============================================================================== --- head/lang/see/files/patch-libsee_dtoa.c Wed Oct 25 06:16:11 2017 (r452833) +++ head/lang/see/files/patch-libsee_dtoa.c Wed Oct 25 08:35:26 2017 (r452834) @@ -1,6 +1,6 @@ ---- libsee/dtoa.c.orig 2009-04-26 23:04:58.000000000 +0200 -+++ libsee/dtoa.c 2015-03-16 15:46:21.218950229 +0100 -@@ -252,6 +252,14 @@ +--- libsee/dtoa.c.orig 2009-04-26 21:04:58 UTC ++++ libsee/dtoa.c +@@ -252,6 +252,14 @@ static double private_mem[PRIVATE_mem], #include "math.h" #endif