From owner-svn-ports-all@FreeBSD.ORG Fri May 9 23:28:13 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 D339BCA4; Fri, 9 May 2014 23:28:13 +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 A881017C; Fri, 9 May 2014 23:28:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s49NSDmL038901; Fri, 9 May 2014 23:28:13 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s49NSDYk038899; Fri, 9 May 2014 23:28:13 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201405092328.s49NSDYk038899@svn.freebsd.org> From: Dmitry Marakasov Date: Fri, 9 May 2014 23:28:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r353537 - head/lang/whitespace 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 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, 09 May 2014 23:28:13 -0000 Author: amdmi3 Date: Fri May 9 23:28:12 2014 New Revision: 353537 URL: http://svnweb.freebsd.org/changeset/ports/353537 QAT: https://qat.redports.org/buildarchive/r353537/ Log: - Support staging - Convert USE_GMAKE to USES - Use new LIB_DEPENDS syntax - Remove redundant OPTIONS_DEFAULT - Convert single-line pkg-plist to PLIST_FILES - Remove Author lines Deleted: head/lang/whitespace/pkg-plist Modified: head/lang/whitespace/Makefile head/lang/whitespace/pkg-descr Modified: head/lang/whitespace/Makefile ============================================================================== --- head/lang/whitespace/Makefile Fri May 9 23:13:39 2014 (r353536) +++ head/lang/whitespace/Makefile Fri May 9 23:28:12 2014 (r353537) @@ -15,35 +15,25 @@ COMMENT= Interpreter for the Whitespace LICENSE= GPLv2 BUILD_DEPENDS= ghc:${PORTSDIR}/lang/ghc -LIB_DEPENDS= gmp.10:${PORTSDIR}/math/gmp \ - ffi.6:${PORTSDIR}/devel/libffi +LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp \ + libffi.so:${PORTSDIR}/devel/libffi -USES= perl5 +USES= perl5 gmake USE_PERL5= build WRKSRC= ${WRKDIR}/WSpace -USE_GMAKE= yes ALL_TARGET= ${TARGET} -OPTIONS_DEFINE= DOCS EXAMPLES -OPTIONS_DEFAULT= DOCS EXAMPLES - -PORTEXAMPLES= * -PORTDOCS= * +PLIST_FILES= bin/wspace +PORTEXAMPLES= * +PORTDOCS= * -NO_STAGE= yes -.include +OPTIONS_DEFINE= DOCS EXAMPLES do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/wspace ${PREFIX}/bin - -post-install: -.if ${PORT_OPTIONS:MEXAMPLES} - ${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR} -.endif -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/docs/tutorial.html ${DOCSDIR} -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/wspace ${STAGEDIR}${PREFIX}/bin + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/docs/tutorial.html ${STAGEDIR}${DOCSDIR} .include Modified: head/lang/whitespace/pkg-descr ============================================================================== --- head/lang/whitespace/pkg-descr Fri May 9 23:13:39 2014 (r353536) +++ head/lang/whitespace/pkg-descr Fri May 9 23:28:12 2014 (r353537) @@ -5,7 +5,4 @@ Only spaces, tabs, and newlines are cons This port is a prototype interpreter for the Whitespace programming language written in Haskell. -Author: Edwin Brady - Chris Morris - WWW: http://compsoc.dur.ac.uk/whitespace/