aboutsummaryrefslogtreecommitdiff
path: root/emulators/qmc2
Commit message (Collapse)AuthorAgeFilesLines
* graphics/mesa-libs: Bump reverse deps for libglvndKevin Bowling2021-06-221-1/+1
| | | | | | | | | | Per discussion with bapt on helping pkg handle the changing of these deps and avoiding impossible upgrade senarios. PR: 246767 Reviewed by: manu, bapt Approved by: x11 Differential Revision: https://reviews.freebsd.org/D30824
* emulators/qmc2: Drop maintainershipDanilo Egea Gondolfo2021-05-191-1/+1
|
* all: Remove all other $FreeBSD keywords.Mathieu Arnold2021-04-061-2/+0
|
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* emulators/qmc2: : Prepare for Qt5.15Loïc Bartoletti2020-06-241-0/+10
| | | | | | | | PR: 247010 Approved by: tcberner (mentor, implicit) Notes: svn path=/head/; revision=540059
* emulators/qmc2: Prep-work for Qt 5.15; compatible with Qt 5.14Adriaan de Groot2020-05-312-2/+31
| | | | | | | | | | | | | | | | | | | | In Qt 5.15 an enumeration is introduced which has enumerators True and False, used like QCborSimpleType::False. In C++ that's 3 tokens, one name. The C Preprocessor deals with tokens, though, and since some headers #define False 0, we end up with tokens QCborSimpleType::0 instead, which is nonsense. The actual defines are only relevant in C code internals, not the API for lzma that is used from C++. So somewhat-hackishly just switch off the #defines when in C++ mode. The change is complicated by this *particular* source file being in DOS CRLF mode. Reported by: tcberner Notes: svn path=/head/; revision=537158
* e*: Add missing USES={gnome,sdl,xorg}Tobias Kortkamp2019-11-081-1/+1
| | | | Notes: svn path=/head/; revision=517045
* Add USES=xorg USES=gl, ports categories eNiclas Zeising2019-11-051-1/+1
| | | | | | | | Add USES=xorg, USES=gl and in a few cases USES=gnome to ports in categories starting with 'e'. Notes: svn path=/head/; revision=516802
* Add compiler:c++11-lang to USES to fix build on GCC-based systems:Mark Linimon2019-09-251-1/+1
| | | | | | | | | | /usr/local/include/qt5/QtCore/qglobal.h:45:25: error: type_traits: No such file or directory /usr/local/include/qt5/QtCore/qcompilerdetection.h:564:6: error: #error Qt requires a C++11 compiler and yours does not seem to be that. Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=512781
* Convert to UCL & cleanup pkg-message (categories e-g)Mathieu Arnold2019-08-131-4/+6
| | | | Notes: svn path=/head/; revision=508837
* Update Qt5 to 5.12.1Tobias C. Berner2019-02-121-0/+9
| | | | | | | | | | | | | | | | | | Release announcement: https://blog.qt.io/blog/2019/02/01/qt-5-12-1-released/ Changelog: https://wiki.qt.io/Qt_5.12.1_Change_Files - A change was required to qt-dist.mk to always pass LOCALBASE to qmake, as Qt5 has been installed to a prefix for some time now, there should not be any harm in that, with respect to it picking up installed versions of itself during build. PR: 235622 Exp-run by: antoine Notes: svn path=/head/; revision=492793
* 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
* Update Qt5 to 5.12.0Tobias C. Berner2018-12-161-0/+11
| | | | | | | | | | | | http://blog.qt.io/blog/2018/12/06/qt-5-12-lts-released/ - This breaks support for libressl again. Patches are welcome. PR: 233705 Exp-run by: antoine Notes: svn path=/head/; revision=487594
* Merge lang/qt5-qml and x11-toolkits/qt5-quick into x11-toolkits/qt5-declarativeTobias C. Berner2018-11-041-2/+3
| | | | | | | | | | | | - There was no obvious reason to split these ports, and it makes porting simpler; the set of ports using either mostly coincided. Exp-run by: antoine PR: 223687 PR: 232751 Notes: svn path=/head/; revision=484140
* Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mkTobias C. Berner2018-06-281-2/+2
| | | | | | | | | | | | | | | | | | From now on, ports that depend on Qt4 will have to set USES= qt:4 USE_QT= foo bar ports depending on Qt5 will use USES= qt:5 USE_QT= foo bar PR: 229225 Exp-run by: antoine Reviewed by: mat Approved by: portmgr (antoine) Differential Revision: →https://reviews.freebsd.org/D15540 Notes: svn path=/head/; revision=473503
* - Update to 0.195Danilo Egea Gondolfo2018-04-033-9/+21
| | | | | | | | - Use QT5 to match mame/mess - Update COMMENT Notes: svn path=/head/; revision=466376
* - Update to 0.192Danilo Egea Gondolfo2018-01-013-22/+16
| | | | Notes: svn path=/head/; revision=457753
* - Update to 0.187Danilo Egea Gondolfo2017-11-052-4/+4
| | | | Notes: svn path=/head/; revision=453581
* - Update to 0.186Danilo Egea Gondolfo2017-06-243-5/+22
| | | | Notes: svn path=/head/; revision=444249
* Revision bump of all ports with USE_GL after consolidation of mesa-libsMatthew Rezny2017-05-231-0/+1
| | | | | | | | Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D10845 Notes: svn path=/head/; revision=441503
* - Update to 0.183Danilo Egea Gondolfo2017-05-073-6/+40
| | | | Notes: svn path=/head/; revision=440365
* Get rid of QT_PREFIX in favour of PREFIX.Tobias C. Berner2016-12-181-1/+1
| | | | | | | | | | | QT_PREFIX was a remnant of a bygone time. Reviewed by: rakuco Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D8825 Notes: svn path=/head/; revision=428889
* - Update to 0.65Danilo Egea Gondolfo2016-07-243-4/+10
| | | | Notes: svn path=/head/; revision=419022
* - Update to 0.64Danilo Egea Gondolfo2016-06-102-8/+10
| | | | | | | | - Add dependencies explicitly as suggested by Q/A - Sort USE_QT4 list Notes: svn path=/head/; revision=416694
* - Update to 0.63Danilo Egea Gondolfo2016-05-012-3/+3
| | | | Notes: svn path=/head/; revision=414380
* - Update to 0.62Danilo Egea Gondolfo2016-04-092-3/+3
| | | | Notes: svn path=/head/; revision=412861
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.Mathieu Arnold2016-04-011-2/+2
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412346
* - Update to 0.61Danilo Egea Gondolfo2016-02-272-3/+3
| | | | Notes: svn path=/head/; revision=409643
* - Update to 0.60Danilo Egea Gondolfo2016-01-312-3/+3
| | | | Notes: svn path=/head/; revision=407635
* - Update to 0.59Danilo Egea Gondolfo2016-01-024-6/+18
| | | | Notes: svn path=/head/; revision=405071
* - Update to 0.58Danilo Egea Gondolfo2015-11-263-4/+3
| | | | Notes: svn path=/head/; revision=402453
* Fix ports that confused the meaning of WRKDIR and WRKSRC.Mathieu Arnold2015-11-051-1/+1
| | | | | | | | | | | PR: 204056 Submitted by: mat Reviewed by: bapt Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D2735 Notes: svn path=/head/; revision=400848
* - Update to 0.57Danilo Egea Gondolfo2015-10-295-111/+69
| | | | | | | | - Install qmc2-arcade and qchdman binaries - Update WWW Notes: svn path=/head/; revision=400470
* emulators/qmc2: Use LOCALBASE instead of PREFIX for CXXFLAGSJohn Marino2015-05-251-1/+1
| | | | Notes: svn path=/head/; revision=387376
* emulators/qmc2: Adjust after update to mame/messJohn Marino2015-05-251-3/+3
| | | | | | | | | | | | | | The mame and mess executable names have changed slightly. For i386 platforms, they are still "mame" and "mess" but for amd64 platforms, they are "mame64" and "mess64". Change the RUN_DEPENDS specification to adjust for this morphing name. I suspect a patch is also needed for amd64 but I don't know where it would go. I'll notify the maintainer. The RUN_DEPENDS fix and the hardcoded CFLAG fix are "just fix it" items. Notes: svn path=/head/; revision=387375
* - Update to 0.51Danilo Egea Gondolfo2015-05-022-3/+3
| | | | Notes: svn path=/head/; revision=385220
* - Update to 0.50Danilo Egea Gondolfo2015-03-313-3/+117
| | | | Notes: svn path=/head/; revision=382821
* - Update to 0.49Danilo Egea Gondolfo2015-02-263-3/+9
| | | | Notes: svn path=/head/; revision=380059
* - Update to 0.48Danilo Egea Gondolfo2015-01-312-3/+3
| | | | Notes: svn path=/head/; revision=378216
* - Update to 0.47Danilo Egea Gondolfo2015-01-022-4/+3
| | | | Notes: svn path=/head/; revision=376064
* Replace USES=libtool:oldver with USES=libtool or USES=libtool:keepla inTijl Coosemans2014-12-081-0/+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
* - Update from 0.45 to 0.46Danilo Egea Gondolfo2014-11-273-24/+15
| | | | Notes: svn path=/head/; revision=373490
* - Update from 0.44 to 0.45Danilo Egea Gondolfo2014-10-183-85/+91
| | | | Notes: svn path=/head/; revision=371163
* 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
* - Update from 0.43 to 0.44Danilo Egea Gondolfo2014-07-243-30/+61
| | | | Notes: svn path=/head/; revision=362803
* - Update from 0.42 to 0.43Danilo Egea Gondolfo2014-04-113-6/+82
| | | | | | | - Convert USE_BZIP2 to USES Notes: svn path=/head/; revision=350878
* - Bump PORTREVISION after KDE4_PREFIX changeMax Brazhnikov2014-02-181-0/+1
| | | | Notes: svn path=/head/; revision=344898
* emulators/qmc2Danilo Egea Gondolfo2014-01-163-285/+297
| | | | | | | | | | | | | - Update from 0.41 to 0.42 emulators/{mame,mess} [1] - Update from 0.150 to 0.152 PR: ports/184246 Submitted by: KATO Tsuguru <tkato432@yahoo.com> [1] Notes: svn path=/head/; revision=339885
* - Update from 0.40 to 0.41Danilo Egea Gondolfo2013-12-212-7/+4
| | | | | | | - Take maintainership Notes: svn path=/head/; revision=337151
* emulators/mamePawel Pekala2013-10-301-17/+20
| | | | | | | | | | | | | | | | | emulators/mess - Update to version 0.150 - Add SDL2 option - Support staging emulators/qmc2 - Support staging - USE_GMAKE -> USES=gmake PR: ports/182801 Submitted by: KATO Tsuguru <tkato432@yahoo.com> Notes: svn path=/head/; revision=332169