aboutsummaryrefslogtreecommitdiff
path: root/games/tome4
Commit message (Collapse)AuthorAgeFilesLines
* games/tome4: go back to using luajitPiotr Kubaj2021-07-262-9/+23
| | | | | | Turns out the luajit issues were caused by my setup. While here, remove empty whitespaces from pkg-plist.
* games/tome4: switch to standard luaPiotr Kubaj2021-07-022-16/+3
| | | | There seem to be some issues when running with luajit on the newest version.
* games/tome4: update to 1.7.4Piotr Kubaj2021-06-274-24/+4
| | | | While here, remove not necessary patch and enable -O3.
* 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
* games/tome4: fix build on powerpcPiotr Kubaj2021-06-151-4/+9
| | | | | | | Force GCC: In file included from ../src/luajit2/src/host/buildvm_lib.c:6: In file included from ../src/luajit2/src/host/buildvm.h:16: ../src/luajit2/src/lj_arch.h:295:2: error: "Need at least GCC 4.3 or newer"
* games/tome4: update to 1.7.3Piotr Kubaj2021-05-213-4/+13
|
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Add stanza for riscv64 the same as aarch64 to build build.Mark Linimon2021-01-201-3/+1
| | | | | | | Obtained from: maintainer Notes: svn path=/head/; revision=562111
* Mark as BROKEN on riscv64:Mark Linimon2021-01-191-0/+2
| | | | | | | | | | ../src/luajit2/src/lj_arch.h:55:2: error: "No support for this architecture (yet)" Approved by: portmgr (tier-2 blanket) Obtained from: lonesome.com build testing Notes: svn path=/head/; revision=562016
* games/tome4: update to 1.7.2Piotr Kubaj2020-11-082-4/+4
| | | | | | | | | Changelogs: https://te4.org/blogs/darkgod/2020/11/news/tales-majeyal-171-ghoulish-evaporation-released https://te4.org/blogs/darkgod/2020/11/news/tales-majeyal-172-evaporating-ghouls-released Notes: svn path=/head/; revision=554656
* games/tome4: update to 1.7.0, take maintainershipPiotr Kubaj2020-11-043-5/+6
| | | | | | | | | | | | | Changelog: https://te4.org/blogs/darkgod/2020/10/news/tales-majeyal-170-necrotic-translations-released Also take maintainership because of repeated maintainer timeouts. PR: 249371 (based on) Approved by: lifanov (maintainer timeout) Notes: svn path=/head/; revision=554047
* games/tome4: fix build on powerpc64lePiotr Kubaj2020-10-031-1/+1
| | | | | | | Luajit also doesn't work on powerpc64le. Notes: svn path=/head/; revision=551242
* Clean up LLD_UNSAFE from openal-soft portsTobias Kortkamp2020-03-191-1/+1
| | | | | | | | | | | | | After FreeBSD 12.0 EOL we no longer have to worry about LLD 6 and can drop LLD_UNSAFE from openal-soft ports. LLD can link them fine now but some ports needs a little help on i386 (-Wl,-znotext). PR: 226980 Reviewed by: jbeich (earlier version) Differential Revision: https://reviews.freebsd.org/D23030 Notes: svn path=/head/; revision=528750
* games/tome4: add MAKE_JOBS_UNSAFE=yesPiotr Kubaj2019-12-251-0/+1
| | | | | | | | | | | | | | | | | | | | I'm hitting race condition on powerpc64 with 32 threads: ==== Building TEngine (release) ==== Creating ../obj/Release/TEngine noise.c cc -O2 -pipe -fstack-protector-all -fno-strict-aliasing -std=gnu89 -MMD -MP -DGLEW_STATIC -DNDEBUG=1 -D_DEFAULT_VIDEOMODE_FLAGS_='SDL_HWSURFACE|SDL_DOUBLEBUF' -DTENGINE_HOME_PATH='".t-engine"' -DTE4CORE_VERSION=17 -DSELFEXE_BSD -I../src -I../src/luasocket -I../src/fov -I../src/expat -I../src/lxp -I../src/libtcod_import -I../src/physfs -I../src/zlib -I../src/bzip2 -I../src/luajit2/src -I../src/luajit2/dynasm -I/usr/local/include -pthread -o "../obj/Release/TEngine/noise.o" -MF ../obj/Release/TEngine/noise.d -c "../src/noise.c" mkdir -p ../obj/Release/TEngine error: unable to open output file '../obj/Release/TEngine/noise.o': 'No such file or directory' 1 error generated. core_lua.c SFMT.c serial.c PR: 242556 Approved by: lifanov (maintainer timeout) Notes: svn path=/head/; revision=520879
* update games/tome4 to 1.6.5Nikolai Lifanov2019-12-202-4/+4
| | | | Notes: svn path=/head/; revision=520452
* games/tome4: fix build on GCC architecturesPiotr Kubaj2019-12-091-2/+2
| | | | | | | | | | | | | | | Use C++11 compiler: ==== Building te4-wfc (release) ==== lua_wfc.cpp g++ -O2 -pipe -fstack-protector-strong -O2 -pipe -fstack-protector-strong -fno-strict -aliasing -std=gnu89 -MMD -MP -DGLEW_STATIC -DNDEBUG=1 -I../src -I../src/luasocket -I../src/fov -I../src/expat -I../src/lxp -I../src/libtcod_import -I../src/physfs -I../src/zlib -I../src/bzip2 -I../src/lua -I../../../../../../../../include -pthread -O3 -std=c++11 -o "../obj/Release/te4-wfc/lua_wfc.o" -MF ../obj/Release/te4-wfc/lua_wfc.d -c "../src/wfc/lua_wfc.cpp" cc1plus: warning: command line option "-std=gnu89" is valid for C/ObjC but not for C++ cc1plus: error: unrecognized command line option "-std=c++11" PR: 242188 Approved by: lifanov (maintainer timeout) Notes: svn path=/head/; revision=519604
* update games/tome4 to 1.6.4Nikolai Lifanov2019-11-282-4/+4
| | | | Notes: svn path=/head/; revision=518556
* update games/tome4 to 1.6.3Nikolai Lifanov2019-11-262-4/+4
| | | | Notes: svn path=/head/; revision=518478
* update game/tome4 to 1.6.1Nikolai Lifanov2019-11-212-4/+4
| | | | Notes: svn path=/head/; revision=518072
* update games/tome4 to 1.6Nikolai Lifanov2019-10-273-39/+62
| | | | | | | | This is a major update. Any DLCs should auto-update as well. https://te4.org/blogs/darkgod/2019/10/news/tales-majeyal-16-late-delivery-avalon-released Notes: svn path=/head/; revision=515743
* games/tome4: re-enable LLD_UNSAFENikolai Lifanov2019-09-231-0/+2
| | | | | | | | | | Still can't link with LLD on 12.0-RELEASE. No revision bump since it's a build fix. Reported by: Piotr Kubaj Notes: svn path=/head/; revision=512642
* add new port: games/tome4-betaNikolai Lifanov2019-09-211-6/+4
| | | | | | | | | | | This adds a beta of 1.6 patch for games/tome4 It's a major update. Read more in announcements: https://te4.org/blogs/darkgod/2019/04/news/whats-next-tales-majeyal-lot-and-then-some https://te4.org/blogs/darkgod/2019/09/news/tales-majeyal-16-beta1-upon-you Notes: svn path=/head/; revision=512536
* clean up games/tome4 portNikolai Lifanov2019-09-211-8/+11
| | | | | | | | | - reorder sections - remove LLD_UNSAFE, not needed after openal update - prepare for a slave port Notes: svn path=/head/; revision=512531
* Convert to UCL & cleanup pkg-message (categories e-g)Mathieu Arnold2019-08-131-0/+6
| | | | Notes: svn path=/head/; revision=508837
* games/tome4: also add USES=sdl (forgotten before)Piotr Kubaj2019-07-011-1/+1
| | | | | | | | | PR: 238598 Approved by: lifanov (maintainer timeout), tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D20820 Notes: svn path=/head/; revision=505628
* games/tome4: fix build on powerpc64, add USES=glPiotr Kubaj2019-07-011-2/+2
| | | | | | | | | | | There's no luajit for powerpc64. PR: 238598 Approved by: lifanov (maintainer timeout), tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D20820 Notes: svn path=/head/; revision=505627
* update games/tome4 to 1.5.10Nikolai Lifanov2018-05-252-4/+4
| | | | | | | | | | Changelog: https://te4.org/blogs/darkgod/2018/05/news/tales-majeyal-1510-aka-it-patches-out Forbidden Cults 1.0.1 is also out if you purchased it. Notes: svn path=/head/; revision=470856
* update games/tome4 to 1.5.9Nikolai Lifanov2018-05-172-4/+4
| | | | | | | | | | | | Changes: https://te4.org/blogs/darkgod/2018/05/news/tales-majeyal-159-aka-last-patch-us-out This update is compatible with Forbidden Cults DLC release: https://te4.org/blogs/darkgod/2018/05/news/tales-majeyal-forbidden-cults-now-released As with other DLCs, place the file in $HOME/.t-engine/4.0/addons if you bought it. Notes: svn path=/head/; revision=470188
* update games/tome4 to 1.5.8Nikolai Lifanov2018-04-302-4/+4
| | | | | | | Changes: https://te4.org/blogs/darkgod/2018/04/news/tales-majeyal-158-aka-forbidden-patch-out Notes: svn path=/head/; revision=468709
* update games/tome4 to 1.5.7Nikolai Lifanov2018-04-233-5/+5
| | | | | | | | https://te4.org/blogs/darkgod/2018/04/news/tales-majeyal-156-aka-forbidden-sect-out https://te4.org/blogs/darkgod/2018/04/news/tales-majeyal-157-aka-forbidden-bugs-out Notes: svn path=/head/; revision=468137
* Set LLD_UNSAFE=yes that the port will continue to link with ld.bfdKirill Ponomarev2018-01-081-0/+1
| | | | | | | | | | | if /usr/bin/ld is lld, until the issue can be addressed. PR: 214864 Approved by: portmgr (LLD_UNSAFE blanket) Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=458408
* Cleanup LIB_DEPENDS on libpngAntoine Brodin2017-12-011-1/+1
| | | | Notes: svn path=/head/; revision=455251
* follow permanent redirect of http -> httpsNikolai Lifanov2017-07-241-1/+1
| | | | | | | Reported by: repology.org Notes: svn path=/head/; revision=446543
* games/tome4: get rid of http mirror as it's a redirect nowNikolai Lifanov2017-07-031-1/+0
| | | | Notes: svn path=/head/; revision=444968
* update games/tome4 to 1.5.5Nikolai Lifanov2017-05-242-5/+4
| | | | | | | | | | This contains two back-to-back bugfix releases: https://te4.org/blogs/darkgod/2017/05/news/tales-majeyal-154-match-out https://te4.org/blogs/darkgod/2017/05/news/tales-majeyal-155-aka-whoops-out Notes: svn path=/head/; revision=441599
* 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 games/tome4 to 1.5.3Nikolai Lifanov2017-04-102-4/+4
| | | | | | | | | This is primarily a bugfix release. Changes: https://te4.org/blogs/darkgod/2017/04/tome/tales-majeyal-153-never-give-never-surrender-out Notes: svn path=/head/; revision=438166
* update games/tome4 to 1.5.2Nikolai Lifanov2017-03-212-4/+4
| | | | | | | | | This is mostly a balancing update. Changes: https://te4.org/blogs/darkgod/2017/03/news/tales-majeyal-152-forever-and-more-out Notes: svn path=/head/; revision=436591
* add https:// master site to games/tome4 now that it's availableNikolai Lifanov2017-03-181-1/+2
| | | | Notes: svn path=/head/; revision=436414
* update games/tome4 to 1.5.1Nikolai Lifanov2017-03-172-5/+6
| | | | | | | | | | | | This is primarily a bugfix and balance update. The port now enables a parallel build by being more granular with components that don't build in parallel. http://te4.org/blogs/darkgod/2017/03/news/tales-majeyal-151-forever-and-some-out Notes: svn path=/head/; revision=436316
* update games/tome4 to 1.5.0Nikolai Lifanov2017-03-119-288/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | This is a huge release. Major features: New donator/buyers class: Possessors Imported Stone Wardens class into the base game, with an unlock Fully rewrote Archer class Fully rewrote Rogue class Reworked Chants and Hymns trees Buffed Antimagic Much improved Infinite Dungeon, with new layouts, terrains and challenge levels New visual effects for many, many talents, both old and new New "shimmer" cosmetic feature for donators/buyers to change the look of your gear and finally look dapper! All artifacts now have unique player doll images, to look even more dapper! Complete changelog: http://te4.org/blogs/darkgod/2017/03/news/tales-majeyal-150-unbroken-unforgotten-embers-rage-104-and-ashes-urhrok-1 The port also removes patches that landed upstream and patches that were only to silence compile warnings. If you purchased Embers of Rage or Ashes of Urh'Rok, these are updated too. Notes: svn path=/head/; revision=435947
* update MAINTAINER to my FreeBSD.org emailNikolai Lifanov2016-12-141-1/+1
| | | | | | | | | Reviewed by: matthew Approved by: matthew (maintainer) Differential Revision: https://reviews.freebsd.org/D8782 Notes: svn path=/head/; revision=428544
* Update to 1.4.9Matthew Seaman2016-11-123-6/+14
| | | | | | | | PR: 213771 Submitted by: lifanov@mail.lifanov.com (maintainer) Notes: svn path=/head/; revision=425995
* Fix build from command-line: use-before-defined of ${ARCH}Matthew Seaman2016-11-111-1/+4
| | | | | | | | | | | Curiously, test bulding with poudriere worked fine. PR: 214411 Reported by: FreshPorts sanity checking MFH: 2016Q4 Notes: svn path=/head/; revision=425913
* Use the portable vesion of luajit when building on aarch64Matthew Seaman2016-11-111-2/+5
| | | | | | | | | PR: 214411 Submitted by: lifanov@mail.lifanov.com (maintainer) MFH: 2016Q4 Notes: svn path=/head/; revision=425910
* The 64-bit arm arch is actually spelled 'aarch64', not 'arm64'.Mark Linimon2016-11-081-1/+1
| | | | Notes: svn path=/head/; revision=425758
* Mark as broken on arm64.Mark Linimon2016-11-081-0/+2
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=425694
* games/tome4: update to 1.4.8Ruslan Makhmatkhanov2016-06-182-4/+6
| | | | | | | | | | - add dependency upon libpng PR: 210280 Submitted by: Nikolai Lifanov <lifanov@mail.lifanov.com> (maintainer) Notes: svn path=/head/; revision=417085
* 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