From owner-svn-ports-head@freebsd.org Sun Aug 13 22:29:43 2017 Return-Path: Delivered-To: svn-ports-head@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 118A2DDF32E; Sun, 13 Aug 2017 22:29:43 +0000 (UTC) (envelope-from ultima@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 D09701B26; Sun, 13 Aug 2017 22:29:42 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7DMTgBs001196; Sun, 13 Aug 2017 22:29:42 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7DMTfHX001194; Sun, 13 Aug 2017 22:29:41 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201708132229.v7DMTfHX001194@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Sun, 13 Aug 2017 22:29:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r447919 - in head/multimedia/motion: . files X-SVN-Group: ports-head X-SVN-Commit-Author: ultima X-SVN-Commit-Paths: in head/multimedia/motion: . files X-SVN-Commit-Revision: 447919 X-SVN-Commit-Repository: ports 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.23 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: Sun, 13 Aug 2017 22:29:43 -0000 Author: ultima Date: Sun Aug 13 22:29:41 2017 New Revision: 447919 URL: https://svnweb.freebsd.org/changeset/ports/447919 Log: * Bump Revision to fix ioctl sign-extension warning * Cleanup Makefile PR: 221241 Submitted by: Reviewed by: matthew (mentor) Approved by: matthew (mentor) MFH: 2017Q3 Differential Revision: https://reviews.freebsd.org/D11993 Added: head/multimedia/motion/files/patch-video2.c (contents, props changed) Modified: head/multimedia/motion/Makefile Modified: head/multimedia/motion/Makefile ============================================================================== --- head/multimedia/motion/Makefile Sun Aug 13 22:25:15 2017 (r447918) +++ head/multimedia/motion/Makefile Sun Aug 13 22:29:41 2017 (r447919) @@ -3,8 +3,8 @@ PORTNAME= motion PORTVERSION= 4.0.1 -PORTREVISION= 3 DISTVERSIONPREFIX= release- +PORTREVISION= 4 CATEGORIES= multimedia MAINTAINER= ports@FreeBSD.org @@ -13,10 +13,11 @@ COMMENT= Motion detection application LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING +USES= autoreconf gmake jpeg localbase pkgconfig USE_GITHUB= yes GH_ACCOUNT= Motion-Project +USE_RC_SUBR= ${PORTNAME} -USES= autoreconf gmake jpeg localbase pkgconfig GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-linuxthreads \ --without-jpeg-mmx @@ -26,7 +27,6 @@ KMODDIR?= /boot/modules KMODDIR= /boot/modules .endif -USE_RC_SUBR= ${PORTNAME} SUB_FILES= pkg-message PLIST_FILES= bin/motion \ Added: head/multimedia/motion/files/patch-video2.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/motion/files/patch-video2.c Sun Aug 13 22:29:41 2017 (r447919) @@ -0,0 +1,11 @@ +--- video2.c.orig 2017-08-11 20:05:27 UTC ++++ video2.c +@@ -184,7 +184,7 @@ typedef struct { + /** + * xioctl + */ +-#ifdef __OpenBSD__ ++#if defined (__OpenBSD__) || defined (__FreeBSD__) + static int xioctl(src_v4l2_t *vid_source, unsigned long request, void *arg) + #else + static int xioctl(src_v4l2_t *vid_source, int request, void *arg)