From owner-svn-ports-head@FreeBSD.ORG Fri Feb 20 04:04:57 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1A2EA505; Fri, 20 Feb 2015 04:04:57 +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 04D1894A; Fri, 20 Feb 2015 04:04:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1K44uv7099767; Fri, 20 Feb 2015 04:04:56 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1K44tfF099757; Fri, 20 Feb 2015 04:04:55 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201502200404.t1K44tfF099757@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Fri, 20 Feb 2015 04:04:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r379409 - in head/math: . octave-forge-level-set octave-forge-level-set/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-head@freebsd.org X-Mailman-Version: 2.1.18-1 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: Fri, 20 Feb 2015 04:04:57 -0000 Author: stephen Date: Fri Feb 20 04:04:54 2015 New Revision: 379409 URL: https://svnweb.freebsd.org/changeset/ports/379409 QAT: https://qat.redports.org/buildarchive/r379409/ Log: - New port math/octave-forge-level-set. The octave-forge package is the result of The GNU Octave Repositry project, which is intended to be a central location for custom scripts, functions and extensions for GNU Octave. contains the source for all the functions plus build and install scripts. This is level-set. Added: head/math/octave-forge-level-set/ head/math/octave-forge-level-set/Makefile (contents, props changed) head/math/octave-forge-level-set/distinfo (contents, props changed) head/math/octave-forge-level-set/files/ head/math/octave-forge-level-set/files/patch-FastMarching.cpp (contents, props changed) head/math/octave-forge-level-set/pkg-descr (contents, props changed) head/math/octave-forge-level-set/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Fri Feb 20 01:30:13 2015 (r379408) +++ head/math/Makefile Fri Feb 20 04:04:54 2015 (r379409) @@ -306,6 +306,7 @@ SUBDIR += octave-forge-interval SUBDIR += octave-forge-io SUBDIR += octave-forge-irsa + SUBDIR += octave-forge-level-set SUBDIR += octave-forge-linear-algebra SUBDIR += octave-forge-lssa SUBDIR += octave-forge-ltfat Added: head/math/octave-forge-level-set/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-level-set/Makefile Fri Feb 20 04:04:54 2015 (r379409) @@ -0,0 +1,28 @@ +# Created by: Stephen Montgomery-Smith +# $FreeBSD$ + +PORTNAME= octave-forge-level-set +PORTVERSION= 0.2.0 +CATEGORIES= math + +MAINTAINER= stephen@FreeBSD.org +COMMENT= Octave-forge package ${OCTAVE_PKGNAME} + +LICENSE= GPLv3 + +ALL_TARGET= oct +USES= compiler:c++0x + +# OCTSRC is the name of the directory of the package. +# It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}. +OCTSRC= ${OCTAVE_PKGNAME} + +WRKSRC= ${WRKDIR}/${OCTSRC}/src + +.include "${.CURDIR}/../../Mk/bsd.octave.mk" + +post-build: + ${RM} -f ${WRKSRC}/Makefile ${WRKSRC}/configure + cd ${WRKDIR} && ${TAR} cfz ${DISTNAME}.tar.gz ${OCTSRC} + +.include Added: head/math/octave-forge-level-set/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-level-set/distinfo Fri Feb 20 04:04:54 2015 (r379409) @@ -0,0 +1,2 @@ +SHA256 (octave-forge/level-set-0.2.0.tar.gz) = 1152e20bd84d12b031dab80320965d490289b25a9a9a0589ba171e8b1bea00b9 +SIZE (octave-forge/level-set-0.2.0.tar.gz) = 136521 Added: head/math/octave-forge-level-set/files/patch-FastMarching.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-level-set/files/patch-FastMarching.cpp Fri Feb 20 04:04:54 2015 (r379409) @@ -0,0 +1,10 @@ +--- FastMarching.cpp-orig 2015-02-20 03:51:59.000000000 +0000 ++++ FastMarching.cpp 2015-02-20 03:52:16.000000000 +0000 +@@ -22,6 +22,7 @@ + #include + #include + #include ++#include + + namespace fastMarching + { Added: head/math/octave-forge-level-set/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-level-set/pkg-descr Fri Feb 20 04:04:54 2015 (r379409) @@ -0,0 +1,11 @@ +The octave-forge package is the result of The GNU Octave Repositry project, +which is intended to be a central location for custom scripts, functions and +extensions for GNU Octave. contains the source for all the functions plus +build and install scripts. + +This is level-set. + + Routines for calculating the time-evolution of the level-set equation and + extracting geometric information from the level-set function. + +WWW: http://octave.sourceforge.net/ Added: head/math/octave-forge-level-set/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-level-set/pkg-plist Fri Feb 20 04:04:54 2015 (r379409) @@ -0,0 +1 @@ +@comment This file intentionally left empty