From owner-svn-ports-all@FreeBSD.ORG Sun Feb 1 22:10:51 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6B1593DB; Sun, 1 Feb 2015 22:10:51 +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 3DA89C57; Sun, 1 Feb 2015 22:10:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t11MAp73036577; Sun, 1 Feb 2015 22:10:51 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t11MApNS036576; Sun, 1 Feb 2015 22:10:51 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201502012210.t11MApNS036576@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Sun, 1 Feb 2015 22:10:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r378281 - head/math/octave-forge 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-1 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: Sun, 01 Feb 2015 22:10:51 -0000 Author: stephen Date: Sun Feb 1 22:10:50 2015 New Revision: 378281 URL: https://svnweb.freebsd.org/changeset/ports/378281 QAT: https://qat.redports.org/buildarchive/r378281/ Log: - Add optional dependency math/octave-forge-interval. - Update to 20150201. Modified: head/math/octave-forge/Makefile Modified: head/math/octave-forge/Makefile ============================================================================== --- head/math/octave-forge/Makefile Sun Feb 1 22:04:52 2015 (r378280) +++ head/math/octave-forge/Makefile Sun Feb 1 22:10:50 2015 (r378281) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge -PORTVERSION= 20141214 +PORTVERSION= 20150201 CATEGORIES= math MASTER_SITES= #none DISTFILES= #none @@ -20,8 +20,8 @@ OPTIONS_DEFINE= ACTUARIAL AD AUDIO BENCH DATABASE DATAFRAME DICOM DIVAND ECONOMETRICS ENGINE FENV FITS \ FINANCIAL FL_CORE FPL FUZZY_LOGIC_TOOLKIT GA GEOMETRY GENERAL \ GENERATE_HTML GNUPLOT GSL IDENT IMAGE \ - INFORMATIONTHEORY INTEGRATION IO IRSA LINEAR_ALGEBRA LSSA \ - MAPPING MECHANICS MISCELLANEOUS MISSING_FUNCTIONS MSH \ + INFORMATIONTHEORY INTEGRATION INTERVAL IO IRSA LINEAR_ALGEBRA \ + LSSA MAPPING MECHANICS MISCELLANEOUS MISSING_FUNCTIONS MSH \ MULTICORE MVN NAN NCARRAY NETCDF NLWING2 NNET NURBS OCS \ OCT2MAT OCTCDF OCTCLIP OCTGPR OCTPROJ ODEBVP ODEPKG OPTICS \ OPTIM OPTIMINTERP OUTLIERS PARALLEL PDB PLOT PT_BR QUATERNION \ @@ -62,6 +62,7 @@ IDENT_DESC= Install package: ident IMAGE_DESC= Install package: image INFORMATIONTHEORY_DESC= Install package: informationtheory INTEGRATION_DESC= Install package: integration +INTERVAL_DESC= Install package: interval IO_DESC= Install package: io IRSA_DESC= Install package: irsa LINEAR_ALGEBRA_DESC= Install package: linear-algebra @@ -224,6 +225,9 @@ RUN_DEPENDS+= ${TARBALLS_DIR}/informatio .if ${PORT_OPTIONS:MINTEGRATION} RUN_DEPENDS+= ${TARBALLS_DIR}/integration.tar.gz:${PORTSDIR}/math/octave-forge-integration .endif +.if ${PORT_OPTIONS:MINTERVAL} +RUN_DEPENDS+= ${TARBALLS_DIR}/interval.tar.gz:${PORTSDIR}/math/octave-forge-interval +.endif .if ${PORT_OPTIONS:MIO} RUN_DEPENDS+= ${TARBALLS_DIR}/io.tar.gz:${PORTSDIR}/math/octave-forge-io .endif