non port: multimedia/zoneminder-h264/Makefile |
SVNWeb
|
Number of commits found: 21 |
Tue, 25 Dec 2018
|
[ 20:25 tcberner ] (Only the first 10 of 1277 ports in this commit are shown above. )
Change cmake default behaviour to outsource.
Ports that build out of source now simply can use "USES=cmake"
instead of "USES=cmake:outsource". Ports that fail to build
out of source now need to specify "USES=cmake:insource".
I tried to only set insource where explictely needed.
PR: 232038
Exp-run by: antoine
|
Sat, 8 Dec 2018
|
[ 22:29 pi ]
multimedia/zoneminder-h264: deprecate, h264 feature was commited to main branch
- h264 feature was commited to main branch, please use upgraded www/zoneminder
PR: 233289
Submitted by: Ivan <bsd@abinet.ru> (maintainer)
|
Tue, 6 Nov 2018
|
[ 01:50 jbeich ] (Only the first 10 of 188 ports in this commit are shown above. )
multimedia/ffmpeg: update to 4.1
Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n4.1:/Changelog
ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/
|
Sat, 29 Sep 2018
|
[ 08:04 riggs ] (Only the first 10 of 75 ports in this commit are shown above. )
Bump PORTREVISION to chase update of multimedia/v4l_compat and libv4l
|
Fri, 10 Aug 2018
|
[ 00:55 jbeich ] (Only the first 10 of 27 ports in this commit are shown above. )
multimedia/x264: update to 0.155.2917
- HI10P is always built after
https://git.videolan.org/?p=x264.git;a=commitdiff;h=71ed44c73124
Changes: https://git.videolan.org/?p=x264.git;a=shortlog;h=0a84d986e7020f8344f00752e3600b9769cc1e85
ABI: https://abi-laboratory.pro/tracker/timeline/x264/
|
Fri, 27 Jul 2018
|
[ 18:34 netchild ]
Improve zoneminder ports:
- add patch to make it compile with a recent clang (from -current)
- add missing fcgiwrap config option to the FreeBSD readme
- sync pkg-descr and highlight difference between the ports in pkg-descr and
COMMENT
Approved by: maintainer
|
Wed, 2 May 2018
|
[ 18:30 jbeich ]
multimedia/zoneminder{,-h264}: unbreak with ffmpeg 4.0
src/zm_mpeg.cpp:243:19: error: use of undeclared identifier 'CODEC_FLAG_QSCALE'
c->flags |= CODEC_FLAG_QSCALE;
^
src/zm_mpeg.cpp:268:19: error: use of undeclared identifier
'CODEC_FLAG_GLOBAL_HEADER'
c->flags |= CODEC_FLAG_GLOBAL_HEADER;
^
src/zm_mpeg.cpp:428:22: error: use of undeclared identifier 'AVFMT_RAWPICTURE'
if ( !(of->flags & AVFMT_RAWPICTURE) )
^
src/zm_mpeg.cpp:675:20: error: use of undeclared identifier 'AVFMT_RAWPICTURE'
if ( of->flags & AVFMT_RAWPICTURE )
^
src/zm_sdp.cpp:497:38: error: use of undeclared (Only the first 15 lines of the commit message are shown above )
|
[ 15:07 jbeich ] (Only the first 10 of 183 ports in this commit are shown above. )
multimedia/ffmpeg: update to 4.0
- 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
|
Tue, 27 Feb 2018
|
[ 13:25 sunpoet ]
Move devel/p5-Sys-Cpu to devel/p5-Sys-CPU
- Strip shared library
- Bump PORTREVISION for package change
- Bump PORTREVISION of dependent ports for dependency change
- Pass maintainership to perl@
|
Thu, 11 Jan 2018
|
[ 14:18 danfe ] (Only the first 10 of 100 ports in this commit are shown above. )
Do not abuse INSTALL_MAN when installing documentation, examples, and
other miscellaneous files that are not actually manual pages (part 2).
|
Fri, 29 Dec 2017
|
[ 02:55 jbeich ] (Only the first 10 of 22 ports in this commit are shown above. )
multimedia/{lib,}x264: update to 0.152.2854
Changes: https://git.videolan.org/?p=x264.git;a=shortlog;h=e9a5903edf8ca59ef20e6f4894c196f135af735e
|
Sat, 21 Oct 2017
|
[ 06:50 jbeich ] (Only the first 10 of 169 ports in this commit are shown above. )
multimedia/ffmpeg: update to 3.4
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
|
Sun, 25 Jun 2017
|
[ 21:07 tcberner ] (Only the first 10 of 115 ports in this commit are shown above. )
Make ninja opt-out in cmake.mk
Using ninja instead of make (1) can lead to significant speed ups while
building.
Therefore switch from having the ninja generator opt-in to having it opt-out.
Previously cmake-ports that wanted to use ninja could set
CMAKE_NINJA=yes
now, ports that do not work with ninja can set
cmake:<existing args>,noninja
Note, that needing this should be an exception and most often points to a broken
cmake of the port.
The ports using cmake were modified
* removed USES=gmake, if ninja is used
* removed MAKE_ARGS, if ninja is used
* added the cmake-argument noninja if necessary
PR: 219629
PR: 213331
Exp-run by: antoine
Reviewed by: rakuco
Differential Revision: https://reviews.freebsd.org/D10748
|
Mon, 29 May 2017
|
[ 15:27 sunpoet ]
Fix OPTIONS_DEFAULT: remove NLS which is added by framework
Approved by: portmgr (blanket)
|
Fri, 5 May 2017
|
[ 03:18 miwi ]
- Update to 1.30.20170222
PR: 217896
Submitted by: maintainer
|
Tue, 25 Apr 2017
|
[ 08:20 riggs ] (Only the first 10 of 701 ports in this commit are shown above. )
Chase ffmpeg 3.3 update (ABI changes)
PR: 218658
Submitted by: riggs
|
Sun, 12 Mar 2017
|
[ 19:41 pi ]
multimedia/zoneminder{-h264}: fix build with clang 4.0
PR: 216627
Reported by: jbeich
Submitted by: Ivan <bsd@abinet.ru> (maintainer)
MFH: 2017Q1
|
Wed, 11 Jan 2017
|
[ 10:08 amdmi3 ] (Only the first 10 of 57 ports in this commit are shown above. )
- Remove always-true/false conditions after FreeBSD 9, 10.1, 10.2 EOL
Approved by: portmgr blanket
|
Tue, 3 Jan 2017
|
[ 18:12 mat ] (Only the first 10 of 58 ports in this commit are shown above. )
Never set WRKSRC when using USE_GITHUB.
If you want to set WRKSRC, set GH_PROJECT instead.
- The GitHub URLs are case insensitive, but the distribution files you
get out of them are not.
- If the repository was renamed, the old URL will still work, but the
distribution name will be ith the new name.
Sponsored by: Absolight
|
Sun, 11 Dec 2016
|
[ 15:22 jbeich ] (Only the first 10 of 160 ports in this commit are shown above. )
multimedia/ffmpeg: update to 3.2.2
Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n3.2.2:/Changelog
PR: 207547
Submitted by: riggs, ebirth@b0ss.net (libressl fix)
Exp-run by: antoine (3 tries)
|
Thu, 8 Dec 2016
|
[ 06:28 pi ] (Only the first 10 of 17 ports in this commit are shown above. )
New port: multimedia/zoneminder-h264
Zoneminder is an all-in-one GPL'd security and surveillance camera
solution. Fully web-based system for viewing and analyzing security
camera feeds. This version has H.264 support.
WWW: http://www.zoneminder.com/
PR: 214564
Submitted by: Ivan <bsd@abinet.ru>
|
Number of commits found: 21 |