pkgsrc/games
rodent bcc3476b57 Update to 1.5.1, the latest stable. Remove patch that was applied upstream.
Now depends on qt5-qt{tools,base}. From changes.txt:

Solarus 1.5.1 (2016-11-29)
__________________________

Engine changes
--------------

* Add Spanish translation of the launcher GUI (thanks Diarandor!).
* Fix registering quest to the launcher at quest install time (#948).
* Fix crash when a carried bomb explodes (#953).
* Fix crash when a scrolling teletransporter is incorrectly placed (#977).
* Fix crash when an entity has a wrong savegame variable type (#1008).
* Fix memory leak when creating lots of surfaces (#962).
* Fix cleanup of the quest files at exit.
* Fix error in sol.main.load_settings() when the file does not exist.
* Fix ground ignored after hero:unfreeze() or back to solid ground (#827).
* Fix entity:get_name() returning nil after the entity is removed (#954).
* Improve error messages of surface creations and conversions.
* Chests: set an initial value "entities/chest" to the sprite field.


Solarus launcher GUI changes
----------------------------

* Start the selected quest by pressing Return or double-clicking (#949).

Sample quest changes
--------------------

* The sample quest is now in a separate repository (#996).

__________________________

Solarus 1.5.0 (2016-07-27)
__________________________

Engine changes
--------------

* Add a launcher GUI to ease chosing a quest and setting options (#693).
* Rename the solarus_run executable to solarus-run.
* Add version number and symbolic links when building the library.
* Add a -lua-console option to run Lua code from the standard input.
* Remove the -win-console option, the preferred way is now to use a GUI.
* Add a -turbo option to run at full speed.
* Add a -lag option to simulate slower systems for debugging.
* Print when the main loop starts and stops.
* Print the Lua version at startup (#692).
* Outputs are now prefixed by [Solarus] and the current simulated time.
* Musics: Add support of custom OGG looping (#643).
* Maps: allow more than 3 layers (#445).
* Improve the performance of loading big maps (#854).
* Improve the performance of custom entity collisions.
* Improve the performance of collisions by using a quadtree.
* Entities far from the camera are no longer suspended.
* The hero no longer automatically jumps when arriving on water (#530).
* Destinations can now set to update or not the starting location (#819).
* Teletransporters on the side of the map now work on all layers (#850).
* Streams can now have a speed of zero (#496).
* Fix crash when main.lua has a syntax error.
* Fix crash with missing directions in sprites controlled by the engine (#864).
* Fix sprite:on_animation_finished() and others not working sometimes (#799).
* Fix error in sprite:set_animation() when the direction is missing (#937).
* Fix straight movement precision.
* Fix freeze when loading a map with tiles outside the limits (#875).
* Fix crash when trying to use a non-saved item (#889).
* Fix sword tapping sound still played when the game is suspended (#797).
* Fix hero:set_invincible() not working without duration (#805).
* Fix lifted item walking animation only accepting 3 frames (#645).
* Fix enemy:set_attack_consequence_sprite() with thrown items (#834).
* Fix custom_entity:set_can_traverse() for doors (#716).
* Fix custom_entity:set_can_traverse_ground() for some grounds (#794).
* Fix custom entity collisions missed for entities that do not move (#671, #883).
* Fix custom_entity:get_modified_ground() returning nothing.
* Fix custom_entity:on_ground_below_changed() not called (#738).
* Fix missing notifications in custom_entity:set_origin() (#880).
* Fix creating an entity with the same name as another one just removed (#795).
* Fix parallax scrolling for dynamic tiles (#816).
* Fix crash when a diagonal tile is not square (#837).
* Fix crash when the teletransporter after stairs is missing.
* Fix non-blocking stream turns after going south (#648).
* Fix text_surface:set_rendering_mode() not working (#833).
* Fix possible freeze when changing the position of a path finding entity.
* Fix circle_movement:set_initial_angle() not working (#721).
* Fix straight movement setting speed to zero when reaching obstacles (#633).
* Fix support of joypads with multiple axes.
* Fix sol.input.get_mouse_coordinates() ignoring the zoom factor (#734).

Lua API changes
---------------

Changes that introduce incompatibilities:

* Fix missing collision detections and entity notifications.
* chest:on_empty() is replaced by chest:on_opened(treasure) (#483).
* Enemy ranks no longer exist, set_hurt_style() needs to be called (#449).
* Items with amount now have a default max amount of 1000 (#688).
* New ability "jump_over_water" in game:get/set_ability(), off by default (#530).
* Fix hero state name "freezed", renamed it to "frozen" (#813).
* Fix map:get_entities() not returning the hero (#670).
* Fix map:create_custom_entity() not erroring when width/height are missing.
* map:get_camera_position() is now deprecated, use camera:get_bounding_box().
* map:move_camera() is now deprecated, use a camera movement instead.
* map:draw_sprite() is now deprecated, use map:draw_visual() instead (#661).
* Fix entity:set_enabled(true) delayed while it blocks the hero (#817).
* Fix brandished treasure sprite and shop treasure sprite not animated (#790).
* circle_movement:get/set_initial_angle() now use degrees (#721).
* Add ability to hide mouse cursor (#891).

Changes that do not introduce incompatibilities:

* Add a function sol.main.get_solarus_version() (#767).
* Add a function sol.main.get_quest_format().
* Add a function sol.main.get_type() (#744).
* Add a method game:set_suspended() (#845).
* Add methods map:get_min_layer() and map:get_max_layer() (#445).
* Add a method map:get_entities_by_type() (#796).
* Add a method map:get_entities_in_rectangle() (#142).
* Add a method map:draw_visual() to draw any drawable object (#661).
* Add a method map:get_camera() (the camera is now a map entity).
* Add methods map:set_world() and map:set_floor() (#656).
* map:get_entities() can now be called without parameter to get all entities.
* map:get_entities*() functions now give entities sorted in Z order (#779).
* Add an event entity:on_movement_started().
* Add a method entity:get_max_bounding_box() considering sprite boxes (#754).
* entity:get_center_position() now also returns the layer.
* Add a method entity:get_facing_position().
* Add a method entity:get_facing_entity() (#877).
* Add a method entity:get_ground_position() (#830).
* Add a method entity:get_ground_below() (#830).
* entity:set_optimization_distance() is now only a hint for the engine.
* entity:test_obstacles() now also works without parameters.
* entity:overlaps() now has an optional collision mode parameter (#748).
* Add entity:get_sprite() to all entities, with an optional name value (#669).
* Add a method entity:get_sprites() (#851).
* Add methods entity:bring_sprite_to_front/back() (#809).
* enemy/custom_entity:create_sprite() now take an optional name value.
* hero:save_solid_ground() can now take a function parameter (#667).
* Add a method hero:start_attack() (#821).
* Add methods npc:is/set_traversable() (#712).
* Add methods chest:get/set_treasure() (#664).
* Add an event chest:on_opened() with treasure info parameters (#483).
* Add methods dynamic_tile:get_pattern_id() and get_modified_ground() (#755).
* Add methods destination:get/set_starting_location_mode() (#819).
* Add a method switch:is_walkable() (#729).
* Add a method switch:is_locked().
* Add a method sprite:get_num_frames() (#818).
* Add methods sprite:get_size() and sprite:get_origin() (#823).
* sprite:set_animation() now takes an optional callback parameter (#861).
* Add a method surface:get_opacity() (#722).
* Add methods surface/text_surface/sprite:get/set_blending_mode (#930).

Data files format changes
-------------------------

* New directory logos to put the logo and icons of your quest, used in the GUI.
* Quest properties: New properties describing the quest, used in the GUI (#838).
* Quest properties: the title_bar property no longer exists, use title instead.
* Maps: New properties min_layer and max_layer (#445).
* Maps: Enemies no longer have a rank property (#449).
* Maps: New property starting_location_mode on destinations (#819).
* Maps: width and height of custom entities are now mandatory as documented.
* Dialogs: Allow empty texts.

Sample quest changes
--------------------

* Lots of new sprites and sounds from Diarandor.

__________________________

Solarus 1.4.5 (2015-11-22)
__________________________

Bug fixes for the 1.4 release.

* Fix file name not shown when there is an error in dialogs file (#718).
* Fix saving special characters in data files (#719).
* Fix sol.main.load_file() returning a string instead of nil on error (#730).
* Fix performance issue when sprites have huge frame delays (#723).
* Fix collisions triggered for removed entities (#710).
* Fix hero disappearing if lifting animation has less than 5 frames (#682).
* Fix collisions with diagonal dynamic tiles larger than 8x8 (#486).
* Fix path finding movement not working with NPCs (#708).
* Fix stuck on non-traversable dynamic tiles covered by traversables (#769).
* Fix collision detection of custom entities that do not move.
* Fix pickables with special movement falling in holes too early.
* Fix blocking streams not working when the hero's speed is greater (#488).

__________________________

Solarus 1.4.4 (2015-08-19)
__________________________

Bug fixes for the 1.4 release.

* Fix pickables falling in holes even when hooked (#740).

__________________________

Solarus 1.4.3 (2015-08-12)
__________________________

Bug fixes for the 1.4 release.

* Fix a compilation error with Mac OS X.
* Fix crash at exit when a surface has a movement with callback (#699).
* Fix crash when removing a custom entity (#690).
* Fix crash when a sprite file is missing or has no animation (#700).
* Fix crash when trying to remove a sprite already removed (#705).
* Fix crash when a custom entity collision or traversable test errors.
* Fix crash when changing hero sprites sometimes.
* Fix crash when sound buffers are full.
* Fix crash in map:get_ground() with out of bounds coordinates.
* Fix Lua error message saying "number expected" instead of "string expected".
* Fix game:set_command_keyboard/joypad_binding refusing parameters.
* Fix map scrolling not working if quest size is not a multiple of 5 (#701).
* Fix camera:move() ignoring separators.
* Fix entities already destroyed when map:on_finished() is called (#691).
* Fix entity:bring_to_front()/back() ignoring the order of obstacles.
* Fix hero stuck on blocks.
* Fix hero going backwards on ice sometimes.
* Fix custom_entity:set_can_traverse_ground() giving opposite result (#668).
* Fix enemy:immobilize() having no effect when already immobilized.
* Fix dying animation of flying and swimming enemies.
* Fix the position of the shadow of pickables when they move.
* Fix pickables not reacting to their ground (#655).
2017-01-11 23:42:56 +00:00
..
0verkill Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
4stAttack Add python-3.6 to incompatible versions. 2017-01-01 14:43:22 +00:00
2048-cli Import 2048-cli-0.9.1 as games/2048-cli 2016-09-18 16:57:51 +00:00
abuse Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
accelerator3d Add python-3.6 to incompatible versions. 2017-01-01 14:43:22 +00:00
adom Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
afternoonstalker Import afternoonstalker-1.1.5 as games/afternoonstalker 2016-07-28 20:46:24 +00:00
agm Import agm-1.3.1 as games/agm 2016-07-27 20:37:27 +00:00
alephone Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
amaze Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
amor Revbump after boost update 2017-01-01 16:05:55 +00:00
an Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
angband-tty Use the curses framework. 2017-01-03 21:38:29 +00:00
angband-x11 Use the curses framework. 2017-01-03 21:38:29 +00:00
anise Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
aop Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
armagetronad Pointers are not ordered relative to 0. Check the error of fopen 2016-12-15 23:52:43 +00:00
armagetronad-server Pointers are not ordered relative to 0. Check the error of fopen 2016-12-15 23:52:43 +00:00
arx-libertatis arx-libertatis: apply upstream commit which fixes build on OS X 2016-10-30 10:25:30 +00:00
asc Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
asciiquarium Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
atomix Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
atque Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
barrage Import barrage-1.0.4 as games/barrage 2016-07-24 22:59:11 +00:00
bastet Revbump after boost update 2017-01-01 16:05:55 +00:00
batrachians Use better HOMEPAGE 2016-07-28 23:41:36 +00:00
battalion Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
battleball Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
billardgl Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
blindmine Add python-3.6 to incompatible versions. 2017-01-01 14:43:22 +00:00
blinken Revbump after boost update 2017-01-01 16:05:55 +00:00
blokus Recursive revbump following MesaLib update, categories g through n. 2015-04-25 14:22:51 +00:00
bluemoon Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
bomber Revbump after boost update 2017-01-01 16:05:55 +00:00
bomberclone Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
bos Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
boson Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
bovo Revbump after boost update 2017-01-01 16:05:55 +00:00
bridge-hands Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
burgerspace Use better HOMEPAGE 2016-07-28 23:41:36 +00:00
bzflag Revbump after boost update 2017-01-01 16:05:55 +00:00
cbzone Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
ccgo Update ccgo to 0.3.6.5. Primarily fixes compatibility issues with newer 2016-12-17 23:22:30 +00:00
cgoban Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
cgoban-java Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
chest Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
chromium-bsu Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
circuslinux Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
civctp-demo Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
cmatrix Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
colchess Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
colchess-book-colchess Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
colchess-book-large Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
corewars Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
cosmosmash Use better HOMEPAGE 2016-07-28 23:41:36 +00:00
crack-attack Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
crack-attack-sounds Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
craft Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
crafty Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
crafty-book-medium Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
crafty-book-small Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
crafty-doc Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
crimsonfields Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
criticalmass Revbump after boost update 2017-01-01 16:05:55 +00:00
crossfire-client Revbump after boost update 2017-01-01 16:05:55 +00:00
crossfire-client-gtk Revbump after boost update 2017-01-01 16:05:55 +00:00
crossfire-client-gtk2 Revbump after boost update 2017-01-01 16:05:55 +00:00
crossfire-server Revbump after boost update 2017-01-01 16:05:55 +00:00
d2x Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
dd2 Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
defendguin Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
digger Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
dipmap Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
doom1 Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
dopewars Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
duckmaze Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
dungeon Bump all packages that depend on curses.bui* or terminfo.bui* since they 2015-08-18 07:31:00 +00:00
eboard Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
einstein-puzzle Fix rpath when using native X. Bump revision. 2016-09-29 12:09:48 +00:00
enigma Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
et Sort. 2015-12-29 06:12:53 +00:00
eus-demo Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
exchess Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
exchess-book-medium Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
exchess-book-small Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
exult uses flex 2016-12-03 22:30:00 +00:00
exult-audio Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
falcons-eye Add missing include. 2016-08-27 20:59:47 +00:00
fillets-ng Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
fillets-ng-data Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
finalbattle Make this work. Add a distfile jumbo patch doing the following: 2016-12-11 01:10:26 +00:00
fire Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
fkiss Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
flare-engine Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
flare-game Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
flightgear Revbump after boost update 2017-01-01 16:05:55 +00:00
flightgear-data Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
fltk-sudoku Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
foobillardplus Needs network libs on SunOS 2015-12-12 21:13:32 +00:00
fortune-strfile
fortunes-calvin Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
fortunes-de Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
fortunes-futurama Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
fortunes-h2g2 Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
freeciv-client Revbump after boost update 2017-01-01 16:05:55 +00:00
freeciv-manual Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
freeciv-server Revbump after boost update 2017-01-01 16:05:55 +00:00
freeciv-share Revbump after boost update 2017-01-01 16:05:55 +00:00
freecol Import freecol-0.11.6 as games/freecol. 2015-12-14 15:32:13 +00:00
freedroid Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
freesci Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
frotz Move to the curses framework. 2017-01-03 21:30:38 +00:00
frozen-bubble Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
fruit Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
galaxa Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
gamazons Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gate88
gbrainy Recursive revbump from textproc/icu 58.1 2016-12-04 05:17:03 +00:00
gcompris Add python-3.6 to incompatible versions. 2017-01-01 14:43:22 +00:00
gemdropx Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
genecys-client Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
genecys-data Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
ggz-client-libs Recursive PKGREVISION bump for gnutls shlib major bump. 2016-09-19 13:04:18 +00:00
glaxium Fix install to not depend on umask. Avoid undefined behavior to make it 2016-12-12 06:21:47 +00:00
glickomania Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
gltron Typo. 2016-02-08 05:25:19 +00:00
gnome-games Add python-3.6 to incompatible versions. 2017-01-01 14:43:22 +00:00
gnome-games-extra-data Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
gnome-mastermind Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gnome-sudoku Update gnome-sudoku to 3.20.4 2016-08-10 09:26:01 +00:00
gnuchess Updated games/gnuchess to 6.2.3 2016-10-02 02:19:51 +00:00
gnuchess-book Updated games/gnuchess-book to 1.02 2016-09-12 14:37:47 +00:00
gnuchess-book-medium Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
gnuchess4
gnugo
gogui Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
golddig Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
granatier Revbump after boost update 2017-01-01 16:05:55 +00:00
greed Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
grhino Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gtetrinet Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gtkballs Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gtklevel9 Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gtkmagnetic Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gturing Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
heretic2-demo Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
hex-a-hop Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
hitori Update hitori to 3.22.0 2016-11-26 10:26:54 +00:00
holtz Revbump after boost update 2017-01-01 16:05:55 +00:00
hugo Use the curses framework. 2017-01-03 21:38:29 +00:00
icbm3d Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
icebreaker Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
imaze Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
InterLOGIC Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
ioquake3 Switch to openal-soft 2016-07-16 00:10:33 +00:00
ioquake3-pk3
ioquake3-raspberrypi Recursive revbump following MesaLib update, categories g through n. 2015-04-25 14:22:51 +00:00
ivan Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
jetpack Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
jin Fix INSTALLATION_DIRS. 2015-11-08 00:10:34 +00:00
jools Add python-3.6 to incompatible versions. 2017-01-01 14:43:22 +00:00
kajaani-kombat Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
kajongg Revbump after boost update 2017-01-01 16:05:55 +00:00
kanagram Revbump after boost update 2017-01-01 16:05:55 +00:00
kanatest Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
kapman Revbump after boost update 2017-01-01 16:05:55 +00:00
kapooka Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
katomic Revbump after boost update 2017-01-01 16:05:55 +00:00
kblackbox Revbump after boost update 2017-01-01 16:05:55 +00:00
kblocks Revbump after boost update 2017-01-01 16:05:55 +00:00
kbounce Revbump after boost update 2017-01-01 16:05:55 +00:00
kbreakout Revbump after boost update 2017-01-01 16:05:55 +00:00
kdegames3 Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
kdetoys3 Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
kdiamond Revbump after boost update 2017-01-01 16:05:55 +00:00
ketm Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
kfourinline Revbump after boost update 2017-01-01 16:05:55 +00:00
kgoldrunner Revbump after boost update 2017-01-01 16:05:55 +00:00
khangman Revbump after boost update 2017-01-01 16:05:55 +00:00
kigo Revbump after boost update 2017-01-01 16:05:55 +00:00
killbots Revbump after boost update 2017-01-01 16:05:55 +00:00
kiriki Revbump after boost update 2017-01-01 16:05:55 +00:00
kjumpingcube Revbump after boost update 2017-01-01 16:05:55 +00:00
klavaro Revbump after boost update 2017-01-01 16:05:55 +00:00
klickety Revbump after boost update 2017-01-01 16:05:55 +00:00
klines Revbump after boost update 2017-01-01 16:05:55 +00:00
kmahjongg Revbump after boost update 2017-01-01 16:05:55 +00:00
kmines Revbump after boost update 2017-01-01 16:05:55 +00:00
knavalbattle Revbump after boost update 2017-01-01 16:05:55 +00:00
knetwalk Revbump after boost update 2017-01-01 16:05:55 +00:00
knightcap Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
knightcap-brain Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
knights Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
KoboDeluxe Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
kolf Revbump after boost update 2017-01-01 16:05:55 +00:00
kollision Revbump after boost update 2017-01-01 16:05:55 +00:00
konquest Revbump after boost update 2017-01-01 16:05:55 +00:00
koth Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
kpat Revbump after boost update 2017-01-01 16:05:55 +00:00
kreversi Revbump after boost update 2017-01-01 16:05:55 +00:00
kshisen Revbump after boost update 2017-01-01 16:05:55 +00:00
ksirk Revbump after boost update 2017-01-01 16:05:55 +00:00
ksnakeduel Revbump after boost update 2017-01-01 16:05:55 +00:00
kspaceduel Revbump after boost update 2017-01-01 16:05:55 +00:00
ksquares Revbump after boost update 2017-01-01 16:05:55 +00:00
ksudoku Revbump after boost update 2017-01-01 16:05:55 +00:00
ktuberling Revbump after boost update 2017-01-01 16:05:55 +00:00
kubrick Revbump after boost update 2017-01-01 16:05:55 +00:00
kye Add python-3.6 to incompatible versions. 2017-01-01 14:43:22 +00:00
lbreakout Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
lbreakout2 Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
level9 Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
lgeneral Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
lgeneral-data Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
lgogdownloader Revbump after boost update 2017-01-01 16:05:55 +00:00
libggz Fix gnutls fallout. Bump revision. 2016-10-01 13:01:11 +00:00
libkdegames Revbump after boost update 2017-01-01 16:05:55 +00:00
libkmahjongg Revbump after boost update 2017-01-01 16:05:55 +00:00
lincity Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
lincity-ng Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
liquidwar Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
lmarbles Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
lnl Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
LostPixels Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
lpairs Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
lskat Revbump after boost update 2017-01-01 16:05:55 +00:00
ltris Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
maelstrom-sdl Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
maelstrom-x11 Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
majesty-demo Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
marathon-evil Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
marathon-trilogy Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
minami Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
mirrormagic Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
mirrormagic-sdl Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
monsterz Add python-3.6 to incompatible versions. 2017-01-01 14:43:22 +00:00
moon-buggy Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
moria Use the curses framework. 2017-01-03 21:50:53 +00:00
MyGoGrinder Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
nagi Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
nethack
nethack-lib Use OPSYSVARS. 2016-02-25 13:19:47 +00:00
nethack-qt Recursive revbump following MesaLib update, categories g through n. 2015-04-25 14:22:51 +00:00
nethack-tty
nethack-x11
netmaj Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
netmaze Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
netris Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
neverball Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
newvox Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
nighthawk Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
ninvaders Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
omega Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
onscripter Update onscripter to 20150820. 2016-02-14 14:49:41 +00:00
openmortal Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
openttd The latest ICU update broke OpenTTD so update openttd to 1.6.1 to fix that. 2016-12-18 21:01:41 +00:00
openttd-data Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
orbital_eunuchs_sniper Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
pag Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
palapeli Revbump after boost update 2017-01-01 16:05:55 +00:00
picmi Revbump after boost update 2017-01-01 16:05:55 +00:00
pingus Revbump after boost update 2017-01-01 16:05:55 +00:00
pioneers Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
plib plib: Make it build on x86_64 Darwin. 2016-04-17 16:39:22 +00:00
pmars Also specify the directory for ld itself to check for libX11. 2016-06-19 23:02:06 +00:00
polyglot Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
powder Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
powermanga Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
powwow Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
prboom Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
prboom-plus Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
pushover Updated pushover to 0.0.5. 2016-07-05 17:33:00 +00:00
puzzles Updated puzzles to 20160429. 2016-10-05 13:09:38 +00:00
py-easyAI Add python-3.6 to incompatible versions. 2017-01-01 14:43:22 +00:00
py-ranking Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-renpy Add python-3.6 to incompatible versions. 2017-01-01 14:43:22 +00:00
py-trueskill Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
pysolfc Add python-3.6 to incompatible versions. 2017-01-01 14:43:22 +00:00
pytraffic Add python-3.6 to incompatible versions. 2017-01-01 14:43:22 +00:00
qnetwalk Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
qonk Fix message display color. PKGREVISION -> 11 2016-12-31 10:01:11 +00:00
qqwing Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
qstat Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
quadrupleback Fix HOMEPAGE. 2016-07-28 22:48:52 +00:00
quake Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
quake2forge Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
quake6 Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
quakedata Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
quakeforge Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
quakespasm Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
quarry Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
REminiscence Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
rftg Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
robotfindskitten Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
rocksndiamonds Remove broken OPSYS tests. 2016-02-25 13:15:15 +00:00
rocksndiamonds-levels Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
rollemup
rtcw Now that this is build on amd64, hard-code former ${MACHINE_ARCH}. 2015-01-07 00:15:22 +00:00
ruby-squib Updated ruby22-squib to 0.13.1. 2017-01-07 22:36:00 +00:00
sarien Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
scid Fix dependencies to unbreak parallel build. 2015-12-25 20:06:05 +00:00
scummvm Revision 1: 2016-07-21 13:48:49 +00:00
scummvm-bass Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
scummvm-fotaq Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
scummvm-tools Revbump after boost update 2017-01-01 16:05:55 +00:00
sex Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
simgear Revbump after boost update 2017-01-01 16:05:55 +00:00
singularity Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
sirius Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
six Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
sjeng Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
sl Use the curses framework. 2017-01-03 21:50:53 +00:00
solarus Update to 1.5.1, the latest stable. Remove patch that was applied upstream. 2017-01-11 23:42:56 +00:00
spaceracer Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
spellcast Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
spider Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
stegavorto Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
stratagus Use OPSYSVARS. 2016-02-25 13:19:47 +00:00
sudoku-cli Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
supertux Revbump after boost update 2017-01-01 16:05:55 +00:00
supertuxkart Revbump after boost update 2017-01-01 16:05:55 +00:00
svb Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
tads fix quoting fail 2015-11-08 00:16:29 +00:00
tanked Remove manual OPSYSVARS additions which are now part of the default set. 2016-02-25 08:27:02 +00:00
teeworlds Add python-3.6 to incompatible versions. 2017-01-01 14:43:22 +00:00
teg Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
tetrinetx Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
thew Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
tileworld Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
toppler needs zlib 2016-12-03 22:45:50 +00:00
tscp update master site 2015-03-14 17:53:55 +00:00
tuxmath Recursive revbump following MesaLib update, categories g through n. 2015-04-25 14:22:51 +00:00
tuxracer Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
tyrquake Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
ufoai Revbump after boost update 2017-01-01 16:05:55 +00:00
uqm Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
urban Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
velena Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
violetland Revbump after boost update 2017-01-01 16:05:55 +00:00
vms-empire Update games/vms-empire to 1.14. 2016-01-11 19:37:43 +00:00
wargames Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
warmux Revbump after boost update 2017-01-01 16:05:55 +00:00
warzone2100 Switch to openal-soft 2016-07-16 00:00:25 +00:00
wesnoth Revbump after boost update 2017-01-01 16:05:55 +00:00
wordwarvi Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
wormz Not MAKE_JOBS_SAFE. 2016-05-07 09:57:16 +00:00
wtf Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xarchon Use OPSYSVARS. 2016-02-25 13:19:47 +00:00
xbat add backup master site since official one is dead 2015-09-20 19:18:15 +00:00
xbill
xblast Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xblockout Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xboard Fix distinfo entry for patch-gettext.h 2016-09-26 02:35:18 +00:00
xboing Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xbomb Use PKGMANDIR. Add patch comments. 2016-03-30 10:00:07 +00:00
xbomber Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xbreaky Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xconq Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xcowsay Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
xdemineur Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xdoom Use OPSYSVARS. 2016-02-25 13:19:47 +00:00
xemeraldia Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xevil Ensure intptr_t is defined in various places. 2016-05-07 09:57:53 +00:00
xfreecell prevent timeout. default to cdn. 2017-01-08 14:01:41 +00:00
xfrisk Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xgalaga
xgospel Switch from x11/Xaw3d to newer x11/libXaw3d. 2015-10-14 20:17:24 +00:00
xjewel Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xjig Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xjump Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xkobo Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xmahjongg Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xmris Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xnibbles Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xpat2 Fix scorefile handling, noted on tech-pkg. While here, drop libXp. 2016-02-20 16:58:56 +00:00
xpilot Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xpipeman Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xpuyopuyo Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xracer Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
xrick Recursive revbump following MesaLib update, categories g through n. 2015-04-25 14:22:51 +00:00
xroach
xroads Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xsc Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xscavenger Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xscorch Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
xscrabble Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xskat Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xsokoban
xsoldier Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xtris Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xtux Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xu4 Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xvier Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xworm Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xye Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
xzip Add SHA512 digests for distfiles for games category 2015-11-03 20:56:42 +00:00
zombies Use PKGMANDIR. Add patch comments. 2016-03-30 08:40:53 +00:00
zoom Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
ztrack Do not alter LIBS in in patch-Makefile (so SUBST_* correctly applies) 2016-07-28 19:31:28 +00:00
Makefile + ruby-squib 2016-11-01 21:59:23 +00:00