From owner-svn-ports-all@freebsd.org Fri Dec 2 09:00:44 2016 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 91CA4C62F0E; Fri, 2 Dec 2016 09:00:44 +0000 (UTC) (envelope-from amdmi3@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 6C89F1B4E; Fri, 2 Dec 2016 09:00:44 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uB290hWb014391; Fri, 2 Dec 2016 09:00:43 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uB290hFx014387; Fri, 2 Dec 2016 09:00:43 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201612020900.uB290hFx014387@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 2 Dec 2016 09:00:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r427547 - in head/lang/whitespace: . 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: Fri, 02 Dec 2016 09:00:44 -0000 Author: amdmi3 Date: Fri Dec 2 09:00:43 2016 New Revision: 427547 URL: https://svnweb.freebsd.org/changeset/ports/427547 Log: - Fix LICENSE - Add LICENSE_FILE - Switch to options helpers - Regenerate patches Modified: head/lang/whitespace/Makefile head/lang/whitespace/files/patch-Makefile head/lang/whitespace/files/patch-VM.hs head/lang/whitespace/files/patch-main.hs Modified: head/lang/whitespace/Makefile ============================================================================== --- head/lang/whitespace/Makefile Fri Dec 2 08:58:10 2016 (r427546) +++ head/lang/whitespace/Makefile Fri Dec 2 09:00:43 2016 (r427547) @@ -11,7 +11,8 @@ DISTNAME= wspace-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Interpreter for the Whitespace programming language -LICENSE= GPLv2 +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= ghc:lang/ghc LIB_DEPENDS= libgmp.so:math/gmp \ @@ -19,20 +20,24 @@ LIB_DEPENDS= libgmp.so:math/gmp \ USES= perl5 gmake tar:tgz USE_PERL5= build -WRKSRC= ${WRKDIR}/WSpace +WRKSRC= ${WRKDIR}/WSpace ALL_TARGET= ${TARGET} PLIST_FILES= bin/wspace PORTEXAMPLES= * PORTDOCS= * -OPTIONS_DEFINE= DOCS EXAMPLES +OPTIONS_DEFINE= DOCS EXAMPLES do-install: ${INSTALL_PROGRAM} ${WRKSRC}/wspace ${STAGEDIR}${PREFIX}/bin - ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + +do-install-EXAMPLES-on: + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR} - ${MKDIR} ${STAGEDIR}${DOCSDIR} + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/docs/tutorial.html ${STAGEDIR}${DOCSDIR} .include Modified: head/lang/whitespace/files/patch-Makefile ============================================================================== --- head/lang/whitespace/files/patch-Makefile Fri Dec 2 08:58:10 2016 (r427546) +++ head/lang/whitespace/files/patch-Makefile Fri Dec 2 09:00:43 2016 (r427547) @@ -1,6 +1,6 @@ ---- Makefile.orig 2003-03-31 14:39:29.000000000 +0200 -+++ Makefile 2011-03-26 12:58:40.517004812 +0100 -@@ -2,13 +2,12 @@ +--- Makefile.orig 2003-03-31 12:39:29 UTC ++++ Makefile +@@ -2,13 +2,12 @@ GHC = ghc GHCI = ghci SRCS = main.hs Input.hs VM.hs Tokens.hs @@ -17,7 +17,7 @@ ghci: ${GHCI} ${OPTS} main.hs -@@ -19,21 +18,3 @@ +@@ -19,21 +18,3 @@ depend: clean: rm -f ${TARGET} ${OBJS} rm -f *~ *.hi Modified: head/lang/whitespace/files/patch-VM.hs ============================================================================== --- head/lang/whitespace/files/patch-VM.hs Fri Dec 2 08:58:10 2016 (r427546) +++ head/lang/whitespace/files/patch-VM.hs Fri Dec 2 09:00:43 2016 (r427547) @@ -1,5 +1,5 @@ ---- ./VM.hs.orig 2004-05-04 19:10:41.000000000 +0200 -+++ ./VM.hs 2012-05-12 21:52:19.000000000 +0200 +--- VM.hs.orig 2004-05-04 17:10:41 UTC ++++ VM.hs @@ -1,6 +1,6 @@ module VM where Modified: head/lang/whitespace/files/patch-main.hs ============================================================================== --- head/lang/whitespace/files/patch-main.hs Fri Dec 2 08:58:10 2016 (r427546) +++ head/lang/whitespace/files/patch-main.hs Fri Dec 2 09:00:43 2016 (r427547) @@ -1,6 +1,6 @@ ---- ./main.hs.orig 2003-03-31 17:33:44.000000000 +0200 -+++ ./main.hs 2012-05-12 21:52:07.000000000 +0200 -@@ -26,7 +26,7 @@ +--- main.hs.orig 2003-03-31 15:33:44 UTC ++++ main.hs +@@ -26,7 +26,7 @@ import Input import VM import Tokens