From owner-svn-ports-head@FreeBSD.ORG Tue Aug 14 20:39:31 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4870C1065680; Tue, 14 Aug 2012 20:39:31 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 321568FC14; Tue, 14 Aug 2012 20:39:31 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q7EKdVDi047837; Tue, 14 Aug 2012 20:39:31 GMT (envelope-from stephen@svn.freebsd.org) Received: (from stephen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q7EKdU65047831; Tue, 14 Aug 2012 20:39:30 GMT (envelope-from stephen@svn.freebsd.org) Message-Id: <201208142039.q7EKdU65047831@svn.freebsd.org> From: Stephen Montgomery-Smith Date: Tue, 14 Aug 2012 20:39:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r302531 - in head/math: . octave-forge-lssa X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 14 Aug 2012 20:39:31 -0000 Author: stephen Date: Tue Aug 14 20:39:30 2012 New Revision: 302531 URL: http://svn.freebsd.org/changeset/ports/302531 Log: - New port, math/octave-forge-lssa. 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 lssa. A package implementing tools to compute spectral decompositions of irregularly-spaced time series. Currently includes functions based off the Lomb-Scargle periodogram and Adolf Mathias' implementation for R and C (see http://www.jstatsoft.org/v11/i02). WWW: http://octave.sourceforge.net/ Added: head/math/octave-forge-lssa/ head/math/octave-forge-lssa/Makefile (contents, props changed) head/math/octave-forge-lssa/distinfo (contents, props changed) head/math/octave-forge-lssa/pkg-descr (contents, props changed) head/math/octave-forge-lssa/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Tue Aug 14 20:16:16 2012 (r302530) +++ head/math/Makefile Tue Aug 14 20:39:30 2012 (r302531) @@ -298,6 +298,7 @@ SUBDIR += octave-forge-irsa SUBDIR += octave-forge-java SUBDIR += octave-forge-linear-algebra + SUBDIR += octave-forge-lssa SUBDIR += octave-forge-mapping SUBDIR += octave-forge-mechanics SUBDIR += octave-forge-miscellaneous Added: head/math/octave-forge-lssa/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-lssa/Makefile Tue Aug 14 20:39:30 2012 (r302531) @@ -0,0 +1,27 @@ +# New ports collection makefile for: octave-forge-lssa +# Date created: 14 August 2012 +# Whom: Stephen Montgomery-Smith +# +# $FreeBSD$ +# + +PORTNAME= octave-forge-lssa +PORTVERSION= 0.1.1 +CATEGORIES= math + +MAINTAINER= stephen@FreeBSD.org +COMMENT= Octave-forge package ${OCTAVE_PKGNAME} + +# 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 +.include "${PORTSDIR}/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-lssa/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-lssa/distinfo Tue Aug 14 20:39:30 2012 (r302531) @@ -0,0 +1,2 @@ +SHA256 (octave-forge/lssa-0.1.1.tar.gz) = fb4c91b9284668af7f0e1e7e0592cc9aa3d19fccef8592ac235e196aaad9ec4e +SIZE (octave-forge/lssa-0.1.1.tar.gz) = 24883 Added: head/math/octave-forge-lssa/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-lssa/pkg-descr Tue Aug 14 20:39:30 2012 (r302531) @@ -0,0 +1,13 @@ +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 lssa. + + A package implementing tools to compute spectral decompositions of + irregularly-spaced time series. Currently includes functions based off the + Lomb-Scargle periodogram and Adolf Mathias' implementation for R and C (see + http://www.jstatsoft.org/v11/i02). + +WWW: http://octave.sourceforge.net/ Added: head/math/octave-forge-lssa/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-lssa/pkg-plist Tue Aug 14 20:39:30 2012 (r302531) @@ -0,0 +1 @@ +@comment This file intentionally left empty