aboutsummaryrefslogtreecommitdiff
path: root/multimedia/transcode
Commit message (Collapse)AuthorAgeFilesLines
* multimedia/x264: update to 0.148.2708Jan Beich2016-09-231-1/+1
| | | | | | | | | Changes: https://git.videolan.org/?p=x264.git;a=shortlog;h=86b71982e131eaa70125f8d0e725fcade9c4c677 Differential Revision: https://reviews.freebsd.org/D7958 Approved by: koobs (maintainer) Notes: svn path=/head/; revision=422672
* Add newlines to the inline assembly in calc_SAD_half_mmx(). OtherwiseDimitry Andric2016-09-181-0/+61
| | | | | | | | | | | | the .rept/.endr parsing logic in clang's inline assembler gets tripped up. Approved by: cyberbotx@cyberbotx.com (maintainer) PR: 212798 MFH: 2016Q3 Notes: svn path=/head/; revision=422400
* multimedia/transcode: unbreak build with ffmpeg 3.0Jan Beich2016-04-153-1/+566
| | | | | | | | | | | | | | | | | | | aud_aux.c:329:18: error: use of undeclared identifier 'CODEC_ID_MP2'; did you mean 'AV_CODEC_ID_MP2'? codeid = CODEC_ID_MP2; ^~~~~~~~~~~~ AV_CODEC_ID_MP2 /usr/local/include/libavcodec/avcodec.h:419:5: note: 'AV_CODEC_ID_MP2' declared here AV_CODEC_ID_MP2 = 0x15000, ^ PR: 208818 Reported by: antoine (via exp-run) Submitted by: Ben Woods <woodsb02@gmail.com> Obtained from: Arch Linux Approved by: Naram Qashat <cyberbotx@cyberbotx.com> (maintainer) Notes: svn path=/head/; revision=413357
* multimedia/transcode: unbreak fetchJan Beich2016-04-151-1/+1
| | | | | | | | | | | fetch: http://cdn.bitbucket.org/france/transcode-tcforge/downloads/transcode-1.1.7.tar.bz2: Forbidden PR: 208818 Submitted by: Ben Woods <woodsb02@gmail.com> Approved by: Naram Qashat <cyberbotx@cyberbotx.com> (maintainer) Notes: svn path=/head/; revision=413356
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-18/+18
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* Remove stale freetype patch that is breaking buildBrad Davis2016-01-081-12/+0
| | | | | | | | | | PR: 205711 Submitted by: cyberbotx@cyberbotx.com Approved by: bdrewery MFH: 2016Q1 Notes: svn path=/head/; revision=405492
* Remove USE_GCC; add --disable-mmx on FreeBSD-10.1Thomas Zander2015-12-291-2/+6
| | | | | | | | | PR: 202773 Submitted by: cyberbotx@cyberbotx.com (maintainer) Reviewed by: riggs Notes: svn path=/head/; revision=404718
* Remove support for WANT_SDL/HAVE_SDL knobsDmitry Marakasov2015-11-091-1/+0
| | | | | | | | | | | | | WANT_SDL/HAVE_SDL macros allowed a port to check which SDL components are installed. This goes against the policy of avoiding automatic dependencies, and there are actually no cases in the portstree where these knobs are used properly, so axe them out. Approved by: portmgr (mat) Differential Revision: D4093 Notes: svn path=/head/; revision=401100
* Remove iconv(), iconv_open() and iconv_close() symbols from libiconv.Tijl Coosemans2015-10-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These were FreeBSD specific aliases for libiconv(), libiconv_open() and libiconv_close() that are now also provided by libc which complicates writing configure tests that work correctly when both libc iconv and libiconv are available. Also, because the libiconv iconv.h header redefines iconv* to libiconv* correct use of the header implies that the aliases aren't used. The following ports needed fixes because there was something wrong with the way they tried to detect or use iconv: audio/deadbeef: Remove LIBICONV_PLUG from a source file. It's a compile-time option and should not be set in source code. comms/hidapi: Use standard AM_ICONV configure macro to look for iconv. deskutils/fbreader: Let ports framework deal with LIBICONV_PLUG. deskutils/ljclive: Override configure test for iconv. deskutils/owncloudclient: Add USES=iconv and patch test for iconv. devel/aegis: Bump PORTREVISION because it no longer uses libiconv. devel/libexplain: Add USES=iconv and override test for iconv. devel/sdl20: Override configure test for iconv. emulators/vmw: Replace OSVERSION checks with ICONV_LIB checks and include <iconv.h> instead of <sys/iconv.h>. irc/scrollz: Override configure test for iconv. japanese/chasen-base: Override configure test for iconv and patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. japanses/eb: Patch configure test for iconv. japanses/eblook: Override configure test for iconv. java/jikes: Override configure test for iconv. multimedia/transcode: Bump PORTREVISION because only one plugin links with libiconv now. net/c3270: Override configure test for iconv. net/samba4*: Bump PORTREVISION because it no longer uses libiconv. The configure script will always add -liconv to the linker flags when it happens to be installed which would be wrong but later on binaries are linked with -Wl,--as-needed and the linker discards -liconv because it finds iconv*() functions in libc now and no longer in libiconv. net-mgmt/icinga-*: Remove dependency on iconv. net-mgmt/netxms: Patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. net/asterisk11: Patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. net-p2p/transmission-*: Override configure test for iconv. www/htmlcxx: Override configure test for iconv. www/httrack: Override configure test for iconv. www/xapian-omega: Override configure test for iconv. x11/mrxvt(-devel): Add USES=iconv and override configure test for iconv. x11/x3270: Override configure test for iconv. x11-wm/jwm: Override configure test for iconv. PR: 202838 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=398996
* multimedia/transcode: convert to target helpersJan Beich2015-09-111-10/+10
| | | | | | | | | | - Reset option sorting to default (alphabetical) PR: 202773 Submitted by: Naram Qashat <cyberbotx@cyberbotx.com> (maintainer) Notes: svn path=/head/; revision=396719
* multimedia/{lib}x264: Update to 0.144.2533 and major refactorKubilay Kocak2015-07-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Update to 0.144.2533 (from upstream stable branch) [1] - Switch x264 and libx264 ports to master/slave ports respectively - Bump PORTREVISION for dependent ports as the shared library version has changed. multimedia/x264: - Clean up and update "updating instructions" in Makefile header - Tweak COMMENT - Only LIB_DEPENDS on libx264 and add PLIST_FILES if this isn't the libx264 port. - Allow COMMENT, USES, OPTIONS_*, CONFIGURE_ARGS to be overriden in libx264 port. - Place common configure arguments in a CONFIGURE_COMMON_ARGS variable to make overriding values without duplication easier. - Use --prefix configure argument over post-patch replacements - Enable stripping of binaries and libraries if DEBUG is off. Remove post-install target STRIP_CMD accordingly. - Delete patch-Makefile in favour of patching WRKSRC/configure to identify amd64, arm64 and mipsn32. powerpc and powerpc64 are now covered upstream without needing patches. - Patch out a bogus compiler argument check (cc_check) that results in -Wno-maybe-uninitialized being added to CFLAGS causing causes warnings when clang is cc. The cc_check function checks for basename $CC to identify compiler type (icl, clang, gcc, etc). multimedia/libx264: - Remove all Makefile entries that are duplicated or common and found in the master port (x264). - Set lib as the PKGNAMEPREFIX - Tweak COMMENT - Delete upstreamed ARM patches [1] - Delete all but one patch, as they duplicate those in x264. - Dont remove pkgconfig/libdata directory Changes: https://git.videolan.org/?p=x264.git;a=shortlog;h=refs/heads/stable Based on: PR: 201260 [1] Submitted by: Andrey Cherkashin <andoriyu gmail com> [1] Notes: svn path=/head/; revision=391217
* Convert to USES=jpegAntoine Brodin2015-06-221-1/+1
| | | | Notes: svn path=/head/; revision=390310
* converters/libiconv:Tijl Coosemans2015-04-151-5/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Remove const qualifier from iconv(3) to match POSIX: http://pubs.opengroup.org/onlinepubs/9699919799/functions/iconv.html - Patch iconv.h to expose more GNU extensions when LIBICONV_PLUG is defined because the base system iconv supports these extensions too. Add/remove patches to/from ports to call iconv with non-const arguments. This breaks some ports on FreeBSD 10 because base system iconv.h still has the const qualifier. Fix this by letting USES=iconv add a build dependency on converters/libiconv so ports can use its iconv.h (with LIBICONV_PLUG defined) instead of the base system iconv.h. This exposed some ports that link with libiconv when it is available instead of using libc iconv. In these cases one of the following changes has been made: - patch configure scripts to test for libc iconv first - add ac_cv_lib_iconv_libiconv=no or similar to CONFIGURE_ARGS to disable some configure tests - converters/wkhtmltopdf: this includes Qt4 so add a patch from devel/qt4 - lang/gcc5-aux: respect CFLAGS and friends during configure such that LIBICONV_PLUG is defined in the iconv test, also switch to external gettext - mail/gnarwl: replace patches with CPPFLAGS/LIBS - multimedia/ffmpeg2theora: remove iconv test from SConstruct and use ICONV_LIB in port Makefile instead, also fix a bug in subtitles.c - net-im/licq: finish conversion to cmake - net-mgmt/bandwidthd, net-mgmt/icinga, net-mgmt/nagios, net-mgmt/nagios4: don't need iconv - textproc/p5-XML-TinyXML: finish conversion to USES=perl5 Other changes: - databases/qdbm and slaves: respect CFLAGS and friends, also enable bzip2 and lzo support - games/ldmud: respect CFLAGS and friends - graphics/inventor: replace some patches with MAKE_ARGS/MAKE_ENV to respect CFLAGS and friends, also remove FreeBSD/alpha patch and add missing xorg dependencies PR: 199099 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=384038
* Update ImageMagick to 6.9.0.4.Koop Mast2015-01-181-2/+2
| | | | | | | | | | | | | | | | | | | | | - Normalize the ImageMagick library name so it stays the same regardless of what the 16-bit and HDRI option are set to [1]. Teach cmake to look for the new name. Bump ports that link to the libraries due to this. - As a result do away with the "HALFSUPPORTED" option block, and list 16-bit and HDRI with the other options. - ImageMagick ships a basic SVG plugin when not using librsvg2 for SVG support. This basic SVG plugin needs libxml2 to work [2]. Make libxml2 a mandatory dependency (instead of only when the SVG option was selected). - Don't touch .keep files in the modules directory, there files there so it useless. PR: 194949 [1] PR: 195227 [2] Requested by: many [1] Submitted by: software-freebsd@interfasys.ch [2] Notes: svn path=/head/; revision=377347
* Replace USES=libtool:oldver with USES=libtool or USES=libtool:keepla inTijl Coosemans2014-12-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the 32 ports that still use it. Bump PORTREVISION on their dependent ports except the ones that depend on these: audio/libogg audio/libvorbis devel/pcre ftp/curl graphics/jpeg graphics/libart_lgpl graphics/tiff textproc/expat2 textproc/libxslt In these cases the same trick as in the recent gettext update is used. The ports install a symlink with the old library version. When enough of their dependent ports have had regular updates the remaining ones can get a PORTREVISION bump and the links can be removed. Also remove the devel/pcre dependency from USE_GNOME=glib20. It causes over 2200 packages to depend on devel/pcre while less than 200 actually link with it. The glib20 package still depends on devel/pcre so this should not make a difference for ports with USE_GNOME=glib20. Also, libdata/pkgconfig/glib-2.0.pc lists pcre as a private library so USE_GNOME=glib20 should not propagate it. PR: 195724 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=374303
* multimedia/x264: General overhaulJohannes Jost Meixner2014-11-221-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Split x264 into two ports: the CLI application (x264), and the library (libx264). This will allow x264 to use lavf and friends from ffmpeg for decoding and demuxing while preventing a circular dependency between the two: x264 can depend on ffmpeg, but ffmpeg will depend on libx264 rather than x264. - Add the LAVF option to the CLI port, making the dependency on ffmpeg optional. - Update to 0.142.2455. - Amend fixes to local patches so that they can apply to the new upstream files. - Provide the git revision and other version information to the build environment, allowing the CLI binary to display this information (like the Windows builds). - Remove unsupported build options (X11_OUTPUT). - Ensure that the library and CLI ports each have the appropriate options. - Add notes for future contributors who wish to update the ports. - Bump PORTREVISION for all dependent ports. PR: 187805 Differential Revision: https://reviews.freebsd.org/D1159 Submitted by: Andrew Berg <aberg010@my.hennepintech.edu> Approved by: koobs (maintainer, mentor) Notes: svn path=/head/; revision=373073
* Remove * from LIB_DEPENDS lines and specify the default library nameKoop Mast2014-11-071-1/+1
| | | | | | | for ImageMagick. Using '*' it is unsupported and potention bugs here. Notes: svn path=/head/; revision=372250
* - Fix build problem (plist generation) with export_xvid.so symlinkThomas Zander2014-10-112-3/+16
| | | | | | | | | | | | | - Make port ready for ffmpeg 2.4 and later - Pet portlint - Bump PORTREVISION PR: 194161 Submitted by: cyberbotx@cyberbotx.com (maintainer) MFH: 2014Q4 Notes: svn path=/head/; revision=370633
* - Replace FAKEDIR with STAGEDIR and only use auto-plist for lib/transcodeTijl Coosemans2014-10-032-23/+138
| | | | | | | | | - Remove USE_AUTOTOOLS - Add DOCS option - Remove -lpthread patching Notes: svn path=/head/; revision=369883
* - Drop .la files, no dependees require themDmitry Marakasov2014-08-181-3/+3
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=365276
* - Convert to options helpersJason E. Hale2014-08-021-156/+68
| | | | | | | | | | | - Standardize a few option names - Bump PORTREVISON since option names have changed PR: 187687 Submitted by: Naram Qashat <cyberbotx@cyberbotx.com> (maintainer) Notes: svn path=/head/; revision=363809
* Convert GMAKE to MAKE_CMDBaptiste Daroussin2014-06-251-1/+1
| | | | | | | | | | Please note that lots of invocation of MAKE_CMD here are wrong as they do not properly respect MAKE_ENV and friends With hat: portmgr Notes: svn path=/head/; revision=359185
* - Convert USE_BZIP2 to USESDmitry Marakasov2014-06-201-4/+3
| | | | | | | | | - Switch to USES=libtool Approved by: portmgr blanket Notes: svn path=/head/; revision=358632
* Update to 6.8.9-3 [1][3].Koop Mast2014-06-171-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use USES=compiler:openmp for the OPENMP option[2] Ditch the use of perl for patching etc [4] and silence perl threaded check [6] -delay option spurious message should be fixed [5] JASPER option was replace by JPEG2000 for JP2k support. Put 16BIT_PIXEL and HDRI option separate option block. These options change the library name, so the user needs to take this into consideration. Use new LIB_DEPENDS syntax. Use @sample for config files. Sprinkle some USES=pkgconfig for some ports, since we don't pull it in anymore at run-time. PR: 185462 [1] PR: 187548 [2] PR: 182793 [3] PR: 181746 [4] PR: 176047 [5] PR: 190814 [6] Submitted by: c.petrik.sosa@gmail.com [1] Matthieu Volat <mazhe@alkumuna.eu> [2] free.bsd@webstyle.ch [3] andrnils@gmail.com [4] rfg@tristatelogic.com [5] Michelle Sullivan <michelle@sorbs.net> [6] Approved by: portmgr (blanket) (for NO_STAGED ports) Notes: svn path=/head/; revision=358176
* - Update multimedia/libdvdread to 4.9.9Ganael LAPLANCHE2014-05-131-1/+1
| | | | | | | | | | | - Bump dependent ports' PORTREVISIONS and update LIB_DEPENDS [1] - multimedia/libdvdnav: remove dependency to (now removed) dvdread-config - sysutils/vstrip: remove useless dependency to multimedia/libdvdread Approved by: portmgr (implicit) [1] Notes: svn path=/head/; revision=353931
* Fix LIB_DEPENDS on mjpegtools.Tijl Coosemans2014-04-241-1/+1
| | | | | | | Reported by: jenkins (swills) Notes: svn path=/head/; revision=351985
* The FreeBSD x11@ and graphics team proudly presentsNiclas Zeising2014-04-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a zeising, kwm production, with help from dumbbell, bdrewery: NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE This update switches over to use the new xorg stack by default on FreeBSD 9 and 10 stable, on osversions where vt(9) is available. It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in /etc/make.conf . FreeBSD 8-STABLE and released versions of FreeBSD still use the old version. A package repository with binary packages for new xorg will be available soon. This patch also contains updates of libxcb and related ports, pixman, as well as some drivers and utilities. Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due to xserver version change. Apart from these updates, the way shared libraries are handled has been changed for all xorg ports, as well as libxml2 and freetype, which means ltverhack is gone and as a consequence shared libraries have been bumped. The plan is that this change will make library bumps less likely in the future. All affected ports have had their portrevisions bumped as a consequence of this. Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT. Update instructions, hardware support, and more notes can be found on https://wiki.freebsd.org/Graphics Thanks to: all testers, bdrewery and the FreeBSD x11@ team exp-run by: bdrewery [1] PR: ports/187602 [1] Approved by: portmgr (bdrewery), core (jhb) Notes: svn path=/head/; revision=351411
* - Update libdvdread and libdvdnav to 4.2.1Ganael LAPLANCHE2014-02-031-1/+1
| | | | | | | - Bump dependent ports' revisions Notes: svn path=/head/; revision=342392
* - StagifyThomas Zander2014-01-172-26/+31
| | | | | | | | | | - Use new LIB_DEPENDS format - Detect awk properly Approved by: portmgr (implicit, blanket), thierry (mentor) Notes: svn path=/head/; revision=340117
* Fix build problem (subtitler looks for freetype headers in the wrong dir)Thomas Zander2014-01-161-0/+12
| | | | | | | | | PR: ports/185248 Submitted by: Kevin Oberman <rkoberman@gmail.com> Approved by: Naram Qashat <cyberbotx@cyberbotx.com> (maintainer), thierry (mentor) Notes: svn path=/head/; revision=339971
* multimedia/ffmpeg: update to 2.0.1William Grzybowski2013-10-194-0/+671
| | | | | | | | | | - Update main ffmpeg port to 2.0.1 - Bump and update dependent ports when necessary (API change) Approved by: portmgr (bapt) Notes: svn path=/head/; revision=330909
* multimedia/x264: Update to 20130827 snapshotKubilay Kocak2013-10-071-1/+1
| | | | | | | | | | | | | - Update to 20130827 snapshot - Add CONFIGURE_ARGS to disable OpenCL, fixes configure failure - Chase library version bump in dependent ports PR: ports/182484 Submitted by: mm Reviewed by: kwm, bapt Notes: svn path=/head/; revision=329667
* 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
* The last port: --with-libiconv-prefix=${LOCALBASE} -> ${ICONV_CONFIGURE_ARG}Boris Samorodov2013-09-051-1/+1
| | | | | | | Approved by: portmgr (bapt, implicit) Notes: svn path=/head/; revision=326448
* Add an explicit dependency on pkgconfAntoine Brodin2013-09-021-1/+1
| | | | | | | Approved by: portmgr (bapt) Notes: svn path=/head/; revision=326047
* multimedia/transcode: add V4L optionWilliam Grzybowski2013-09-022-8/+46
| | | | | | | | | | | | | | - Add V4L option [1] - Remove support for OS < 7.x - Remove leading article from COMMENT - Add LICENSE (GPLv2) - USES gmake PR: ports/179460 Submitted by: Naram Qashat <cyberbotx cyberbotx.com> (maintainer) Notes: svn path=/head/; revision=326026
* - Convert USE_ICONV=yes to USES=iconvMarcus von Appen2013-04-271-1/+1
| | | | | | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here Reviewed by: zeising Notes: svn path=/head/; revision=316662
* Fix typo.Guido Falsi2012-10-161-1/+1
| | | | | | | | Reported by: crees Feature safe: yes Notes: svn path=/head/; revision=305988
* Fix mjpegtools LIBDEPENDS.Guido Falsi2012-10-161-1/+1
| | | | | | | | Reported by: Jeremy Messenger <mezz.freebsd@gmail.com> Feature safe: yes Notes: svn path=/head/; revision=305987
* - Convert to new options frameworkGuido Falsi2012-10-161-71/+54
| | | | | | | | | | | | - Trim Makefile headers - Remove ABI version number from LIB_DEPENDS PR: ports/172516 Submitted by: Naram Qashat <cyberbotx@cyberbotx.com> (maintainer) Feature safe: yes Notes: svn path=/head/; revision=305985
* Update multimedia/x264 to 0.125.2201Martin Matuska2012-07-231-2/+2
| | | | | | | Switch to new options framework Notes: svn path=/head/; revision=301407
* libogg.so.8: Bump PORTREVISION for ports that depend on libogg,Christian Weisgerber2012-07-191-1/+1
| | | | | | | directly or indirectly (via libvorbis, libtheora). Notes: svn path=/head/; revision=301188
* - update png to 1.5.10Dirk Meyer2012-06-011-1/+1
| | | | Notes: svn path=/head/; revision=297915
* Update x264 to 0.123.2189Martin Matuska2012-04-251-2/+2
| | | | Notes: svn path=/head/; revision=295502
* - Update devel/sdl12 to 1.2.15Marcus von Appen2012-02-181-1/+1
| | | | | | | | | | | | | | | | - Update audio/sdl_mixer to 1.2.15 - Update graphics/sdl_image to 1.2.12 - Update graphics/sdl_ttf to 2.0.11 - Update graphics/sdl_gfx to 2.0.23 - Update net/sdl_net to 1.2.8 - Bump PORTREVISIONs on ports that depend on one or more packages due to ABI and shared library version changes - Update Mk/bsd.sdl.mk accordingly for the new shared library versions Tested by: exp-run by pav Notes: svn path=/head/; revision=291667
* - Bump PORTREVISION to chase the update of multimedia/libvpxAshish SHUKLA2012-02-161-1/+1
| | | | Notes: svn path=/head/; revision=291538
* - Update libdvdread and libdvdnav to 4.2.0 and bump dependent ports' revisionsGanael LAPLANCHE2012-01-171-1/+1
| | | | | | | | | | | - libdvdread: allow package building with libdvdcss if WITH_DVDCSS is set [1] - libdvdread/libdvdnav: fix endianness handling [2] Submitted by: olgeni [1], richo <richo@psych0tik.net> [2] (via mail to ports@) PR: ports/162197 [1] Notes: svn path=/head/; revision=289371
* Update lame to 3.99.3.Alexander Leidinger2012-01-141-1/+1
| | | | | | | Bump portrevision of all ports which depend upon it. Notes: svn path=/head/; revision=289243
* Update x264 to 0.119.2113Martin Matuska2011-12-211-1/+2
| | | | Notes: svn path=/head/; revision=287785
* - update to 1.1.7Eitan Adler2011-12-214-49/+27
| | | | | | | | | | | | | Changes: Update the video stabilization plugins to version 0.80. Speed boost. PR: ports/163417 Submitted by: Naram Qashat <cyberbotx@cyberbotx.com> (maintainer) Feature safe: yes Notes: svn path=/head/; revision=287772