aboutsummaryrefslogtreecommitdiff
path: root/net/opal
Commit message (Collapse)AuthorAgeFilesLines
* multimedia/x264: update to 0.155.2917Jan Beich2018-08-101-1/+1
| | | | | | | | | | - 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/ Notes: svn path=/head/; revision=476802
* net/opal: properly set codec-specific options after r468745Jan Beich2018-05-022-9/+9
| | | | Notes: svn path=/head/; revision=468852
* 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
* net/opal: correct codec option names after r468745Jan Beich2018-05-022-3/+3
| | | | Notes: svn path=/head/; revision=468832
* net/opal: unbreak with ffmpeg 4.0Jan Beich2018-04-301-0/+262
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | h263-1998.cxx:237:22: error: use of undeclared identifier 'CODEC_FLAG_TRUNCATED' m_context->flags = CODEC_FLAG_TRUNCATED // Possible missing packets ^ h263-1998.cxx:346:27: error: use of undeclared identifier 'CODEC_FLAG_AC_PRED' m_context->flags |= CODEC_FLAG_AC_PRED; ^ h263-1998.cxx:348:28: error: use of undeclared identifier 'CODEC_FLAG_AC_PRED' m_context->flags &= ~CODEC_FLAG_AC_PRED; ^ h263-1998.cxx:356:27: error: use of undeclared identifier 'CODEC_FLAG_LOOP_FILTER' m_context->flags |= CODEC_FLAG_LOOP_FILTER; ^ h263-1998.cxx:358:28: error: use of undeclared identifier 'CODEC_FLAG_LOOP_FILTER' m_context->flags &= ~CODEC_FLAG_LOOP_FILTER; ^ h263-1998.cxx:422:14: error: no member named 'lmin' in 'AVCodecContext'; did you mean 'qmin'? m_context->lmin = m_context->qmin * FF_QP2LAMBDA; ^~~~ qmin /usr/local/include/libavcodec/avcodec.h:2355:9: note: 'qmin' declared here int qmin; ^ h263-1998.cxx:423:14: error: no member named 'lmax' in 'AVCodecContext'; did you mean 'qmax'? m_context->lmax = m_context->qmax * FF_QP2LAMBDA; ^~~~ qmax /usr/local/include/libavcodec/avcodec.h:2362:9: note: 'qmax' declared here int qmax; ^ h263-1998.cxx:598:24: error: use of undeclared identifier 'CODEC_FLAG_4MV' m_context->flags &= ~CODEC_FLAG_4MV; ^ PR: 227726 Reported by: antoine (via exp-run) Notes: svn path=/head/; revision=468745
* net/opal: unbreak build with Clang 6 (C++14 by default)Jan Beich2018-01-061-0/+173
| | | | | | | | | | | | | | src/sip/sipep.cxx:474:32: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal] if (remoteParty.Find(";OPAL-"OPAL_SIP_REFERRED_CONNECTION) == P_MAX_INDEX) ^ src/im/msrp.cxx:838:47: error: invalid operands to binary expression ('basic_ostream<char, std::__1::char_traits<char> >' and 'std::__1::ostream' (aka 'basic_ostream<char>')) PStringStream str; str << ::setfill('\r') << mime.PrintContents(str); ~~~~~~~~~~~~~~~~~~~~~~ ^ ~~~~~~~~~~~~~~~~~~~~~~~ Reported by: antoine (via bug 224669) Notes: svn path=/head/; revision=458277
* multimedia/{lib,}x264: update to 0.152.2854Jan Beich2017-12-291-1/+1
| | | | | | | Changes: https://git.videolan.org/?p=x264.git;a=shortlog;h=e9a5903edf8ca59ef20e6f4894c196f135af735e Notes: svn path=/head/; revision=457488
* Update license of ports using MPL (without version)Danilo G. Baio2017-11-041-1/+1
| | | | | | | | | All ports now should use MPL[10|11|20] license. Approved by: portmgr (blanket) Notes: svn path=/head/; revision=453453
* 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
* Chase ffmpeg 3.3 update (ABI changes)Thomas Zander2017-04-251-1/+1
| | | | | | | | PR: 218658 Submitted by: riggs Notes: svn path=/head/; revision=439367
* multimedia/ffmpeg: update to 3.2.2Jan Beich2016-12-111-1/+1
| | | | | | | | | | 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) Notes: svn path=/head/; revision=428352
* 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
* Fix type for abs() calls in net/opalDon Lewis2016-06-061-0/+13
| | | | | | | | | | | | | | | | | | | | | | | During the exp-run in bug 208158, it was found that net/opal gives errors with libc++ 3.8.0 [1]: ../common/mpi.cxx:135:18: error: call to 'abs' is ambiguous distance = ( abs(MPIs[i].width - desiredWidth ) * ^~~ This is because abs() is being called with unsigned arguments. Fix this by casting the arguments to the appropriate signed type. This mimics what happens with older libraries where the only version of abs() was the one in <stdlib.h>, which is prototyped: int abs(int) Correct functioning of this expression relies on how integer overflow actually behaves, which is actually undefined in the C++ standard. PR: 209077 Submitted by: dim Notes: svn path=/head/; revision=416491
* net/opal: Fix build with ffmpeg 3.0.xBen Woods2016-05-102-1/+248
| | | | | | | | | | | | | | | | | | | - Add patch to allow opal to build successfully once multimedia/ffmpeg is updated to 3.0.x. Note that multimedia/ffmpeg is currently still on the 2.8.x branch, however this patch is backwards compatible with ffmpeg 2.8.x. PR: 209346 Reported by: antoine (PR207547) Reviewed by: kwm (with gnome hat) Approved by: adamw (mentor) Obtained from: ArchLinux [1] Differential Revision: https://reviews.freebsd.org/D6308 [1] https://git.archlinux.org/svntogit/packages.git/tree/trunk/opal-ffmpeg3.patch?h=packages/opal Notes: svn path=/head/; revision=414950
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-11/+11
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* Switch opal to newer ffmpeg.Koop Mast2015-07-142-7/+401
| | | | | | | | Noticed by: bapt@ Obtained from: ffmpeg 2.x patch obtained from linuxfromscratch. Notes: svn path=/head/; revision=392099
* Fix plist, when the X264 option is unset.Koop Mast2015-07-141-2/+2
| | | | | | | | PR: 200800 Submitted by: lumiwa@gmail.com Notes: svn path=/head/; revision=392001
* 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
* - Update comms/spandsp to version 0.0.6 [1]Pawel Pekala2014-12-151-3/+2
| | | | | | | | | | | | | | - Convert all comms/spandsp-devel consumers to use newer comms/spandsp - Bump affected ports - Mark comms/spandsp-devel as deprecated and set expiration date - Add upgrade instructions to UPDATING PR: 194399 [1] Submitted by: Nikola Kolev <koue@chaosophia.net> [1] Approved by: madpilot (asterisk ports), maintainer timeout (other) Notes: svn path=/head/; revision=374761
* 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
* Cleanup plistAntoine Brodin2014-11-221-20/+0
| | | | Notes: svn path=/head/; revision=373063
* comms/spandsp-devel:Tijl Coosemans2014-09-141-2/+2
| | | | | | | | | | | - Fix installation of lib/libspandsp.so.2 (when patching configure.ac almost all USE_AUTOTOOLS are needed) - Replace CONFIGURE_ARGS with CPPFLAGS/LIBS Reported by: antoine Notes: svn path=/head/; revision=368167
* Remove extra space in LID_DESC.Koop Mast2014-09-112-1/+2
| | | | | | | | | Remove leftover dir to please make check-plist. Submitted by: Dmitry Marakasov Notes: svn path=/head/; revision=367918
* Update the default version of GCC in the Ports Collection from GCC 4.7.4Gerald Pfeifer2014-09-101-1/+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
* - Switch comms/spandsp-devel to USES=libtool, drop .la filesDmitry Marakasov2014-08-271-2/+2
| | | | | | | | | | | - Bump dependent ports as .so version has changed - Use install-strip target instead of STRIP_CMD - Add/fix libspandsp.so versions in LIB_DEPENDS to differentiate between spandsp and spandsp-devel Approved by: portmgr blanket Notes: svn path=/head/; revision=366310
* Convert a bunch of USE_XZ to USES=tar:xz.Adam Weinberger2014-07-291-2/+1
| | | | | | | Approved by: portmgr (not really, but touches unstaged ports) Notes: svn path=/head/; revision=363392
* Stagify.Koop Mast2014-02-061-5/+8
| | | | Notes: svn path=/head/; revision=343109
* Switch to ffmpeg 0.x [1]. This should resolve building failures with ffmpeg 2.x.Koop Mast2013-10-212-197/+7
| | | | | | | Submitted by: wg@ [1] Notes: svn path=/head/; revision=331138
* multimedia/ffmpeg: update to 2.0.1William Grzybowski2013-10-192-0/+195
| | | | | | | | | | - 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-0/+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-1/+1
| | | | | | | net) Notes: svn path=/head/; revision=327755
* Move ptlib26, opal3 and ekiga3 to unversioned ports and update to:Koop Mast2013-09-209-0/+742
| | | | | | | | | ptlib to 2.10.10 opal to 3.10.10 ekiga to 4.0.1 Notes: svn path=/head/; revision=327751
* Remove old versions, in preperation of svn mv of versioned ports to unversioned.Koop Mast2013-09-207-233/+0
| | | | Notes: svn path=/head/; revision=327749
* Assign to gnome@ [1], update Makefile header, OptionsNG.Koop Mast2013-03-031-14/+13
| | | | | | | Approved by: previous maintainer [1] Notes: svn path=/head/; revision=313355
* - 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
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-2/+2
| | | | | | | | | | | | - Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav Notes: svn path=/head/; revision=282282
* Remove USE_GNOME=gnometarget from ports. It has been a empty keyword sinceKoop Mast2011-08-111-1/+0
| | | | | | | | | | mid 2008. PR: ports/159624 Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru> Notes: svn path=/head/; revision=279506
* Bump due to ffmpeg update to 0.7.1Martin Matuska2011-06-241-1/+1
| | | | Notes: svn path=/head/; revision=276239
* - Mark BROKEN on 9.X: does not compilePav Lucistnik2011-03-231-0/+4
| | | | | | | Reported by: pointyhat Notes: svn path=/head/; revision=271562
* - Get Rid MD5 supportMartin Wilke2011-03-201-1/+0
| | | | Notes: svn path=/head/; revision=271346
* Chase after net/openldap24-server update.Xin LI2011-02-251-1/+1
| | | | | | | Reminded by: miwi Notes: svn path=/head/; revision=269631
* 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
* Register conflict between opal and opal3.Koop Mast2010-05-101-0/+2
| | | | Notes: svn path=/head/; revision=254098
* - Update download locationPav Lucistnik2009-01-301-3/+1
| | | | | | | Reported by: -fetch-original pointyhat run Notes: svn path=/head/; revision=227212
* Bump PORTREVISION's after OpenLDAP update.Xin LI2009-01-051-0/+1
| | | | | | | Suggested by: rafan Notes: svn path=/head/; revision=225291
* Conversion from (now defunct) autoconf-2.61 to autoconf-2.62Ade Lovett2008-08-201-1/+1
| | | | | | | Tested by: exp build run (erwin) Notes: svn path=/head/; revision=218886