aboutsummaryrefslogtreecommitdiff
path: root/games/cockatrice
Commit message (Collapse)AuthorAgeFilesLines
* all: Remove all other $FreeBSD keywords.Mathieu Arnold2021-04-061-3/+0
|
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* games/cockatrice: Update to 2.8.0 releaseSean Bruno2021-01-283-18/+5
| | | | | | | | | - Cockatrice 2.8.0: Prismatic Bridge - https://github.com/Cockatrice/Cockatrice/releases/tag/2021-01-26-Release-2.8.0 - drop version patch as it is not needed Notes: svn path=/head/; revision=563150
* Bump PORTREVISION for devel/protobuf shlib changeSunpoet Po-Chuan Hsieh2021-01-261-1/+1
| | | | Notes: svn path=/head/; revision=562671
* Bump PORTREVISION for devel/protobuf shlib changeSunpoet Po-Chuan Hsieh2020-08-301-0/+1
| | | | Notes: svn path=/head/; revision=547081
* games/cockatriceSean Bruno2020-08-245-26/+17
| | | | | | | | | | | | | | - Update to 2.7.5 - Changelog/Release Notes: - https://github.com/Cockatrice/Cockatrice/releases - Upstream did not bump the version, include that as a local patch. - Upstream does not required two of our local patches, drop them. Reviewed by: lwhsu Differential Revision: https://reviews.freebsd.org/D26170 Notes: svn path=/head/; revision=546110
* Bump PORTREVISION for devel/protobuf shlib changeSunpoet Po-Chuan Hsieh2020-06-031-0/+1
| | | | Notes: svn path=/head/; revision=537830
* games/cockatrice: prepare for Qt5-5.15Tobias C. Berner2020-05-193-0/+30
| | | | Notes: svn path=/head/; revision=535878
* games/cockatrice:Sean Bruno2020-03-272-8/+7
| | | | | | | | | | Update to 2.7.4 Dawn of Hope Revision 1 There was some release problems with 2.7.3 that caused the developers to do a 2nd release. Release notes: https://github.com/Cockatrice/Cockatrice/releases Notes: svn path=/head/; revision=529270
* Bump PORTREVISION for devel/protobuf shlib changeSunpoet Po-Chuan Hsieh2020-01-221-0/+1
| | | | Notes: svn path=/head/; revision=523788
* games: Add missing USES={gnome,gl,sdl,xorg}Tobias Kortkamp2019-11-081-1/+1
| | | | Notes: svn path=/head/; revision=517046
* games/cockatrice: Update to 2.7.2Sean Bruno2019-09-012-6/+5
| | | | | | | https://github.com/Cockatrice/Cockatrice/releases/tag/2019-08-31-Release-2.7.2 Notes: svn path=/head/; revision=510736
* Bump PORTREVISION for devel/protobuf shlib changeSunpoet Po-Chuan Hsieh2019-07-311-1/+1
| | | | Notes: svn path=/head/; revision=507719
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-0/+1
| | | | | | | | | | | | | | | | | | as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330 Notes: svn path=/head/; revision=507372
* games/cockatrice - update to 2.7.1 releaseSean Bruno2019-07-163-6/+6
| | | | | | | - release notes https://github.com/Cockatrice/Cockatrice/releases/tag/2019-06-08-Release-2.7.1 Notes: svn path=/head/; revision=506724
* Update devel/protobuf to 3.8.0Sunpoet Po-Chuan Hsieh2019-07-051-1/+1
| | | | | | | | | | | - Bump PORTREVISION of dependent ports for shlib change Changes: https://github.com/protocolbuffers/protobuf/releases PR: 238808 Exp-run by: antoine Notes: svn path=/head/; revision=505909
* Update devel/protobuf to 3.7.1Sunpoet Po-Chuan Hsieh2019-03-311-0/+1
| | | | | | | | | | | - Bump PORTREVISION of dependent ports for shlib change Changes: https://github.com/protocolbuffers/protobuf/releases PR: 236157 Exp-run by: antoine Notes: svn path=/head/; revision=497411
* games/cockatrice: Update to 2.7.0 release.Sean Bruno2019-03-102-8/+7
| | | | | | | | release notes: https://github.com/Cockatrice/Cockatrice/releases/tag/2019-03-04-Release-2.7.0 Notes: svn path=/head/; revision=495298
* 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
* games/cockatrice:Sean Bruno2019-01-091-2/+3
| | | | | | | | | | - Move buildtools, qmake and linguistools to "build" dependencies and bump PORTREVISION so users get the update. Reviewed by: tobik Notes: svn path=/head/; revision=489812
* games/cockatrice: update to 2.6.2: Bog HumbugSean Bruno2018-12-232-6/+5
| | | | | | | https://github.com/Cockatrice/Cockatrice/releases/tag/2018-12-20-Release-2.6.2 Notes: svn path=/head/; revision=488221
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-12-121-1/+1
| | | | | | | | | | | | | | | | | | defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590 Notes: svn path=/head/; revision=487272
* Update devel/protobuf to 3.6.1Sunpoet Po-Chuan Hsieh2018-12-031-1/+1
| | | | | | | | | | | - Bump PORTREVISION of dependent ports for shlib change Changes: https://github.com/protocolbuffers/protobuf/releases PR: 231008 Exp-run by: antoine Notes: svn path=/head/; revision=486531
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-07-291-0/+1
| | | | | | | | | | | | | | | | | in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which has now moved from GCC 6 to GCC 7 by default. This includes ports - featuring USE_GCC=yes or USE_GCC=any, - featuring USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and those - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x, c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib. PR: 222542 Notes: svn path=/head/; revision=475857
* games/cockatrice: Update to release 2.6.1Sean Bruno2018-07-244-25/+5
| | | | | | | | | | "Father of Ruins, Revision 1" Changelog: https://github.com/Cockatrice/Cockatrice/releases/tag/2018-07-17-Release-2.6.1 Notes: svn path=/head/; revision=475259
* Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mkTobias C. Berner2018-06-281-4/+4
| | | | | | | | | | | | | | | | | | 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
* Revert r473259 and r473260 which are committed by accidentSunpoet Po-Chuan Hsieh2018-06-241-1/+1
| | | | | | | | - Bump PORTEPOCH for protobuf and py-protobuf - Bump PORTREVISION for dependent ports Notes: svn path=/head/; revision=473276
* Update to 3.6.0Sunpoet Po-Chuan Hsieh2018-06-241-1/+1
| | | | | | | Changes: https://github.com/google/protobuf/releases Notes: svn path=/head/; revision=473259
* games/cockatriceSean Bruno2018-05-183-100/+162
| | | | | | | | | | | | | | - enable server component (servatrice) - add options for server, client and mysql support - add startup script for servatrice - add optional runtime dependency on mysql-server for installs to the same machine or jail. Reviewed by: mat (OPTIONS_SUB help) Differential Revision: https://reviews.freebsd.org/D15416 Notes: svn path=/head/; revision=470321
* games/cockatrice:Sean Bruno2018-05-033-5/+16
| | | | | | | | | | | | - bump to release 2.5.1 - Use this as the version number for the package - Add patch to indicate that this is the version number when selecting "About" in the menu. https://github.com/Cockatrice/Cockatrice/releases/tag/2018-04-16-Release-2.5.1 Notes: svn path=/head/; revision=468925
* games/cockatrice: Update to 2.5.0 release.Sean Bruno2018-03-302-6/+6
| | | | | | | | PR: 226596 Submitted by: Yuri Victorovich <yuri@freebsd.org> Notes: svn path=/head/; revision=465985
* Fix games/cockatrice plist. With CMake 3.10, (also CMake 3.11, which isAdriaan de Groot2018-03-222-1/+17
| | | | | | | | | | | | | | | | | | | why I noticed this) and Qt 5.9, there are translations that are not included in the plist. Poudriere shows me: ====> Running Q/A tests (stage-qa) ====> Checking for pkg-plist issues (check-plist) ===> Parsing plist ===> Checking for items in STAGEDIR missing from pkg-plist Error: Orphaned: %%DATADIR%%/translations/cockatrice_ca.qm Error: Orphaned: %%DATADIR%%/translations/cockatrice_el.qm <snip> Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D14784 Notes: svn path=/head/; revision=465273
* Update devel/protobuf to 3.5.0Sunpoet Po-Chuan Hsieh2017-12-111-0/+1
| | | | | | | | | - Bump PORTREVISION for shlib change Changes: https://github.com/google/protobuf/releases Notes: svn path=/head/; revision=456058
* games/cockatrice: Bump to 2.4.0 ReleaseSean Bruno2017-11-232-6/+5
| | | | | | | https://github.com/Cockatrice/Cockatrice/releases/tag/2017-11-19-Release-2.4.0 Notes: svn path=/head/; revision=454769
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2017-09-101-1/+1
| | | | | | | | | | | | | | | | | (via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275 Notes: svn path=/head/; revision=449591
* Update devel/protobuf to 3.4.0Sunpoet Po-Chuan Hsieh2017-08-161-0/+1
| | | | | | | | | - Bump PORTREVISION for shlib change Changes: https://github.com/google/protobuf/releases Notes: svn path=/head/; revision=448041
* Bump to 05.05.2017 release version.Sean Bruno2017-07-182-6/+5
| | | | | | | | Release notes: https://github.com/Cockatrice/Cockatrice/releases/tag/2017-05-05-Release-2.3.17 Notes: svn path=/head/; revision=446169
* Update devel/protobuf to 3.3.0Sunpoet Po-Chuan Hsieh2017-04-291-1/+1
| | | | | | | | | | | - Remove USE_CSTD=c99: it was added for [1], now audio/clementine-player builds fine without it - Bump PORTREVISION for shlib change Changes: https://github.com/google/protobuf/releases PR: 178687 [1] Notes: svn path=/head/; revision=439753
* Bump PORTREVISIONs for ports depending on the canonical version of GCC andGerald Pfeifer2017-04-011-0/+1
| | | | | | | | | | | | | | | | | lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some circumstances such as versions of FreeBSD or platforms). This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using using Mk/bsd.octave.mk which in turn has USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang, c++11-lang, c++0x, c11, or gcc-c++11-lib. PR: 216707 Notes: svn path=/head/; revision=437439
* Update to release 2017-03-14-Release: Thopter Pie Network.Sean Bruno2017-03-152-5/+5
| | | | | | | https://github.com/Cockatrice/Cockatrice/releases Notes: svn path=/head/; revision=436251
* Update games/cockatrice to 2017-01-20 release.Sean Bruno2017-03-032-5/+4
| | | | Notes: svn path=/head/; revision=435310
* Update devel/protobuf to 3.2.0Sunpoet Po-Chuan Hsieh2017-01-291-0/+1
| | | | | | | | | - Bump PORTREVISION for shlib change Changes: https://github.com/google/protobuf/releases Notes: svn path=/head/; revision=432762
* Bump games/cockatrice to the 12/31/2016 release.Sean Bruno2017-01-092-5/+4
| | | | | | | "All Hallow's Eve, Revision 1" release. Notes: svn path=/head/; revision=431017
* - Update devel/protobuf to 3.1.0Sunpoet Po-Chuan Hsieh2016-12-141-1/+1
| | | | | | | | | - Bump PORTREVISION for shlib change Changes: https://github.com/google/protobuf/releases Notes: svn path=/head/; revision=428581
* Fix plist.Mathieu Arnold2016-11-102-0/+3
| | | | | | | | Reported by: qat Sponsored by: Absolight Notes: svn path=/head/; revision=425837
* Update to 2016.10.30 releaseSean Bruno2016-11-072-5/+6
| | | | Notes: svn path=/head/; revision=425627
* Update to 2016-06-30 Release.Sean Bruno2016-07-132-4/+4
| | | | Notes: svn path=/head/; revision=418487
* Update Cockatrice to upstream Release Version 2016-05-06-Release.Sean Bruno2016-05-112-5/+4
| | | | | | | https://github.com/Cockatrice/Cockatrice/releases/tag/2016-05-06-Release Notes: svn path=/head/; revision=415030
* Add USES=compiler:c++11-lib to successfully build on 9.3 release.Sean Bruno2016-05-101-1/+2
| | | | | | | | This has the effect of pulling in gcc48 to do the build, but it at least succeeds. On 10 and higher, this will use clang to build. Notes: svn path=/head/; revision=414971
* Move the Cockatrice dir to cockatrice for more lower case correctness.Sean Bruno2016-05-064-0/+112
Notes: svn path=/head/; revision=414718