From owner-svn-ports-all@freebsd.org Wed Jan 13 03:24:34 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 9F765A6D3F2; Wed, 13 Jan 2016 03:24:34 +0000 (UTC) (envelope-from stephen@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 7630B1ACD; Wed, 13 Jan 2016 03:24:34 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0D3OXPj084985; Wed, 13 Jan 2016 03:24:33 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0D3OXdB084980; Wed, 13 Jan 2016 03:24:33 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201601130324.u0D3OXdB084980@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Wed, 13 Jan 2016 03:24:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r406002 - in head/math: . octave-forge-sparsersb 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.20 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: Wed, 13 Jan 2016 03:24:34 -0000 Author: stephen Date: Wed Jan 13 03:24:32 2016 New Revision: 406002 URL: https://svnweb.freebsd.org/changeset/ports/406002 Log: - New port math/octave-forge-sparsersb. 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 port uses math/librsb, which is quite difficult to install. Therefore this port will not be installed as part of the math/octave-forge meta-port. Added: head/math/octave-forge-sparsersb/ head/math/octave-forge-sparsersb/Makefile (contents, props changed) head/math/octave-forge-sparsersb/distinfo (contents, props changed) head/math/octave-forge-sparsersb/pkg-descr (contents, props changed) head/math/octave-forge-sparsersb/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Wed Jan 13 03:15:40 2016 (r406001) +++ head/math/Makefile Wed Jan 13 03:24:32 2016 (r406002) @@ -377,6 +377,7 @@ SUBDIR += octave-forge-signal SUBDIR += octave-forge-simp SUBDIR += octave-forge-sockets + SUBDIR += octave-forge-sparsersb SUBDIR += octave-forge-specfun SUBDIR += octave-forge-special-matrix SUBDIR += octave-forge-spline-gcvspl Added: head/math/octave-forge-sparsersb/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-sparsersb/Makefile Wed Jan 13 03:24:32 2016 (r406002) @@ -0,0 +1,28 @@ +# Created by: Stephen Montgomery-Smith +# $FreeBSD$ + +PORTNAME= octave-forge-sparsersb +PORTVERSION= 1.0.0 +CATEGORIES= math + +MAINTAINER= stephen@FreeBSD.org +COMMENT= Octave-forge package ${OCTAVE_PKGNAME} + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKDIR}/${OCTSRC}/COPYING + +BUILD_DEPENDS= ${LOCALBASE}/lib/librsb.a:${PORTSDIR}/math/librsb + +# OCTSRC is the name of the directory of the package. +# It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}. +OCTSRC= ${DISTNAME} + +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-sparsersb/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-sparsersb/distinfo Wed Jan 13 03:24:32 2016 (r406002) @@ -0,0 +1,2 @@ +SHA256 (octave-forge/sparsersb-1.0.0.tar.gz) = be106ea9f32d7fbc2ffe67b65bb39650cdfaf34b3bb38a373688f205e471d411 +SIZE (octave-forge/sparsersb-1.0.0.tar.gz) = 79786 Added: head/math/octave-forge-sparsersb/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-sparsersb/pkg-descr Wed Jan 13 03:24:32 2016 (r406002) @@ -0,0 +1,10 @@ +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 sparsersb. + + Interface to the librsb package implementing the RSB sparse matrix format. + +WWW: http://octave.sourceforge.net/ Added: head/math/octave-forge-sparsersb/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-sparsersb/pkg-plist Wed Jan 13 03:24:32 2016 (r406002) @@ -0,0 +1 @@ +@comment This file intentionally left empty