From owner-svn-ports-head@FreeBSD.ORG Mon Jan 27 03:41:34 2014 Return-Path: Delivered-To: svn-ports-head@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 79F94D2B; Mon, 27 Jan 2014 03:41:34 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 664BD198B; Mon, 27 Jan 2014 03:41:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0R3fY70091650; Mon, 27 Jan 2014 03:41:34 GMT (envelope-from stephen@svn.freebsd.org) Received: (from stephen@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0R3fXeP091645; Mon, 27 Jan 2014 03:41:33 GMT (envelope-from stephen@svn.freebsd.org) Message-Id: <201401270341.s0R3fXeP091645@svn.freebsd.org> From: Stephen Montgomery-Smith Date: Mon, 27 Jan 2014 03:41:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341320 - in head/math: . octave-forge-image-acquisition 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.17 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: Mon, 27 Jan 2014 03:41:34 -0000 Author: stephen Date: Mon Jan 27 03:41:33 2014 New Revision: 341320 URL: http://svnweb.freebsd.org/changeset/ports/341320 QAT: https://qat.redports.org/buildarchive/r341320/ Log: - New port math/octave-forge-image-acquisition. 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 image-acquisition. Added: head/math/octave-forge-image-acquisition/ head/math/octave-forge-image-acquisition/Makefile (contents, props changed) head/math/octave-forge-image-acquisition/distinfo (contents, props changed) head/math/octave-forge-image-acquisition/pkg-descr (contents, props changed) head/math/octave-forge-image-acquisition/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Mon Jan 27 03:03:51 2014 (r341319) +++ head/math/Makefile Mon Jan 27 03:41:33 2014 (r341320) @@ -306,6 +306,7 @@ SUBDIR += octave-forge-gsl SUBDIR += octave-forge-ident SUBDIR += octave-forge-image + SUBDIR += octave-forge-image-acquisition SUBDIR += octave-forge-informationtheory SUBDIR += octave-forge-integration SUBDIR += octave-forge-io Added: head/math/octave-forge-image-acquisition/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-image-acquisition/Makefile Mon Jan 27 03:41:33 2014 (r341320) @@ -0,0 +1,32 @@ +# Created by: Stephen Montgomery-Smith +# $FreeBSD$ + +PORTNAME= octave-forge-image-acquisition +PORTVERSION= 0.1.1 +CATEGORIES= math + +MAINTAINER= stephen@FreeBSD.org +COMMENT= Octave-forge package ${OCTAVE_PKGNAME} + +LICENSE= GPLv3 + +LIB_DEPENDS= v4l2:${PORTSDIR}/multimedia/libv4l \ + fltk:${PORTSDIR}/x11-toolkits/fltk + +GNU_CONFIGURE= yes + +# OCTSRC is the name of the directory of the package. +# It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}. +OCTSRC= octave-${OCTAVE_PKGNAME} + +WRKSRC= ${WRKDIR}/${OCTSRC}/src + +.include "${.CURDIR}/../../Mk/bsd.octave.mk" + +post-build: + ${RM} -f ${WRKSRC}/Makefile ${WRKSRC}/configure + ${RM} -f ${WRKSRC}/../inst/DESCRIPTION + ${RM} -f ${WRKSRC}/../inst/ltfat/DESCRIPTION + cd ${WRKDIR} && ${TAR} cfz ${DISTNAME}.tar.gz ${OCTSRC} + +.include Added: head/math/octave-forge-image-acquisition/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-image-acquisition/distinfo Mon Jan 27 03:41:33 2014 (r341320) @@ -0,0 +1,2 @@ +SHA256 (octave-forge/image-acquisition-0.1.1.tar.gz) = 7039e60c8824f15dca2e47f10208c356cb9b1284096839d54d9f1066e320b59d +SIZE (octave-forge/image-acquisition-0.1.1.tar.gz) = 130208 Added: head/math/octave-forge-image-acquisition/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-image-acquisition/pkg-descr Mon Jan 27 03:41:33 2014 (r341320) @@ -0,0 +1,12 @@ +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 image-acquisition. + + The Octave-forge Image Aquisition package provides functions to capture + images from connected devices. Currently only v4l2 is supported. + See also http://wiki.octave.org/Image_acquisition_package + +WWW: http://octave.sourceforge.net/ Added: head/math/octave-forge-image-acquisition/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-image-acquisition/pkg-plist Mon Jan 27 03:41:33 2014 (r341320) @@ -0,0 +1 @@ +@comment This file intentionally left empty