From owner-svn-ports-all@freebsd.org Mon Jan 18 06:18:51 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 F0448A87802; Mon, 18 Jan 2016 06:18:51 +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 C156717A2; Mon, 18 Jan 2016 06:18:51 +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 u0I6IoQP038739; Mon, 18 Jan 2016 06:18:50 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0I6Io3E038738; Mon, 18 Jan 2016 06:18:50 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201601180618.u0I6Io3E038738@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Mon, 18 Jan 2016 06:18:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r406549 - in head/math/octave-forge-video: . 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-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: Mon, 18 Jan 2016 06:18:52 -0000 Author: stephen Date: Mon Jan 18 06:18:50 2016 New Revision: 406549 URL: https://svnweb.freebsd.org/changeset/ports/406549 Log: - Update to 1.2.1. - Remove broken. Deleted: head/math/octave-forge-video/files/ Modified: head/math/octave-forge-video/Makefile Modified: head/math/octave-forge-video/Makefile ============================================================================== --- head/math/octave-forge-video/Makefile Mon Jan 18 06:16:37 2016 (r406548) +++ head/math/octave-forge-video/Makefile Mon Jan 18 06:18:50 2016 (r406549) @@ -2,23 +2,30 @@ # $FreeBSD$ PORTNAME= octave-forge-video -PORTVERSION= 1.0.2 -PORTREVISION= 14 +PORTVERSION= 1.2.1 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org COMMENT= Octave-forge package ${OCTAVE_PKGNAME} LICENSE= BSD2CLAUSE -LICENSE_FILE= ${WRKSRC}/COPYING +LICENSE_FILE= ${WRKDIR}/${OCTSRC}/COPYING -BROKEN= does not build with octave-4.0.0 - -USES= pkgconfig GNU_CONFIGURE= yes CONFIGURE_ENV+= HOME=${WRKSRC} +# OCTSRC is the name of the directory of the package. +# It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}. +OCTSRC= ${DISTNAME} + +WRKSRC= ${WRKDIR}/${OCTSRC}/src + LIB_DEPENDS+= libavcodec.so:${PORTSDIR}/multimedia/ffmpeg .include "${.CURDIR}/../../Mk/bsd.octave.mk" + +post-build: + ${RM} -f ${WRKSRC}/Makefile ${WRKSRC}/configure + cd ${WRKDIR} && ${TAR} cfz ${DISTNAME}.tar.gz ${OCTSRC} + .include