aboutsummaryrefslogtreecommitdiff
path: root/games
Commit message (Collapse)AuthorAgeFilesLines
* */*: Update maintainer's email addressJason E. Hale2022-03-0460-60/+60
| | | | | PR: 262198 (cherry picked from commit c10ed451d2d743cdbb72172f8f5f9dbb1c2f0166)
* KDE: Update KDE Gear to 21.12.3Tobias C. Berner2022-03-0344-132/+132
| | | | | | | | | | | | | | | | | | | | | | | Thursday, 3 March 2022 Over 120 individual programs plus dozens of programmer libraries and feature plugins are released simultaneously as part of KDE Gear. Today they all get new bugfix source releases with updated translations, including: * kcron: Improve temporary file handling * kio-extras: SFTP can use random access * kontact: Fix Manager Crash when clicking New Distro and app store packagers should update their application packages. Changelog: https://kde.org/announcements/changelogs/gear/21.12.3/ Release Notes: https://community.kde.org/KDE_Gear/21.12_Release_notes (cherry picked from commit d01e18bd2101d3cc6d35c46bb240a15b5a890825)
* games/veloren: document Vulkan is required after 04bc03fdd5c9Jan Beich2022-02-221-1/+2
| | | | | | | | | | | | | | | In X11-only setups it's still common to have mesa-dri but not vulkan-loader. However, Veloren defaults to Vulkan on Linux/BSD: PanicInfo: panicked at 'Failed to select a rendering backend! No compatible backends were found. We currently support vulkan, metal, dx12, and dx11. Installing or updating vulkan drivers may resolve this issue. If the issue persists, please include the operating system and GPU details in your bug report to help us identify the cause.', voxygen/src/main.rs:255:13 Forcing OpenGL via WGPU_BACKEND=opengl is still broken: PanicInfo: panicked at 'Error in Adapter::request_device: unsupported features were requested: DEPTH_CLAMPING | ADDRESS_MODE_CLAMP_TO_BORDER', .../wgpu-a92b854/wgpu/src/backend/direct.rs:113:9 See also https://veloren.net/devblog-125/ (cherry picked from commit 609b3b168f392f5a36779fe4a33ce9d8ae4f5f46)
* games/veloren: prefer local cache for primary distfileJan Beich2022-02-211-0/+1
| | | | | | GitLab is slow and may mutate LFS export e.g., 27daf983c2f3. (cherry picked from commit 12e296fafe63c66f916e51e63b5fbfc801572c1d)
* games/veloren: update to 0.12.0Jan Beich2022-02-214-589/+656
| | | | | | | Changes: https://gitlab.com/veloren/veloren/-/releases/v0.12.0 Reported by: Repology (cherry picked from commit 7d1aede49dd00ce3ff52184b67bd3a83e6f9fa4e)
* games/vkquake: update to 1.12.2Jan Beich2022-02-132-4/+4
| | | | | | | | Changes: https://github.com/Novum/vkQuake/releases/tag/1.12.2 PR: 261896 Approved by: Greg V (maintainer) (cherry picked from commit 2b6b4153dd24a633fdf5a7aeedd56833c36189ca)
* KDE: Update KDE Gear to 21.12.2 (bug fix release)Tobias C. Berner2022-02-0749-137/+132
| | | | | | | | | | | | | | Thursday, 3 February 2022 Over 120 individual programs plus dozens of programmer libraries and feature plugins are released simultaneously as part of KDE Gear. Today they all get new bugfix source releases with updated translations. Full changelog: https://kde.org/announcements/changelogs/gear/21.12.2/ (cherry picked from commit e6e9fd72c47e0ce7398b11c56cd7bbe636de8c7c)
* games/openbor: chase WWW redirectJan Beich2022-02-071-1/+1
| | | | | | | | | Homepage link http://www.chronocrash.com/ is a permanent redirect to its HTTPS counterpart https://www.chronocrash.com/ and should be updated. Reported by: Repology (cherry picked from commit 3b9d17005e226ebef6aca2baa6c3445da998dcdb)
* lang/rust: Relink consumersTobias Kortkamp2022-02-058-8/+8
| | | | | | | | This is a recreation of commit d64a2a380f88ceec8264db6bbc94805f58112ee7 PR: 261449 Security: ee26f513-826e-11ec-8be6-d4c9ef517024
* cleanup: remove transitive py27 deprecation (www/qt5-webengine)Rene Ladan2022-01-302-6/+0
| | | | (cherry picked from commit 48d98ef9181e828b575f37e1841ad53e5def5987)
* games/renpy: remove past expiration dateRene Ladan2022-01-301-2/+0
| | | | (cherry picked from commit bc708349c36959040572c22635fb65f6d8ec9aac)
* KDE: Update KDE Gear to 21.12.1Tobias C. Berner2022-01-0644-132/+132
| | | | | | | | | | | | | | Thursday, 6 January 2022 Over 120 individual programs plus dozens of programmer libraries and feature plugins are released simultaneously as part of KDE Gear. Today they all get new bugfix source releases with updated translations. Distro and app store packagers should update their application packages. Changelog: https://kde.org/announcements/changelogs/gear/21.12.1/ (cherry picked from commit 2b5369a28e8313f8b3ed31fb819889c0d4009ef7)
* games/openclonk: unbreak build after 9cb3316ecd20Jan Beich2022-01-031-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sdl2 has a namespace pollution where <SDL.h> defines unprefixed HAVE_* macros often used by autotools, CMake, Meson. As sdl2 now depends on libinotify for joystick support HAVE_SYS_INOTIFY_H confuses openclonk which itself fails to detect <sys/inotify.h>. Due to inconsistent macro visibility and missing -linotify the build breaks. So, force-disable inotify code as it seems to be only used by editor (e.g., reload scenarios on changes) which since openclonk 8.0 requires Qt5. $ rg HAVE_SYS_INOTIFY_H /usr/local/include /usr/local/include/SDL2/SDL_config.h 223:#define HAVE_SYS_INOTIFY_H 1 $ make [...] -- Looking for C++ include sys/inotify.h -- Looking for C++ include sys/inotify.h - not found [...] src/platform/C4FileMonitor.cpp:29:2: error: use of undeclared identifier 'fd' fd = inotify_init1(IN_CLOEXEC); ^ src/platform/C4FileMonitor.cpp:30:6: error: use of undeclared identifier 'fd' if (fd == -1) fd = inotify_init(); ^ src/platform/C4FileMonitor.cpp:30:16: error: use of undeclared identifier 'fd' if (fd == -1) fd = inotify_init(); ^ src/platform/C4FileMonitor.cpp:31:6: error: use of undeclared identifier 'fd' if (fd == -1) LogF("inotify_init %s", strerror(errno)); ^ src/platform/C4FileMonitor.cpp:42:15: error: use of undeclared identifier 'fd' while (close(fd) == -1 && errno == EINTR) { } ^ src/platform/C4FileMonitor.cpp:57:29: error: use of undeclared identifier 'fd' int wd = inotify_add_watch(fd, file, IN_CREATE | IN_MODIFY | IN_MOVED_TO | IN_MOVE_SELF | IN_ONLYDIR); ^ src/platform/C4FileMonitor.cpp:60:2: error: use of undeclared identifier 'watch_descriptors' watch_descriptors[wd] = file; ^ src/platform/C4FileMonitor.cpp:65:59: error: use of undeclared identifier 'fd' if ((pfd->revents & pfd->events) != POLLIN || pfd->fd != fd) ^ src/platform/C4FileMonitor.cpp:66:69: error: use of undeclared identifier 'fd' LogF("C4FileMonitor::Execute unexpectedly called %d %d %hd %hd", fd, pfd->fd, pfd->events, pfd->revents); ^ src/platform/C4FileMonitor.cpp:69:11: error: use of undeclared identifier 'fd' if (read(fd, buf, sizeof(buf)) > 0) ^ src/platform/C4FileMonitor.cpp:71:23: error: use of undeclared identifier 'watch_descriptors' const char * file = watch_descriptors[event->wd]; ^ src/platform/C4FileMonitor.cpp:99:17: error: use of undeclared identifier 'fd' pollfd pfd = { fd, POLLIN, 0 }; ^ PR: 260885 Reported by: pkg-fallout Submitted by: Kevin Zheng (maintainer, different commit message) (cherry picked from commit deb3482f019ce860b2998f0f55475900edd35b9e)
* games/pysolfc: Update to 2.14.1Kai Knoblich2022-01-022-4/+4
| | | | | | | | | Changelog: https://github.com/shlomif/PySolFC/blob/pysolfc-2.14.1/NEWS.asciidoc MFH: 2022Q1 (cherry picked from commit c72673680e44421a66892fffb7562959f5f708ce)
* games/scummvm: Update to 2.5.1Kai Knoblich2022-01-023-9/+20
| | | | | | | | | | * Update pkg-descr while I'm here. Changelog: https://downloads.scummvm.org/frs/scummvm/2.5.1/ReleaseNotes.html MFH: 2022Q1 (cherry picked from commit 6aa9851440bbd69f3fbbcb75bfbb2a5a1e656b9a)
* games/dxx-rebirth: update to 20211220Piotr Kubaj2021-12-312-4/+4
|
* cleanup: Remove expired ports:Rene Ladan2021-12-3116-417/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2021-10-31 devel/sdl_sge: Upstream no longer maintained 2021-12-31 net/appkonference: Outdated, depends on unsupported version of net/asterisk 2021-12-31 dns/bind911: End of life, please migrate to a newer version of BIND9 2021-12-31 net/zebra: Abandoned upstream, last release in 2005. Consider migrating to net/frr7 or net/bird2 2021-12-31 audio/osalp: Abandoned upstream, listed as beta and no new release since 2008 2021-12-31 games/stransball2: Depends on expired devel/sdl_sge 2021-12-31 devel/rubygem-ruby-sdl-ffi: Depends on expired devel/sdl_sge 2021-12-31 devel/rubygem-rubygame: Depends on expired devel/sdl_sge 2021-12-31 devel/ruby-sdl: Depends on expired devel/sdl_sge 2021-12-31 games/magicmaze: Depends on expired devel/sdl_sge 2021-12-31 games/trophy: Depends on expired devel/clanlib1 2021-12-31 devel/clanlib1: Older than expired and removed devel/clanlib 2021-12-31 www/py-django31: Upgrade to Django 3.2+. Mainstream support ended (April 6, 2021). Extended support ends December 2021. See https://www.djangoproject.com/download/ 2021-12-31 www/py-dj31-django-prometheus: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/ 2021-12-31 databases/postgis24: Deprecated in favour of databases/postgis3x 2021-12-31 net-im/ekiga: Last release in 2013, not actively maintained 2021-12-31 sysutils/sample: abandoned upstream, incompatible with newer kernels 2021-12-31 www/mediawiki131: Upstream EOL 2021-12-31 www/py-dj31-django-mptt: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/ 2021-12-31 net/py-flask-xml-rpc: No longer maintained upstream 2021-12-31 audio/libaacplus: Abandoned upstream, no new release since 2011 2021-12-31 security/obfsclient: https://github.com/Yawning/obfsclient/issues/37 2021-12-31 devel/eric6: Uses EOL Python 2.7 via www/py-qt5-webengine 2021-12-31 www/grafana: No longer maintained upstream, use www/grafana8 2021-12-31 www/py-dj31-django-auth-ldap: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/ 2021-12-31 www/py-dj31-django-filter: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/ 2021-12-31 www/py-dj31-drf-yasg: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/ 2021-12-31 www/py-dj31-django-js-asset: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/ 2021-12-31 www/py-dj31-django-timezone-field: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/ 2021-12-31 www/py-dj31-django-tables2: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/ 2021-12-31 www/py-dj31-django-taggit: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/ 2021-12-31 graphics/librasterlite: Deprecated in favour of graphics/librasterlite2 2021-12-31 www/py-dj31-django-cacheops: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/ 2021-12-31 net-mgmt/p0f2: newer version available in net-mgmt/p0f 2021-12-31 devel/libhash: Abandoned upstream 2021-12-31 www/py-dj31-django-debug-toolbar: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/ 2021-12-31 www/py-dj31-django-cors-headers: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/ 2021-12-31 audio/flake: Abandoned upstream, no new release since 2007 2021-12-31 audio/ifp-line: Abandoned upstream, no new release since 2005 2021-12-31 audio/libnjb: Abandoned upstream, no new release since 2011 2021-12-31 audio/lpac: Abandoned upstream in 2003 2021-12-31 multimedia/mmsclient: Abandoned upstream, Microsoft deprecated MMS in 2003 2021-12-31 www/plugger: Uses incompatible plugin interface NPAPI 2021-12-31 audio/mpiosh: Abandoned upstream, no new release since 2004 2021-12-31 audio/rplay: Abandoned upstream, no new releases since 1999 2021-12-31 audio/celt: Deprecated and considered obsolete by upstream in 2016 in favour of (lib)opus 2021-12-31 security/nacl: Unmaintained by upstream, use libsodium instead 2021-12-31 net-mgmt/unifi-poller: Now called unpoller by upstream 2021-12-31 lang/nml: Abandoned upstream, last release 2004-04-19 2021-12-31 audio/mp32ogg: Abandoned upstream and unfetchable from upstream 2021-12-31 net/libstorj: Deprecated in favour of net/storj due to v3 rearchitecture 2021-12-31 devel/yasm-devel: No need to keep the -devel version due to upstream inactivity 2021-12-31 www/py-dj31-django-redis: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/ 2021-12-31 devel/py-dj31-django-rq: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/ 2021-12-31 graphics/libreatlas: Abandoned upstream, no new release since 2012 2021-12-31 www/py-dj31-djangorestframework: Extended support of Django 3.1 ends December 2021, upgrade to the Django 3.2+ version of this port. See https://www.djangoproject.com/download/
* games/wargus: update to 3.2.0Dmitry Marakasov2021-12-292-4/+4
|
* games/stratagus: update to 3.2.0Dmitry Marakasov2021-12-294-57/+38
|
* games/DDNet: update to 15.8.1Dmitry Marakasov2021-12-292-4/+4
|
* games/primateplunge: fix build, take maintainershipDmitry Marakasov2021-12-292-1/+12
|
* games/supertuxkart: fix upstream patch handlingDmitry Marakasov2021-12-293-5/+106
| | | | | | | | | | Instead of using PATCHFILES, handled backported upstream commit as a patch under files/, where it is always available, manageable and where it doesn't break when patch format changes. Fix fetch because of broken patch. Pointyhat to: greg@unrelenting.technology
* games/jumpnbump: fix upstream patch handlingDmitry Marakasov2021-12-293-5/+89
| | | | | | | | Instead of using PATCHFILES, handled backported upstream commit as a patch under files/, where it is always available, manageable and where it doesn't break when patch format changes. Pointyhat to: tcberner, jbeich
* games/veloren: sort distfiles after cc9d1909f082Jan Beich2021-12-281-24/+24
|
* games/minecraft-server: Update to 1.18.1Jonathan Price2021-12-266-6/+34
| | | | PR: 260452
* games/supertux2: Update to 0.6.3Max Brazhnikov2021-12-254-275/+655
|
* games/seabattle: update to 1.1 and unbreak on FreeBSD 13+Robert Clausecker2021-12-258-146/+18
| | | | | | | | | | | | | | | | After having sent a number of FreeBSD patches to the author, he updated the project and incorporated them. So this is mainly a patch release. Port changes: - remove patches incorporated by upstream - unbreak build on FreeBSD 13+ - set LICENSE to MIT - depend on audio/alsa-utils if audio output is desired - take up maintainership of this unmaintained port PR: 260633 Reported by: Robert Clausecker <fuz@fuz.su> (new maintainer)
* games/griels-quest: try to fix portscoutDmitry Marakasov2021-12-241-1/+1
|
* games/meandmyshadow: add skip for portscoutDmitry Marakasov2021-12-241-0/+2
|
* games/minetest: add skip for portscoutDmitry Marakasov2021-12-241-0/+2
|
* games/ivan: update to 0.59Dmitry Marakasov2021-12-243-28/+4
|
* games/wyrmsun: update to 5.3.1Dmitry Marakasov2021-12-242-4/+4
|
* games/wyrmgus: update to 5.3.1Dmitry Marakasov2021-12-242-4/+4
|
* games/irrlamb: fix build on non-x86Piotr Kubaj2021-12-231-0/+9
| | | | | | | | | | | /usr/bin/c++ -DGAME_VERSION=\"1.0.1\" -DLUA_USE_LINUX -DPLATFORM=0 -I/usr/local/include -I/usr/local/include/irrlicht -I/wrkdirs/usr/ports/games/irrlamb/work/irrlamb-1.0.1/src -I/wrkdirs/usr/ports/games/irrlamb/work/irrlamb-1.0.1/src/irrlicht/include -I/wrkdirs/usr/ports/games/irrlamb/work/irrlamb-1.0.1/src/OPCODE -I/wrkdirs/usr/ports/games/irrlamb/work/irrlamb-1.0.1/src/libccd -I/wrkdirs/usr/ports/games/irrlamb/work/irrlamb-1.0.1/src/libccd/custom -I/usr/local/include/freetype2 -I/usr/local/include/AL -O2 -pipe -fstack-protector-strong -fno-strict-aliasing -Wall -Wno-deprecated-declarations -pedantic -std=gnu++11 -msse -mfpmath=sse -O2 -pipe -fstack-protector-strong -fno-strict-aliasing -DdNODEBUG -s -MD -MT CMakeFiles/irrlamb.dir/src/OPCODE/Ice/IceAABB.cpp.o -MF CMakeFiles/irrlamb.dir/src/OPCODE/Ice/IceAABB.cpp.o.d -o CMakeFiles/irrlamb.dir/src/OPCODE/Ice/IceAABB.cpp.o -c /wrkdirs/usr/ports/games/irrlamb/work/irrlamb-1.0.1/src/OPCODE/Ice/IceAABB.cpp c++: warning: argument unused during compilation: '-msse' [-Wunused-command-line-argument] c++: warning: argument unused during compilation: '-s' [-Wunused-command-line-argument] error: unknown FP unit 'sse' ninja: build stopped: subcommand failed. Builds fine on i386.
* games/fheroes2: update to 0.9.11Piotr Kubaj2021-12-232-4/+4
| | | | | | | | | | | * Add Russian language support for any version of the game and generate proper letters for French language * Add additional spell info for spells owned by a hero * Add a popup dialog for map information * Fix AI behaviour during castle defence and update logic with road and its movement score * Fix UI elements rendering and few crashes related to them * Over 20 bugs fixed since 0.9.10 release https://github.com/ihhub/fheroes2/releases/tag/0.9.11
* games/qnetwalk: update to 1.7.0Dmitry Marakasov2021-12-223-6/+8
|
* games/wargus: update to 3.1.2Dmitry Marakasov2021-12-215-51/+37
| | | | | PR: 260563 Submitted by: agh@riseup.net
* games/stratagus: update to 3.1.2Dmitry Marakasov2021-12-217-47/+90
| | | | | PR: 260562 Submitted by: agh@riseup.net
* games/homura: Rename to suyimazu and update to 5.7Fernando ApesteguĂ­a2021-12-217-35/+34
| | | | | | | ChangeLog: https://codeberg.org/Alexander88207/Suyimazu/releases/tag/5.7 PR: 260521 Reported by: Alexander88207@protonmail.com (maintainer)
* games/libretro-core-info: update to 1.9.7Daniel Menelkir2021-12-214-12/+17
| | | | | PR: 257873 Approved by: greg@unrelenting.technology (maintainer timeout, >4 months)
* games/retroarch-assets: update to g20210802Daniel Menelkir2021-12-203-158/+631
| | | | | PR: 257874 Approved by: Greg V <greg@unrelenting.technology> (maintainer)
* misc/cmatrix: Move to a more appropriate categoryDries Michiels2021-12-204-0/+55
| | | | | | Approved by: eduardo (maintainer) Approved by: philip (mentor), 0mp (mentor) Differential Revision: https://reviews.freebsd.org/D33563
* games/tmatrix: New portDries Michiels2021-12-204-0/+39
| | | | | | | Terminal based replica of the digital rain from The Matrix Approved by: 0mp (mentor) Differential Revision: https://reviews.freebsd.org/D33557
* games/neo: New portDries Michiels2021-12-204-0/+51
| | | | | | | cmatrix clone with 32-bit color and Unicode support. Approved by: 0mp (mentor) Differential Revision: https://reviews.freebsd.org/D33507
* games/uqm: Update to 0.8.0Benjamin Lutz2021-12-199-212/+142
| | | | PR: 255350
* games/iortcw: port to riscv64Piotr Kubaj2021-12-173-3/+7
|
* games/gcompris-qt: update to 2.0 releaseAdriaan de Groot2021-12-173-9/+26
| | | | | | Release announcement at https://dot.kde.org/2021/12/17/gcompris-releases-version-20 there's a dozen new activities.
* games/libretro-snes9x: update to 0.20211024Daniel Menelkir2021-12-172-4/+4
| | | | | PR: 260443 Reported by: Daniel Menelkir <menelkir@itroll.org> (maintainer)
* games/libretro-snes9x2010: update to 0.20211102Daniel Menelkir2021-12-172-5/+5
| | | | | PR: 255487 Reported by: Daniel Menelkir <menelkir@itroll.org> (maintainer)
* games/libretro-fbneo: update to 0.20211215Daniel Menelkir2021-12-172-6/+5
| | | | | PR: 260442 Reported by: Daniel Menelkir <menelkir@itroll.org> (maintainer)