summaryrefslogtreecommitdiff
path: root/games
AgeCommit message (Collapse)AuthorFilesLines
2016-12-31Fix message display color. PKGREVISION -> 11dholland3-3/+32
2016-12-23Add missing dependency on glu.joerg1-1/+2
2016-12-22Improve C++ portability.joerg2-1/+27
2016-12-18The latest ICU update broke OpenTTD so update openttd to 1.6.1 to fix that.tnn3-9/+11
Changes: build fixes, NewGRF tweaks and GUI tweaks.
2016-12-17Update ccgo to 0.3.6.5. Primarily fixes compatibility issues with newerjoerg17-90/+201
libsigc++.
2016-12-15Don't expect pointers to be ordered relative to 0.joerg2-1/+15
2016-12-15Pointers are not ordered relative to 0. Check the error of fopenjoerg6-4/+39
correctly. Share patches when sharing distinfo. Bump revision.
2016-12-13Install the README as qonk.txt so binary package users have a chance ofdholland2-3/+9
being able to figure out how to play. PKGREVISION -> 10.
2016-12-12Fix install to not depend on umask. Avoid undefined behavior to make itdholland4-7/+47
run. PKGREVISION -> 11.
2016-12-12Clarify description.dholland1-0/+2
2016-12-12sortdholland1-2/+2
2016-12-11Make this work. Add a distfile jumbo patch doing the following:dholland6-406/+45
- use standard headers - don't use perror, don't use sprintf - fix time handling issues - compile in paths so the data can be installed (from patch-ab) - fix name conflict with libc - avoid undefined behavior - avoid implicit int for clang - declare own functions, sprinkle const and static, and fix signedness to get a clean build (except for one remaining issue where it's not clear what to do) - remove unused elements detected by gcc - fix some problems detected by gcc - fix a startup crash - modernize the makefile Also, don't install the raw image bitmap data and the scripts to digest it; install only the digested form, as that's all that's used at runtime.
2016-12-10Improve description.dholland1-1/+2
2016-12-10Remove use of ancient and highly insecure curl-7.14.0; use pkgsrc curl.dholland8-10/+119
Also disable online update by default. (It can be re-enabled in the config.) PKGREVISION -> 8.
2016-12-10NOT_PAX_ASLR_SAFE and NOT_PAX_MPROTECT_SAFE. PKGREVISION -> 6.dholland1-2/+5
2016-12-04Recursive revbump from textproc/icu 58.1ryoon5-10/+10
2016-12-03needs zlibwiedi1-1/+2
2016-12-03uses flexwiedi1-2/+2
2016-12-03Updated ruby-squib to 0.12.0.wiz3-20/+135
Features: save_pdf now supports crop marks! These are lines drawn in the margins of a PDF file to help you cut. These can be enabled by setting crop_marks: true in your save_pdf call. Can be further customized with crop_margin_bottom, crop_margin_left, crop_margin_right, crop_margin_top, crop_marks, crop_stroke_color, crop_stroke_dash, and crop_stroke_width (#123) Squib.configure allows you to set options programmatically, overriding your config.yml. This is useful for Rakefiles, and will be documented in my upcoming tutorial on workflows. Squib.enable_build_globally and Squib.disable_build_globally are new convenience methods for working with the SQUIB_BUILD environment variable. Handy for Rakefiles and Guard sessions for turning certain builds on an off. Also will be documented in upcoming workflow tutorial. The import methods csv and xlsx now return Squib::DataFrame, which behaves exactly as before - but has more cool features like being able to do data.name instead of data['name']. Also: check out data.to_pretty_text. Check out the docs. (#156) Bugs: showcase works as expected when using backend: svg (#179) Graphics will get flushed upon exit, so working under Guard with backend: svg is more reliable (#180) Docs: Wrote out documentation for Squib and GameIcons Wrote out documentation for Hello World! Dissected Un-submoduled our samples and simply embedded them into the docs (e.g. Squib Thinks in Arrays). Lots of cleanup there Wrote up Squib in Action, which documents other Squib projects. Ask for yours to be put there!! Chores: Bumped dependency roo to 2.5.1. Nothing that affects Squib users (probably). Bumped graphics and text dependencies (cairo to 1.15.3, pango+rsvg et al. to 3.1.0). No new features for us, but some stability improvements.
2016-11-26Update hitori to 3.22.0prlw13-9/+9
3.22.0: * Various AppData fixes * Translations: ** fa (Arash Mousavi) ** fur (Fabio Tomat) ** oc (Cédric Valmary) ** pl (Piotr Drg) ** pt (Sérgio Cardeira) ** sv (Anders Jonsson)
2016-11-20Updated lgogdownloader to 3.0.wiz2-12/+9
LGOGDownloader 3.0 - Ported code to use tinyxml2 instead of tinyxml (patch by: Ferdinand Thiessen) - Added support for new language: Bulgarian - Added support for parallel downloads * Use --threads to set how many parallel downloads you want to run * If libcurl uses openssl then libcrypto is required to compile the downloader - Added support for getting game details in parallel - Added support for DLC language packs - Show average download rate after download has finished - Fixed issue with some GOG XML data files * Some GOG XML data files contain additional nodes/elements that were not handled properly and caused issues - Removed obsolete getpass() calls, use termios to control terminal ECHO - Added option to set CA certificate path * --cacert option can be used to set path to CA certificate bundle in PEM format * CURL_CA_BUNDLE environment variable is used if it is set and CA certificate path is not set with --cacert option - Moved cover list to git repository * New url: https://raw.githubusercontent.com/Sude-/lgogdownloader-lists/master/covers.xml - Use list of games that are known to have DLC and ignore DLC count that GOG provides for those games * Fixes issues caused by GOG providing incorrect dlc count information for games with DLC * If local list ($XDG_CONFIG_HOME/lgogdownloader/game_has_dlc.txt) exists then remote list isn't used * --dlc-list option is used to set url for the list (default: https://raw.githubusercontent.com/Sude-/lgogdownloader-lists/master/game_has_dlc.txt) - Made downloader work better when invoked by Gentoo's package manager (patches by: James Le Cuirot) * Exit with non-zero status when --list or --list-details fails * Exit with non-zero status when at least one --download-file fails * Add --respect-umask option to prevent adjusting permissions
2016-11-19Stop patching gemspec file and use OVERRIDE_GEMSPEC with updatedtaca3-18/+3
update-gemspec.rb script.
2016-11-01+ ruby-squibwiz1-1/+2
2016-11-01Import ruby-squib-0.11.0 as games/ruby-squib.wiz6-0/+433
Squib is a Ruby DSL for prototyping card and board games. Write a little bit of Ruby, define your deck's stats, then compile your game into a series of images ready for print-and-play or even print-on-demand. Squib is very data-driven and built on the principle of Don't Repeat Yourself. Think of it like nanDeck done "the Ruby way".
2016-10-30arx-libertatis: apply upstream commit which fixes build on OS Xmaya2-1/+20
Use correct parameter type for clock_gettime Also from Jonathan Schleifer in PR pkg/51556
2016-10-16Use midiplay instead of playmidi on NetBSD. Bump revision.bsiegert3-3/+20
PR pkg/28924, from 2005.
2016-10-15Generate dummy scorefile with REQD_FILES_PERMSkamil1-1/+3
No PKGREVISION update as it's a new package.
2016-10-15Update bastet from 0.41 to 0.43.1kamil6-89/+37
pkgsrc changes: - Switch to GitHub framework - Update HOMEPAGE - Set LICENSE (GPLv3) - Upstream switched from C to C++ - Require boost-libs and boost-headers - SETGIDGAME -> USE_GAMESGROUP - Need to fix VARBASE differently (now with SUBST framework) - Drop unneded patches - Enforce any curses library (with a patch) upstream changelog ================== ==0.43.1== Small fixes: appdata and desktop file, moved to an unordered_set header that should work on most compilers. Should still port to autotools or something similar sometimes in the future. ==0.43== Complete code rewrite. As I go on trying to grok C++, algorithms and data structures, and as I started to understand more of Peter's code, I found it useful to rewrite all this stuff from scratch. This should solve some issues and probably introduce new ones. Therefore this version needs a lot of playtesting and bug-hunting. The algorithm has been split into two, one with the next block preview (normal) and one without (harder). New and more sophisticated techniques are now used to write the block-choosing algorithms, which should not be fooled as easily as before.
2016-10-07Revbump post boost updateadam66-127/+132
2016-10-05Updated puzzles to 20160429.wiz4-27/+32
Adds three games: flood palisade tracks
2016-10-02Updated games/gnuchess to 6.2.3mef2-7/+7
------------------------------- Version 6.2.3 (September 2016) - Quit after compiling book with option -a (--addbook). - Updated translations.
2016-10-01Fix gnutls fallout. Bump revision.joerg3-11/+39
2016-09-29Fix rpath when using native X. Bump revision.joerg3-6/+19
2016-09-26Fix distinfo entry for patch-gettext.hkamil1-2/+2
2016-09-21Fix build on NetBSD-7.99.36kamil2-1/+66
Address conflicts of local gettext.h with /usr/include/libintl.h. Undefine system symbols and allow package's specific ones. GUI presents correctly texts in a local language.
2016-09-19Recursive PKGREVISION bump for gnutls shlib major bump.wiz4-8/+8
2016-09-18Add games/2048-clikamil1-1/+2
2016-09-18Import 2048-cli-0.9.1 as games/2048-clikamil4-0/+31
A cli version/engine of the game 2048 for your UNIX terminal.
2016-09-18Uses pkg-config.dholland1-2/+2
2016-09-17link network libs on SunOSwiedi1-1/+3
2016-09-16needs yaccwiedi1-1/+2
2016-09-16Note error with guile 2.0 and therefore leave at 1.8gdt1-1/+3
2016-09-15After guile's and guile20's installation prefixes have changed, it's timewiz1-2/+2
to bump their dependencies (except those that were bumped in the last 24 hours already).
2016-09-14Add package supertux from pkgsrc-wipmaya7-1/+3178
SuperTux is a classic 2D jump'n run sidescroller game in a style similar to the original SuperMario games.
2016-09-12Updated games/gnuchess-book to 1.02mef2-10/+9
----------------------------------- - ChangeLog unknown (pkgsrc changes) - Name conversion from book.dat to book.bin
2016-09-11Appease xgettext(1) - stop passing unsupported optionskamil3-2/+17
xgettext(1) 0.16.1 does not accept --package-version and --package-name Reported on NetBSD. Noted by <joerg>
2016-09-02+ arx-libertatis.wiz1-1/+2
2016-09-02Import arx-libertatis-1.1.2 as games/arx-libertatis.wiz11-0/+286
Packaged for wip by Yorick Hardy and Jonathan Schleifer. Arx Libertatis is a cross-platform, open source port of Arx Fatalis, a 2002 first-person role-playing game developed by Arkane Studios. This is the game engine - the data files are not included.
2016-08-27Add missing include.joerg2-1/+14
2016-08-21Not ready for python-3.x due to py-ode dependency.wiz1-1/+3