diff options
author | ultima <ultima@FreeBSD.org> | 2017-08-14 06:29:41 +0800 |
---|---|---|
committer | ultima <ultima@FreeBSD.org> | 2017-08-14 06:29:41 +0800 |
commit | c82b41437adb50e181a7f5b5c4562544d8b3d78b (patch) | |
tree | ee7f72207c07a3c25d627ed4c208a6982194ea6c /multimedia | |
parent | 2cef1bdf33fbc39d8d6db1bb9122ad4f5dc59a00 (diff) | |
download | freebsd-ports-gnome-c82b41437adb50e181a7f5b5c4562544d8b3d78b.tar.gz freebsd-ports-gnome-c82b41437adb50e181a7f5b5c4562544d8b3d78b.tar.zst freebsd-ports-gnome-c82b41437adb50e181a7f5b5c4562544d8b3d78b.zip |
* 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)
MFH: 2017Q3
Differential Revision: https://reviews.freebsd.org/D11993
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/motion/Makefile | 6 | ||||
-rw-r--r-- | multimedia/motion/files/patch-video2.c | 11 |
2 files changed, 14 insertions, 3 deletions
diff --git a/multimedia/motion/Makefile b/multimedia/motion/Makefile index cd7ee6bbf86a..4985e4b30322 100644 --- a/multimedia/motion/Makefile +++ b/multimedia/motion/Makefile @@ -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 \ diff --git a/multimedia/motion/files/patch-video2.c b/multimedia/motion/files/patch-video2.c new file mode 100644 index 000000000000..a0e17aa92445 --- /dev/null +++ b/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) |