Date: Thu, 17 Aug 2017 21:18:18 +0000 (UTC) From: Richard Gallamore <ultima@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r448193 - in branches/2017Q3/multimedia/motion: . files Message-ID: <201708172118.v7HLII0f043978@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ultima Date: Thu Aug 17 21:18:18 2017 New Revision: 448193 URL: https://svnweb.freebsd.org/changeset/ports/448193 Log: MFH: r447919 * Bump Revision to fix ioctl sign-extension warning * Cleanup Makefile PR: 221241 Submitted by: <peo@bsdlabs.com> Reviewed by: matthew (mentor) Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11993 Approved by: ports-secteam (feld) Added: branches/2017Q3/multimedia/motion/files/patch-video2.c - copied unchanged from r447919, head/multimedia/motion/files/patch-video2.c Modified: branches/2017Q3/multimedia/motion/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/multimedia/motion/Makefile ============================================================================== --- branches/2017Q3/multimedia/motion/Makefile Thu Aug 17 21:14:39 2017 (r448192) +++ branches/2017Q3/multimedia/motion/Makefile Thu Aug 17 21:18:18 2017 (r448193) @@ -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 \ Copied: branches/2017Q3/multimedia/motion/files/patch-video2.c (from r447919, head/multimedia/motion/files/patch-video2.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/multimedia/motion/files/patch-video2.c Thu Aug 17 21:18:18 2017 (r448193, copy of r447919, head/multimedia/motion/files/patch-video2.c) @@ -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)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708172118.v7HLII0f043978>