diff options
author | jhale <jhale@FreeBSD.org> | 2017-01-30 08:09:53 +0800 |
---|---|---|
committer | jhale <jhale@FreeBSD.org> | 2017-01-30 08:09:53 +0800 |
commit | d06be50a00bee1b1382e8e815ed4a86a00a43899 (patch) | |
tree | 31354005dc9a684d4b8fe92ff6f71c0051902aba /multimedia/motion | |
parent | 432f0a77e4b28eb4740af2344f8ab55392275cba (diff) | |
download | freebsd-ports-gnome-d06be50a00bee1b1382e8e815ed4a86a00a43899.tar.gz freebsd-ports-gnome-d06be50a00bee1b1382e8e815ed4a86a00a43899.tar.zst freebsd-ports-gnome-d06be50a00bee1b1382e8e815ed4a86a00a43899.zip |
- Fix an issue where netcams were not connecting [1]
- When motion was updated to 4.x, it was overlooked that the default
search path for the configuration files was changed. This was causing
existing configurations to not be read. Fix the port to install
default configuration in correct location and add an UPDATING message
giving users the proper instructions on where to place their existing
conf files. [2]
- Create an empty ${ETCDIR}/conf.d directory that can optionally be used
to dump camera configs in instead of creating separate lines for each
one in motion.conf
- Add some missing PORTDOCS and install with the correct mode
- Make the VIDEO options OPTIONS_RADIO instead of OPTIONS_SINGLE to
allow for netcam only support (suggested in [2])
- Fix bad logic in configure.ac that was causing V4L to not be dectected
when the PWCBSD option was enabled
PR: 216189 [1]
Reported by: Charles P <charlespigott@googlemail.com>
Patched by: <anthony@ury.org.uk>
Obtained from: upstream
PR: 216466 [2]
Reported by: <bakhur@inbox.ru>, tdb@
Pointy hat to: jhale
MFH: 2017Q1 (blanket)
Diffstat (limited to 'multimedia/motion')
-rw-r--r-- | multimedia/motion/Makefile | 19 | ||||
-rw-r--r-- | multimedia/motion/files/motion.in | 2 | ||||
-rw-r--r-- | multimedia/motion/files/patch-configure.ac | 2 | ||||
-rw-r--r-- | multimedia/motion/files/patch-netcam.c | 50 | ||||
-rw-r--r-- | multimedia/motion/files/pkg-message.in | 2 |
5 files changed, 61 insertions, 14 deletions
diff --git a/multimedia/motion/Makefile b/multimedia/motion/Makefile index e7a2de0cc228..23e9fab92e1d 100644 --- a/multimedia/motion/Makefile +++ b/multimedia/motion/Makefile @@ -3,7 +3,7 @@ PORTNAME= motion PORTVERSION= 4.0.1 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONPREFIX= release- CATEGORIES= multimedia @@ -31,17 +31,19 @@ SUB_FILES= pkg-message PLIST_FILES= bin/motion \ man/man1/motion.1.gz \ - "@sample etc/motion.conf.sample" + "@sample ${ETCDIR}/motion.conf.sample" \ + "@dir ${ETCDIR}/conf.d" PORTDOCS= CHANGELOG CREDITS README.md README.FreeBSD \ - motion_guide.html + motion_guide.html mask1.png normal.jpg \ + outputmotion1.jpg outputnormal1.jpg PORTEXAMPLES= camera1-dist.conf camera2-dist.conf \ camera3-dist.conf camera4-dist.conf OPTIONS_DEFINE= DOCS EXAMPLES FFMPEG MYSQL PGSQL SQLITE3 -OPTIONS_SINGLE= VIDEO -OPTIONS_SINGLE_VIDEO= BKTR PWCBSD +OPTIONS_RADIO= VIDEO +OPTIONS_RADIO_VIDEO= BKTR PWCBSD OPTIONS_DEFAULT= BKTR FFMPEG -VIDEO_DESC= Video capture driver +VIDEO_DESC= Video capture driver (Netcam support only if none selected) BKTR_DESC= BKTR based TV capture cards BKTR_CONFIGURE_WITH= bktr @@ -87,12 +89,13 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/motion ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/motion.1 ${STAGEDIR}${MANPREFIX}/man/man1 + @${MKDIR} ${STAGEDIR}${ETCDIR}/conf.d ${INSTALL_DATA} ${WRKSRC}/motion-dist.conf \ - ${STAGEDIR}${PREFIX}/etc/motion.conf.sample + ${STAGEDIR}${ETCDIR}/motion.conf.sample do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} do-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} diff --git a/multimedia/motion/files/motion.in b/multimedia/motion/files/motion.in index 84288a5fb0c3..b556007fc39b 100644 --- a/multimedia/motion/files/motion.in +++ b/multimedia/motion/files/motion.in @@ -21,6 +21,6 @@ load_rc_config $name command=%%PREFIX%%/bin/${name} pidfile="/var/run/${name}.pid" -required_files=%%PREFIX%%/etc/${name}.conf +required_files=%%ETCDIR%%/${name}.conf run_rc_command "$1" diff --git a/multimedia/motion/files/patch-configure.ac b/multimedia/motion/files/patch-configure.ac index 3f410068b73d..5b912fefb47a 100644 --- a/multimedia/motion/files/patch-configure.ac +++ b/multimedia/motion/files/patch-configure.ac @@ -5,7 +5,7 @@ AC_MSG_CHECKING(for V42L support) AC_MSG_RESULT(skipping) -else -+elif test "${BKTR}" = "no"; then ++elif test "${PWCBSD}" = "yes"; then AC_CHECK_TYPE([struct v4l2_buffer], [SUPPORTED_V4L2=true], [SUPPORTED_V4L2=false], diff --git a/multimedia/motion/files/patch-netcam.c b/multimedia/motion/files/patch-netcam.c index 6ef89148a628..017c09692cad 100644 --- a/multimedia/motion/files/patch-netcam.c +++ b/multimedia/motion/files/patch-netcam.c @@ -1,13 +1,57 @@ -Fix sockaddr type mismatch warnings (Fixed upstream in dbd7282) +Fix netcam getaddrinfo/connect usage (Fixed upstream in be2328a) --- netcam.c.orig 2016-10-25 01:39:24 UTC +++ netcam.c -@@ -948,7 +948,7 @@ static int netcam_connect(netcam_context +@@ -840,8 +840,7 @@ static void netcam_disconnect(netcam_con + */ + static int netcam_connect(netcam_context_ptr netcam, int err_flag) + { +- struct sockaddr_in6 server; /* For connect */ +- struct addrinfo *ai; /* For getaddrinfo */ ++ struct addrinfo *ai; + int ret; + int saveflags; + int back_err; +@@ -851,8 +850,11 @@ static int netcam_connect(netcam_context + fd_set fd_w; + struct timeval selecttime; + ++ char port[15]; ++ sprintf(port,"%u",netcam->connect_port); ++ + /* Lookup the hostname given in the netcam URL. */ +- if ((ret = getaddrinfo(netcam->connect_host, NULL, NULL, &ai)) != 0) { ++ if ((ret = getaddrinfo(netcam->connect_host, port, NULL, &ai)) != 0) { + if (!err_flag) + MOTION_LOG(ERR, TYPE_NETCAM, NO_ERRNO, "%s: getaddrinfo() failed (%s): %s", + netcam->connect_host, gai_strerror(ret)); +@@ -920,16 +922,6 @@ static int netcam_connect(netcam_context + netcam->sock); + + /* +- * Fill the hostname details into the 'server' structure and +- * attempt to connect to the remote server. +- */ +- memset(&server, 0, sizeof(server)); +- memcpy(&server, ai->ai_addr, sizeof(server)); +- server.sin6_family = ai->ai_family; +- server.sin6_port = htons(netcam->connect_port); +- freeaddrinfo(ai); +- +- /* + * We set the socket non-blocking and then use a 'select' + * system call to control the timeout. + */ +@@ -948,9 +940,11 @@ static int netcam_connect(netcam_context } /* Now the connect call will return immediately. */ - ret = connect(netcam->sock, &server, sizeof(server)); -+ ret = connect(netcam->sock, (struct sockaddr *)&server, sizeof(server)); ++ ret = connect(netcam->sock, ai->ai_addr, ai->ai_addrlen); back_err = errno; /* Save the errno from connect */ ++ freeaddrinfo(ai); ++ /* If the connect failed with anything except EINPROGRESS, error. */ + if ((ret < 0) && (back_err != EINPROGRESS)) { + if (!err_flag) diff --git a/multimedia/motion/files/pkg-message.in b/multimedia/motion/files/pkg-message.in index ef83fc9e8a6a..8d9fceba10f8 100644 --- a/multimedia/motion/files/pkg-message.in +++ b/multimedia/motion/files/pkg-message.in @@ -1,7 +1,7 @@ **************************************************************** To use the motion service properly, you should edit - %%PREFIX%%/etc/motion.conf + %%ETCDIR%%/motion.conf according to your needs. |