From owner-svn-ports-all@FreeBSD.ORG Sun May 4 20:08:07 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AFA4726A; Sun, 4 May 2014 20:08:07 +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 9C29619A1; Sun, 4 May 2014 20:08:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s44K87mw058903; Sun, 4 May 2014 20:08:07 GMT (envelope-from tdb@svn.freebsd.org) Received: (from tdb@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s44K87KS058902; Sun, 4 May 2014 20:08:07 GMT (envelope-from tdb@svn.freebsd.org) Message-Id: <201405042008.s44K87KS058902@svn.freebsd.org> From: Tim Bishop Date: Sun, 4 May 2014 20:08:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r352969 - head/multimedia/motion 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.17 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, 04 May 2014 20:08:07 -0000 Author: tdb Date: Sun May 4 20:08:07 2014 New Revision: 352969 URL: http://svnweb.freebsd.org/changeset/ports/352969 QAT: https://qat.redports.org/buildarchive/r352969/ Log: The PWCBSD option requires V4L, so remove -DWITHOUT_V4L. I'm not sure why this change was made, but it breaks the PWCBSD option. It looked obviously wrong; it added a dependency on v4l_compat and then disabled it by definining WITHOUT_V4L. Looking at the code it's obvious V4L is required for anything other than network cameras too. Modified: head/multimedia/motion/Makefile Modified: head/multimedia/motion/Makefile ============================================================================== --- head/multimedia/motion/Makefile Sun May 4 18:48:54 2014 (r352968) +++ head/multimedia/motion/Makefile Sun May 4 20:08:07 2014 (r352969) @@ -3,7 +3,7 @@ PORTNAME= motion PORTVERSION= 3.2.12 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= multimedia MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20-%20${PORTVERSION:R}/${PORTVERSION} @@ -50,7 +50,6 @@ KMODDIR= /boot/modules BUILD_DEPENDS+= v4l_compat>=1.0.20060801:${PORTSDIR}/multimedia/v4l_compat RUN_DEPENDS+= ${KMODDIR}/pwc.ko:${PORTSDIR}/multimedia/pwcbsd CONFIGURE_ARGS+=--with-pwcbsd -CFLAGS+= -DWITHOUT_V4L .else CONFIGURE_ARGS+=--without-pwcbsd .endif