aboutsummaryrefslogtreecommitdiff
path: root/multimedia/iso2mkv
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* multimedia/iso2mkv: fix portlint(1) warningsFernando Apesteguía2020-12-281-7/+6
| | | | | | | | | | Fix several portlint warnings. PR: 252113 Submitted by: takefu@airport.fm Notes: svn path=/head/; revision=559466
* Fix Qt5 symbol version scripts to put the catch-all clause first. WhenTijl Coosemans2019-01-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a symbol matches multiple clauses the last one takes precedence. If the catch-all is last it captures everything. In the case of Qt5 libraries this caused all symbols to have a Qt_5 label while some should have Qt_5_PRIVATE_API. This only affects lld because GNU ld always gives the catch-all lowest priority. Older versions of Qt5Webengine exported some memory allocation symbols from the bundled Chromium. Version 5.9 stopped exporting these [1] but the symbols were kept as weak wrappers for the standard allocation functions to maintain binary compatibility. [2][3] The problem is that the call to the standard function in these weak wrappers is only resolved to the standard function if there's a call to this standard function in other parts of Qt5Webengine, because only then is there a non-weak symbol that takes precedence over the weak one. If there's no such non-weak symbol the call in the weak wrapper resolves to the weak wrapper itself creating an infinite call loop that overflows the stack and causes a crash. Some of the allocation functions are variants of C++ new and delete and it probably depends on the compiler whether these variants are used in other parts of Qt5Webengine. Remove the weak wrappers (make them Linux specific). This isn't binary compatible but we are already breaking that with the changes to the symbol versions. [1] https://github.com/qt/qtwebengine/commit/5c2cbfccf9aafb547b0b30914c4056abd25942a4 [2] https://github.com/qt/qtwebengine/commit/2ed5054e3a800fa97c2c9e920ba1e6ea4b6ef2a5 [3] https://github.com/qt/qtwebengine/commit/009f5ebb4bd6e50188671e0815a5dae6afe39db5 Bump all ports that depend on Qt5. PR: 234070 Exp-run by: antoine Approved by: kde (adridg) Notes: svn path=/head/; revision=490472
* Do not abuse INSTALL_MAN when installing documentation, examples, andAlexey Dokuchaev2018-01-101-1/+1
| | | | | | | other miscellaneous files which are not actually manual pages. Notes: svn path=/head/; revision=458646
* 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 trailing whitespace in pkg-descrs, categories [g-n]*Dmitry Marakasov2016-05-191-9/+9
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=415499
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-7/+7
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* - Add NO_ARCHDmitry Marakasov2015-11-201-10/+7
| | | | | | | - Switch to options helpers Notes: svn path=/head/; revision=402068
* - Drop @dirrm* from and add empty directories to pkg-plistsDmitry Marakasov2015-02-011-2/+0
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=378270
* Update the default version of GCC in the Ports Collection from GCC 4.7.4Gerald Pfeifer2014-09-101-0/+1
| | | | | | | | | | | | | to GCC 4.8.3. Part II, Bump PORTREVISIONs. PR: 192025 Tested by: antoine (-exp runs) Approved by: portmgr (implicit) Notes: svn path=/head/; revision=367888
* - New upstream release (dated 2011-05-02)Thomas Zander2014-06-083-19/+27
| | | | | | | | | | | | | - Add LICENSE - Add dependency on ogmtools due to dvdxchap - USE_* -> USES - Stagify - OPTIONS for DOCS and EXAMPLES Approved by: mentors (implicit) Notes: svn path=/head/; revision=357078
* Update to libmpc version 1.0.1 which brings the following fixes:Gerald Pfeifer2013-10-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Switched to automake 1.11.6, see CVE-2012-3386. - #14669: Fixed extraction of CC from gmp.h. - Fixed case of intermediate zero real or imaginary part in mpc_fma, found by hydra with GMP_CHECK_RANDOMIZE=1346362345. This is on top of the following changes from version 1.0 - Licence change towards LGPLv3+ for the code and GFDLv1.3+ (with no invariant sections) for the documentation. - 100% of all lines are covered by tests - Renamed functions . mpc_mul_2exp to mpc_mul_2ui . mpc_div_2exp to mpc_div_2ui - 0^0, which returned (NaN,NaN) previously, now returns (1,+0). - Removed compatibility with K&R compilers, which was untestable due to lack of such compilers. - New functions . mpc_log10 . mpc_mul_2si, mpc_div_2si - Speed-ups . mpc_fma - Bug fixes . mpc_div and mpc_norm now return a value indicating the effective rounding direction, as the other functions. . mpc_mul, mpc_sqr and mpc_norm now return correct results even if there are over- or underflows during the computation. . mpc_asin, mpc_proj, mpc_sqr: Wrong result when input variable has infinite part and equals output variable is corrected. . mpc_fr_sub: Wrong return value for imaginary part is corrected. Convert to the new LIB_DEPENDS standard and remove hard-coded .so versions from a couple of dependent ports. Bump PORTREVISIONS of all dependent ports. PR: 183141 Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=331644
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-5/+2
| | | | | | | multimedia) Notes: svn path=/head/; revision=327747
* Chase textproc/libebml, multimedia/libmatroska update.Emanuel Haupt2013-05-061-0/+1
| | | | | | | Approved by: multimedia (bapt, kwm) Notes: svn path=/head/; revision=317561
* - Update to version 2007.04.25Michael Scheidell2012-08-062-19/+28
| | | | | | | | PR: ports/170160 Submitted by: KATO Tsuguru <tkato432@yahoo.com> Notes: svn path=/head/; revision=302178
* 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
* - remove MD5Olli Hauer2011-07-031-1/+0
| | | | Notes: svn path=/head/; revision=276986
* - update audio/lame to 3.98.4Alexander Leidinger2010-06-031-1/+1
| | | | | | | | | | | | - use ?= for the portrevision of a master port to make it possible to change it in a slave port which depends upon lame - bump portrevisions of ports which depend upon lame - done via a semi-automated way (manual review and fixup) - I tried to take care to not bump ports which only depend optionaly on lame (with a default of no dependency) Notes: svn path=/head/; revision=255644
* - update to 1.4.1Dirk Meyer2010-03-281-1/+1
| | | | | | | | Reviewed by: exp8 run on pointyhat Supported by: miwi Notes: svn path=/head/; revision=251605
* - update to jpeg-8Dirk Meyer2010-02-051-1/+1
| | | | Notes: svn path=/head/; revision=249285
* Reset alexbl@FreeBSD.org due to maintainer-timeouts and no repsonseMark Linimon2009-08-021-1/+1
| | | | | | | | | to email. Hat: portmgr Notes: svn path=/head/; revision=238758
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-1/+1
| | | | | | | | | | | | | The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav) Notes: svn path=/head/; revision=214430
* - Chase multimedia/mplayer splitRong-En Fan2007-08-111-1/+1
| | | | | | | | PR: ports/115416 Submitted by: Thomas Zander <thomas.e.zander at googlemail.com> Notes: svn path=/head/; revision=197471
* - Welcome X.org 7.2 \o/.Florent Thoumie2007-05-191-0/+1
| | | | | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
* - update to 0.8.4Alexander Botero-Lowry2007-01-282-4/+4
| | | | | | | Submitted by: pointyhat via pav Notes: svn path=/head/; revision=183464
* - Unbreak INDEXAlexander Botero-Lowry2007-01-011-1/+1
| | | | | | | Pointyhat to: alexbl Notes: svn path=/head/; revision=181192
* - add iso2mkv 0.8.3Alexander Botero-Lowry2007-01-013-0/+56
iso2mkv is software for automated DVD to XviD/vorbis MKV video conversion. Gives almost total control on the process of video compression at maximum quality, while being simple and straightforward to use (a kind of 'life-hack'). The intended audience is advanced end-users and the script is not user-error-proof. Based on mplayer, mencoder, oggenc or lame, and mkvmerge (if not properly installed, won't work). This is only a shell script that wraps the other programs. If you can watch the DVD with MPlayer, you can compress it with iso2mkv. Other used programs (hopefully included in most GNU/Linux distributions as well a FreeBSD :) ) are basename, bc, nice, stat. WWW: http://5ko.free.fr/en/iso2mkv.html Notes: svn path=/head/; revision=181190