aboutsummaryrefslogtreecommitdiff
path: root/multimedia/motion
Commit message (Collapse)AuthorAgeFilesLines
* multimedia/ffmpeg: update to 4.1Jan Beich2018-11-061-1/+1
| | | | | | | | Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n4.1:/Changelog ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/ Notes: svn path=/head/; revision=484273
* Bump PORTREVISION to chase update of multimedia/v4l_compat and libv4lThomas Zander2018-09-291-1/+1
| | | | Notes: svn path=/head/; revision=480899
* multimedia/motion:Lars Engels2018-05-151-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add WEBCAMD option and enable by default - Bump PORTREVISION From the initiating PR: The multimedia/pwcbsd port contains an kernel module that appears to no longer work. The multimedia/pwcbsd port distfile has not been updated since 2014 so it is very unlikely to work. The multimedia/pwcbsd port was long ago replaced by the multimedia/webcamd port. The current multimedia/motion port has a PWCBSD option. This sets --with-pwcbsd in the configure step, create a build depend on v4l_compat and creates a run depend on multimedia/pwcbsd, which is then built and installed but not used. The motion application reads from /dev/video* which is now handled by multimedia/webcamd. The patch provided adds an option named WEBCAMD to an existing radio option that contains the PWCBSD option. The WEBCAMD option sets --with-pwcbsd in the configure step, creates the build depend on v4l_compat but does not create a run depend on pwcbsd. It could create a run depend on multimedia/webcamd but I didn't add that. The only affect of --with-pwcbsd in the configure step of the downstream port is to suppress disabling video4linux support and link with v4l_compat library. At some point the downstream should be advised to change the option names in the configure.ac file to reflect the demise of pwcbsd. I left the PWCBSD option in place and unchanged. It may serve no useful purpose so it could be removed. PR: 228102 Submitted by: Curtis Villamizar <curtis@ipv6.occnc.com> MFH: yes Notes: svn path=/head/; revision=470020
* multimedia/ffmpeg: update to 4.0Jan Beich2018-05-021-1/+1
| | | | | | | | | | | | | | | - FFSERVER support was removed upstream - libressl now uses libtls backend instead of patching openssl one - Clang i386 no longer uses 16-byte aligned stack Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n4.0:/Changelog ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/ PR: 227726 Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D15175 Notes: svn path=/head/; revision=468844
* multimedia/motion: unbreak with ffmpeg 4.0Jan Beich2018-04-271-0/+53
| | | | | | | | | | | | | | | | | | | | ffmpeg.c:442:25: error: use of undeclared identifier 'CODEC_FLAG_QSCALE' c->flags |= CODEC_FLAG_QSCALE; ^ ffmpeg.c:450:17: error: use of undeclared identifier 'CODEC_FLAG_GLOBAL_HEADER' c->flags |= CODEC_FLAG_GLOBAL_HEADER; ^ ffmpeg.c:492:40: error: use of undeclared identifier 'AVFMT_RAWPICTURE' if (!(ffmpeg->oc->oformat->flags & AVFMT_RAWPICTURE)) { ^ ffmpeg.c:708:38: error: use of undeclared identifier 'AVFMT_RAWPICTURE' if (ffmpeg->oc->oformat->flags & AVFMT_RAWPICTURE) { ^ PR: 227726 Notes: svn path=/head/; revision=468433
* Do not abuse INSTALL_MAN when installing documentation, examples, andAlexey Dokuchaev2018-01-111-1/+1
| | | | | | | other miscellaneous files that are not actually manual pages (part 2). Notes: svn path=/head/; revision=458739
* multimedia/ffmpeg: update to 3.4Jan Beich2017-10-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | Notable changes: - i386/amd64 now depend on NASM per https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/4f9297ac3b39 - NETCDF is now MYSOFA but the dependency doesn't exist in ports yet - SCHROEDINGER is gone per https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/220b24c7c9 - DRM, LIBRSVG2, LIBXML2 are new options - ABI isn't completely compatible: some structs have changed Minor cleanup: - Don't pass --disable-{in,out}dev when it's already blocked by disabled dependency - Drop redundant "Enable" from option descriptions - Switch CDIO_DESC to use Mk/bsd.options.desc.mk Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n3.4:/Changelog ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/ PR: 223057 Exp-run by: antoine Notes: svn path=/head/; revision=452570
* * Bump Revision to fix ioctl sign-extension warningRichard Gallamore2017-08-132-3/+14
| | | | | | | | | | | | | | * 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 Notes: svn path=/head/; revision=447919
* Chase ffmpeg 3.3 update (ABI changes)Thomas Zander2017-04-251-1/+1
| | | | | | | | PR: 218658 Submitted by: riggs Notes: svn path=/head/; revision=439367
* - Fix an issue where netcams were not connecting [1]Jason E. Hale2017-01-305-14/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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) Notes: svn path=/head/; revision=432815
* Fix daemon inability to bind to the sockey with the following error:Dmitry Marakasov2016-12-282-0/+33
| | | | | | | | | http_bindsock: error binding on 127.0.0.1 port 8081 this problem was already fixed upstream. Notes: svn path=/head/; revision=429770
* Update to 4.0.1Jason E. Hale2016-12-1612-152/+480
| | | | | | | | | | Project has moved to Github and is under active development Add support for Sqlite 3 database Convert to options helpers Move 3 line pkg-plist into the Makefile Notes: svn path=/head/; revision=428697
* Remove libjpeg.so.11 compatibility link that was added in r374303 toTijl Coosemans2016-12-081-1/+1
| | | | | | | | prevent massive PORTREVISION bumps. Bump dependent ports that have not been bumped since. Notes: svn path=/head/; revision=428135
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-3/+3
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* Remove BROKEN on Tier-2 systems statements which no longer true at leastAlexey Dokuchaev2015-09-201-4/+0
| | | | | | | | | | on PowerPC (verified for all of them) and some also on SPARC (whenever I was able to test those on flame.freebsd.org) and even IA64 (which should be OK to remove anyways, because it was never really supported system in ports land and was officially killed in -CURRENT a while ago. Notes: svn path=/head/; revision=397374
* Convert to USES=jpegAntoine Brodin2015-06-221-3/+1
| | | | Notes: svn path=/head/; revision=390310
* - Add LICENSE_FILEDmitry Marakasov2015-06-101-2/+3
| | | | | | | - Switch to USES=autoreconf Notes: svn path=/head/; revision=389091
* Finally retire USE_PGSQLChris Rees2014-11-221-1/+1
| | | | Notes: svn path=/head/; revision=373100
* Fix check-stagedir plist warning.Tim Bishop2014-05-082-7/+1
| | | | | | | | | | | | | | | https://jenkins.freebsd.org/pci/head-amd64/logs/bulk/headamd64-default/708/logs/errors/motion-3.2.12_4.log Error: Orphaned: %%ETCDIR%%.conf This was caused by motion.conf being installed by the Makefile when it should have been handled only in pkg-plist. Also switched pkg-plist to use the new @sample keyword. Submitted by: swills Notes: svn path=/head/; revision=353290
* The PWCBSD option requires V4L, so remove -DWITHOUT_V4L.Tim Bishop2014-05-041-2/+1
| | | | | | | | | | | 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. Notes: svn path=/head/; revision=352969
* - Bump PORTREVISIONThomas Zander2014-02-014-4/+48
| | | | | | | | | | | | | - Use startup script via USE_RC_SUBR - Add pkg-message to inform about startup script - Fix a runtime error using wrong pid file in daemonised process Approved by: thierry (mentor) MFH: 2014Q1 Notes: svn path=/head/; revision=342125
* - Un-break portThomas Zander2014-01-314-218/+67
| | | | | | | | | | | | | | - Stage support - Replace USE_GMAKE by USES - New format for LIB_DEPENDS - Use /boot/modules via KMODDIR as in other ports PR: ports/184406 Submitted by: Ildar Hizbulin <hizel@vyborg.ru> Approved by: co-mentor (jadawin) Notes: svn path=/head/; revision=342064
* Mark as broken:Baptiste Daroussin2013-12-061-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ffmpeg.c:81: error: expected ')' before '*' token ffmpeg.c:117: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'mpeg1_file_protocol' ffmpeg.c:136: error: expected ')' before '*' token ffmpeg.c:160: error: expected ')' before '*' token ffmpeg.c:166: error: expected ')' before '*' token ffmpeg.c:172: error: expected ')' before '*' token ffmpeg.c:178: error: expected ')' before '*' token ffmpeg.c:184: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'file_protocol' ffmpeg.c: In function 'mpeg1_write_trailer': ffmpeg.c:207: warning: implicit declaration of function 'put_buffer' ffmpeg.c:208: warning: implicit declaration of function 'put_flush_packet' ffmpeg.c: In function 'ffmpeg_init': ffmpeg.c:230: error: 'mpeg1_file_protocol' undeclared (first use in this function) ffmpeg.c:230: error: (Each undeclared identifier is reported only once ffmpeg.c:230: error: for each function it appears in.) ffmpeg.c:230: error: 'file_protocol' undeclared (first use in this function) ffmpeg.c:241:5: warning: #warning av_register_protocolXXX missing ffmpeg.c: In function 'ffmpeg_open': ffmpeg.c:406: warning: 'av_new_stream' is deprecated (declared at /usr/local/include/libavformat/avformat.h:1817) ffmpeg.c:465: warning: implicit declaration of function 'av_set_parameters' ffmpeg.c:491: warning: implicit declaration of function 'avcodec_open' ffmpeg.c:546: warning: implicit declaration of function 'url_fopen' ffmpeg.c:546: error: 'URL_WRONLY' undeclared (first use in this function) ffmpeg.c:577: warning: implicit declaration of function 'av_write_header' ffmpeg.c: In function 'ffmpeg_close': ffmpeg.c:644: warning: implicit declaration of function 'url_fclose' ffmpeg.c: In function 'ffmpeg_put_frame': ffmpeg.c:708: warning: 'avcodec_encode_video' is deprecated (declared at /usr/local/include/libavcodec/avcodec.h:4261) ffmpeg.c: In function 'ffmpeg_deinterlace': ffmpeg.c:809: warning: 'avpicture_deinterlace' is deprecated (declared at /usr/local/include/libavcodec/avcodec.h:4506) Notes: svn path=/head/; revision=335749
* - Return ports to the poolAlex Kozlov2013-10-231-1/+1
| | | | | | | | PR: ports/183244 Submitted by: Chris Petrik <c.petrik.sosa@gmail.com> (former maintainer) Notes: svn path=/head/; revision=331423
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | multimedia) Notes: svn path=/head/; revision=327747
* - Remove MAKE_JOBS_SAFE variableAlex Kozlov2013-08-141-1/+0
| | | | | | | Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=324744
* Remove option for expired linuxhtreads port.Rene Ladan2013-06-061-7/+1
| | | | | | | | | PR: ports/179353 Submitted by: myself Approved by: c.petrik.sosa@gmail.com (maintainer) Notes: svn path=/head/; revision=320067
* Fix an issue with bktr.Matthias Andree2013-03-111-3/+5
| | | | | | | | PR: ports/173750 Submitted by: c.petrik.sosa@gmail.com (maintainer) Notes: svn path=/head/; revision=313919
* - Please welcome back Chris Petrik as maintainer ofBryan Drewery2013-03-071-7/+3
| | | | | | | | | | | | | | these ports [1] - Trim headers - Remove indefinite article from COMMENT - Convert tab to space in WWW lines PR: ports/175415 [1] Submitted by: Chris Petrik <c.petrik.sosa@gmail.com> [1] Discussed with: bapt Notes: svn path=/head/; revision=313559
* - Fix all cases of 'No newline at end of file' in ports treeAlex Kozlov2013-02-011-1/+1
| | | | | | | Approved by: portmgr (bapt) Notes: svn path=/head/; revision=311381
* Revert Chris Petrik's ports to the pool. Thank you for all your work so ↵Eitan Adler2012-12-101-1/+1
| | | | | | | | | | far, and should you desire to return just let us know. PR: ports/174309 Submitted by: Chris Petrik Notes: svn path=/head/; revision=308576
* Hand port over to cpetEitan Adler2012-10-051-1/+1
| | | | | | | | PR: ports/172344 Submitted by: Chris Petrik <c.petrik.sosa@gmail.com> Notes: svn path=/head/; revision=305292
* - Updatet to version 3.2.12Sylvio Cesar Teixeira2012-06-174-59/+311
| | | | | | | | | | | | New file: files/patch-configure.in files/patch-ffmpeg.c PR: ports/169006 Submitted by: KATO Tsuguru <tkato432@yahoo.com> Notes: svn path=/head/; revision=299495
* - Reset maintainer due to email bounceThomas Abthorpe2012-06-071-1/+1
| | | | | | | - We hope to see you back Notes: svn path=/head/; revision=298658
* Remove obsolete OSVERSION check-- ports no longer work on 6.XChris Rees2012-06-061-1/+1
| | | | | | | | | PR: ports/168276 Submitted by: crees Approved by: maintainer timeout (ack@telefonica.net, two weeks) Notes: svn path=/head/; revision=298603
* - update png to 1.5.10Dirk Meyer2012-06-011-1/+1
| | | | Notes: svn path=/head/; revision=297915
* - Bump PORTREVISION to chase the update of multimedia/libvpxAshish SHUKLA2012-02-161-1/+1
| | | | Notes: svn path=/head/; revision=291538
* - remove MD5Olli Hauer2011-07-031-2/+0
| | | | Notes: svn path=/head/; revision=276986
* Bump due to ffmpeg update to 0.7.1Martin Matuska2011-06-241-1/+1
| | | | Notes: svn path=/head/; revision=276239
* Sync to new bsd.autotools.mkAde Lovett2010-12-041-1/+1
| | | | Notes: svn path=/head/; revision=265663
* Punt autoconf267->autoconf268Ade Lovett2010-10-161-1/+1
| | | | Notes: svn path=/head/; revision=263089
* Autotools update. Read ports/UPDATING 20100915 for details.Ade Lovett2010-09-151-2/+2
| | | | | | | | Approved by: portmgr (for Mk/bsd.port.mk part) Tested by: Multiple -exp runs Notes: svn path=/head/; revision=261230
* - Update ffmpeg to 0.6Martin Matuska2010-07-241-1/+1
| | | | Notes: svn path=/head/; revision=258164
* - update to jpeg-8Dirk Meyer2010-02-051-2/+7
| | | | Notes: svn path=/head/; revision=249285
* - Distfile was rerolled to fix the detection of ffmpegMartin Wilke2009-09-132-5/+4
| | | | | | | | PR: 137698 Submitted by: Angel Carpintero <ack@telefonica.net> (maintainer) Notes: svn path=/head/; revision=241342
* - Mark BROKEN: does not fetch due to size mismatchPav Lucistnik2009-09-071-0/+2
| | | | | | | Reported by: pointyhat Notes: svn path=/head/; revision=241014
* - Switch SourceForge ports to the new File Release System: categories ↵Dmitry Marakasov2009-08-221-1/+1
| | | | | | | starting with M Notes: svn path=/head/; revision=240072
* - Update to 3.2.11.1Martin Matuska2009-08-112-10/+9
| | | | | | | | PR: ports/137649 Submitted by: Angel Carpintero <ack@telefonica.net> (maintainer) Notes: svn path=/head/; revision=239307
* - update to jpeg7Dirk Meyer2009-07-181-2/+2
| | | | | | | Tested by: pav on pointyhat Notes: svn path=/head/; revision=238018
* - Remove conditional checks for FreeBSD 5.x and olderPav Lucistnik2009-01-051-1/+1
| | | | Notes: svn path=/head/; revision=225305