pkgsrc/games
rodent d422e0a4cf Updated to latest release, 1.2.0. Requires LuaJIT2 and the SDL2 verions of
the SDL packages. From ChangeLog:

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

* Upgrade to SDL 2 (#262). Thanks Vlag.
* Accelerate video operations in GPU if available. Expect huge speedups.
* Add the hq2x, hq3 and hq4x pixel filter algorithms as new video modes.
* Make the window resizable (#338).
* Use LuaJIT if available instead of vanilla Lua for better performance.
* New map entity type: custom entities, fully scripted (#323).
* Conveyor belts are now called streams and can be non-blocking (#288).
* Collision rules of streams (conveyor belts) are now like holes.
* Rewrite the main loop with a constant timestep (#351).
* Show a dialog box in case of fatal error.
* The "wide" video modes do not exist anymore. SDL2 does the job now.
* Fix enemy:on_hurt() that was wrongly called when immobilized.
* Fix life and money exceeding the max when the max changes (#355).
* Make stairs sounds optional (#364).
* Make more checks in sprite files to avoid crashes (#357).
* Fix RandomMovement speed that was not taken into account (#361).
* Set the default speed of StraightMovement to 32 instead of 0 (#343).
* The size of all map entities must be a multiple of 8 (#358).
* Thrown entities (pots, bombs...) can now fall to a lower layer (#349).
* Running into a crystal or a solid switch now activates it (#193).
* The hero can now jump over distant crystal blocks (#42).
* The shield no longer protects while using the sword or carrying (#192).
* Fix collisions detected on disabled entities (#455).
* Fix pixel collisions coordinates when sprites move (#372).
* Fix a slowness when loading maps (#374).
* Fix crash when accessing a map not active anymore (#371).
* Fix crash when changing the movement of the hero (#392).
* Fix crash when calling hero:start_treasure() with wrong parameters (#391).
* Fix crash when calling game:has/get/set_ability() with wrong name (#408).
* Fix a crash when creating two entities with the same name (#370).
* Fix issues with unobtainable treasures.
* Fix the starting location wrongly saved with special destinations (#375).
* Fix map:set_tileset() sometimes moving the hero near the map border (#400).
* Fix enemies stuck on blocks (#360).
* Fix enemies stuck on crystal blocks (#41).
* Fix human NPCs not automatically showing "walking" when moving (#336).
* Fix the hero leaving the grabbing state even while the game is suspended.
* Fix low walls in dynamic tiles behaving like normal walls.
* Fix wrong collisions of right-up and left-down diagonal jumpers.
* Fix jumpers that could be traversed sideways (#481).
* Fix blocks no longer stopping when aligned on the grid since Solarus 0.9.3.
* Fix entities not always shown when they have no optimization distance.
* Call hero:on_removed() and stop hero timers when stopping the game (#421).
* Don't die if the map or destination saved no longer exists (#301).
* Don't die if a map has no destination. Show an error and go to 0,0 instead.
* Don't die if hero:teleport() attempts to go to a non-existing place.
* Don't die if attempting to start a game without map.
* Don't die if attempting to start a non-existing dialog.

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

You can use the script tools/data_files_conversion/1.1_to_1.2/update_quest.lua
to automatically update your data files.
Don't forget to make a backup first.

* Languages: New syntax of strings.dat easier to read and parse (#170).
* Maps: The world property is now optional (#128).
* Maps: Destructibles no longer have subtypes, they are customizable (#270).
* Maps: Rename entity shop_item to shop_treasure.
* Maps: Rename entity conveyor_belt to stream with new features (#288).
* Maps: Teletransporters transition property is now a string (#402).
* Maps: Walls have a new property "stops_projectiles".
* Sounds: Running into a wall now plays a sound other than "explosion" (#297).

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

Changes that introduce incompatibilities:

* Video mode names have changed: no more wide, fullscreen ou windowed names.
* sol.video.switch_mode() no longer changes the fullscreen flag.
* surface:set_transparency_color() no longer exists. Use surface:clear().
* sol.audio.play_music("none") is replaced by sol.audio.play_music(nil).
* on_key_pressed() and on_character_pressed() are now both called (#344).
* Destructible objects no longer show hardcoded dialogs (#270).
* map:create_destructible() has no hardcoded subtypes anymore (#270).
* map:create_teletransporter(): the transition is now a string (#402).
* map:create_shop_item() is replaced by map:create_shop_treasure().
* map:create_conveyor_belt() is replaced by map:create_stream() (#288).
* The state "conveyor belt" no longer exists in hero:get_state() (#288).
* The built-in strength of the sword has changed (#426).
* Bosses are not initially disabled anymore (#448).
* Call enemy:on_hurt() before enemy:on_dying() (#325).
* enemy:on_hurt() no longer takes a life_lost parameter (#426).
* The built-in defense of the tunic has changed (#428).
* enemy:get/set_magic_damage() no longer exists (#428).
* hero:start_hurt() no longer takes a magic parameter (#428).
* hero:start_hurt() now hurts the hero even when enemies cannot.
* Enemies have now a default size of 16x16 and origin of 8,13 (#354).
* The size of enemies must be a multiple of 8 (#358).
* item:on_pickable_movement_changed replaced by pickable:on_movement_changed.
* pickable:get_treasure() now returns the item instead of the item's name.
* Timers: returning true in the callback now repeats the timer (#152).
* sol.timer.start() now always returns the timer, even if its delay is zero.

Changes that do not introduce incompatibilities:

* New Lua type and methods for custom map entities.
* New API of destructible objects, fully customizable now (#270).
* Colors now take an optional alpha value as fourth component.
* New functions sol.video.get/set/reset_window_size().
* New method surface:clear().
* Add loop and callback features to sol.audio.play_music() (#280).
* New function sol.main.get_metatable(), allows to implement shared behaviors.
* The lifetime of a menu can now be another menu.
* New method menu:is_started().
* Attempt to stop a menu already stopped is no longer an error.
* New method map:get_hero() (#362).
* map:get_world() can now return nil because the world is now optional (#128).
* map:create_wall() accepts a new property "stops_projectiles".
* Entity names are now auto-incremented to simplify their creation.
* New method entity:get_game() (#363).
* New methods entity:bring_to_front() and entity:bring_to_back() (#273).
* entity:test_obstacles() now takes an optional layer parameter.
* New methods enemy:get_attack_consequence(), get_attack_consequence_sprite().
* The event entity:on_created() is now called for all types of entities.
* New event enemy:on_hurt_by_sword() to customize the sword strength (#426).
* New event enemy:on_attacking_hero() to customize attacks (#356).
* New event enemy:on_hurting_hero() to customize hurting the hero (#428).
* New event hero:on_hurt() to customize the defense of the equipment (#428).
* hero:start_hurt() now takes an optional entity and sprite (#417).
* New methods hero:is/set_invincible() and hero:is/set_blinking() (#418).
* New methods hero:get/set_animation() to set custom animations (#155).
* New methods hero:get/set_sword_sound_id() to change the sword sound (#155).
* New methods to set custom tunic, sword and shield sprites (#155).
* New event sensor:on_left() (#339).
* New event block:on_moving() (#334).
* New functions to get/set the properties of teletransporters (#403).
* New functions to get/set the properties of blocks.
* New methods to simulate game commands, by mrunderhill (#382).
* New event sensor:on_left() (#339).
* New event block:on_moving() (#334).
* New event teletransporter:on_activated() (#312).
* New event destination:on_activated() (#312).
* movement:on_position_changed() now takes x and y parameters (#342).
* Fix movement:start() raising an error if the optional callback is nil.
* Fix random_movement:get_max_radius() that was not working.
* Check the parameter sign in game:add/remove life/money/magic (#416).
* Check the parameter sign in item:add/remove_amount.
* Fix timer:is_suspended_with_map() that was not working.
* Fix crash when calling timer:set_suspended_with_map() without game started.
* New methods timer:get/set_remaining_time.
* New function sol.main.get_elapsed_time() to get the simulated time (#424).
* New function sol.input.get_key_modifiers() to get the key modifiers state.

Solarus Quest Editor changes
----------------------------

* The editor is now built with Maven (#365).
* Multiple entities can now be resized at the same time (#405).
* Copy-pasting entities now pastes them at the cursor (#404).
* The map view can now be dragged using the middle mouse button (#413).
* Zoom in/out in the map view using the middle mouse wheel (rekcah1986).
* Add buttons to edit or refresh the tileset from the map view (#425).
* The tileset view can now be dragged using the middle mouse button (#427).
* Selecting a tile now highlights its pattern in the tileset view (#290).
* Ctrl/Shift+click even on an entity now starts a selection rectangle (#410).
* Tile patterns can now be moved in the tileset editor (#422).
* The id and name of a new resource and now asked in a single dialog (#321).
* Show the old value in the dialog to change an id/name (#468) (rekcah1986).
* The order of resources in the quest tree can now be changed (#319).
* Increase the stepsize when scrolling the map view.
* Center the dialog of editing an entity (#443).
* Add a scroller to dialogs that are too high (#437) (rekcah1986).
* Show the map or tileset name in the "do you want to save" dialog.
* Show quest name and resource ids in the tree view (thanks rekcah1986).
* Don't place new tiles below other entities if there are some (#461).
* Fix hidden entities getting selected when clicked (#460).
* Fix selecting entities losing their order when changing the layer.
* Fix NullPointerException when canceling the Open Project dialog.
* Fix freeze if tiles don't exist when changing the tileset of a map.
* Fix the tree not refreshing when deleting a resource (#335).
* Fix the tileset editor not always showing the save dialog on closing.
* Fix the num_columns property of sprites wrongly parsed.
* Fix wrong displaying of right-up and left-down diagonal jumpers.
* Switches, crystals and crystal blocks now show their actual sprite (#376).
2014-05-18 20:22:19 +00:00
..
0verkill Fix build on SunOS. Patching by Sebastian Wiedenroth. 2013-10-21 09:50:36 +00:00
4stAttack Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
abuse Remove xextproto/buildlink3.mk in most cases where it occurs with 2012-10-23 10:24:02 +00:00
adom Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
alephone Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
amaze Add USE_TOOLS+=nroff to packages which generate catman pages. 2013-09-12 11:15:12 +00:00
amor Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
an Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
angband-tty ftp service suspended. fetch from master_sites_backup. 2011-03-11 11:47:28 +00:00
angband-x11 set USE_GAMESGROUP 2012-01-14 15:36:10 +00:00
anise Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
aop Works fine with system curses 2013-10-17 09:12:42 +00:00
asc Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
asciiquarium Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
atomix Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
bastet Work with system curses 2013-10-17 09:19:01 +00:00
battalion Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
battleball Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
billardgl Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
blindmine Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
blinken Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
blokus Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
bluemoon Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
bomber Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
bomberclone Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
bos Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
boson recursive bump from ilmbase shlib version change. 2014-04-10 06:21:18 +00:00
bovo Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
bridge-hands Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
bzflag Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
cbzone Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
ccgo Does not use curses 2013-10-17 14:58:18 +00:00
cgoban Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
cgoban-java Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
chest Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
chromium-bsu fix build on SunOS by linking SDL 2014-01-29 17:03:13 +00:00
circuslinux Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
civctp-demo Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
cmatrix Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
colchess Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
colchess-book-colchess Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
colchess-book-large Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
corewars Reset maintainer for resigned developers. 2013-12-23 11:57:02 +00:00
crack-attack Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
crack-attack-sounds Remove "Trailing empty lines." and/or "Trailing white-space." 2013-04-08 11:17:08 +00:00
craft Oops. PATCH_SITES, not PATCHSITES... 2013-01-21 06:56:38 +00:00
crafty Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
crafty-book-medium Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
crafty-book-small Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
crafty-doc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
crimsonfields Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
criticalmass Add missing network libs on SunOS 2014-02-08 17:45:29 +00:00
crossfire-client Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
crossfire-client-gtk Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
crossfire-client-gtk2 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
crossfire-server Bump applications PKGREVISIONs for python users that might be using 2014-05-17 16:10:41 +00:00
d2x Fix inline usage. 2012-11-23 12:33:44 +00:00
dd2 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
defendguin Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
digger Needs zlib. 2014-01-09 14:44:32 +00:00
dipmap Use c89. Pass gcc -Wall. Fix clang build. While here, use snprintf 2012-12-23 18:43:47 +00:00
doom1 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
dopewars Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
duckmaze Bump applications PKGREVISIONs for python users that might be using 2014-05-17 16:10:41 +00:00
dungeon Works fine with system curses 2013-10-17 16:36:07 +00:00
eboard Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
enigma Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
et "Use of DOWNLOADED_DISTFILE is deprecated. Use the shell variable 2013-04-06 12:03:59 +00:00
eus-demo Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
exchess Fix build on SunOS (u_int64_t usage and ambigous math) 2014-02-09 16:50:45 +00:00
exchess-book-medium Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
exchess-book-small Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
exult Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
falcons-eye games/falcons-eye: fix patch corruption 2012-12-15 11:50:48 +00:00
fillets-ng Revbump for Lua multiversion support. 2014-05-03 13:14:36 +00:00
fillets-ng-data Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
finalbattle Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
fire Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
fkiss Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
flare-engine Bump applications PKGREVISIONs for python users that might be using 2014-05-17 16:10:41 +00:00
flare-game Bump applications PKGREVISIONs for python users that might be using 2014-05-17 16:10:41 +00:00
flightgear Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
flightgear-data Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
fltk-sudoku Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
foobillard Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
fortune-strfile Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
fortunes-calvin Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
fortunes-de Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
fortunes-futurama Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
fortunes-h2g2 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
freeciv-client Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
freeciv-manual Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
freeciv-server Copy autotools helper as needed. 2013-08-30 22:34:18 +00:00
freeciv-share Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
freedroid Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
freesci * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
frotz Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
frozen-bubble Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
fruit Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
galaxa Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
gamazons Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gate88 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
gbrainy Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gcompris Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
gemdropx Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
genecys-client Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
genecys-data Prefer in-tree bsdtar 2013-01-11 13:25:40 +00:00
ggz-client-libs Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
glaxium Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
glickomania Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
gltron Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
gnome-games Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
gnome-games-extra-data Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
gnome-mastermind Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gnuchess * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
gnuchess-book Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
gnuchess-book-medium Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
gnuchess4 Fix C99 inline misuse. 2012-12-20 22:02:13 +00:00
gnugo Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
gogui Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
golddig Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
granatier Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
greed Fix patch 2013-10-11 14:33:47 +00:00
grhino Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gtetrinet Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gtkballs Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gtklevel9 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gtkmagnetic Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gturing Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
heretic2-demo "Use of DOWNLOADED_DISTFILE is deprecated. Use the shell variable 2013-04-06 12:03:59 +00:00
hex-a-hop Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
holtz Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
hugo Reset maintainer on his request. 2012-12-12 10:44:06 +00:00
icbm3d Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
icebreaker Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
imaze Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
InterLOGIC Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
ioquake3 Use saner default optimizer flags. 2013-10-28 23:45:59 +00:00
ioquake3-pk3 Fixes: 2013-04-06 03:45:05 +00:00
ivan Fix build on SunOS (lots of ambiguous math) 2014-02-09 17:09:03 +00:00
jetpack Regen. Not sure what happened here... 2013-01-17 15:53:38 +00:00
jools Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
kajaani-kombat Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
kajongg Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
kanagram Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
kanatest Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
kapman Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
kapooka Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
katomic Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
kblackbox Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
kblocks Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
kbounce Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
kbreakout Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
kdegames3 recursive bump from ilmbase shlib version change. 2014-04-10 06:21:18 +00:00
kdetoys3 recursive bump from ilmbase shlib version change. 2014-04-10 06:21:18 +00:00
kdiamond Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
ketm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
kfourinline Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
kgoldrunner Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
khangman Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
kigo Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
killbots Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
kiriki Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
kjumpingcube Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
klavaro Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
klickety Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
klines Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
kmahjongg Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
kmines Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
knavalbattle Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
knetwalk Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
knightcap Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
knightcap-brain Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
knights recursive bump from ilmbase shlib version change. 2014-04-10 06:21:18 +00:00
KoboDeluxe Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
kolf Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
kollision Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
konquest Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
koth Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
kpat Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
kreversi Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
kshisen Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
ksirk Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
ksnakeduel Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
kspaceduel Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
ksquares Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
ksudoku Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
ktuberling Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
kubrick Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
kye Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
lbreakout fix "sqrt(int) is ambiguous" on SunOS 2014-02-09 17:12:33 +00:00
lbreakout2 Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
level9 Update to 5.1: 2013-10-13 10:19:22 +00:00
lgeneral Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
lgeneral-data Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
lgogdownloader Import lgogdownloader-2.12 as games/lgogdownloader. 2014-04-19 08:19:31 +00:00
libggz Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
libkdegames Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
libkmahjongg Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
lincity Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
lincity-ng Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
liquidwar Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
lmarbles Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
lnl Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
LostPixels Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
lpairs Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
lskat Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
ltris Fix inline use. 2013-03-02 18:11:07 +00:00
maelstrom-sdl Solaris needs -lnsl as well as -lsocket. 2013-04-14 02:01:30 +00:00
maelstrom-x11 Remove xextproto/buildlink3.mk in most cases where it occurs with 2012-10-23 10:24:02 +00:00
majesty-demo "Use of DOWNLOADED_DISTFILE is deprecated. Use the shell variable 2013-04-06 12:03:59 +00:00
marathon-evil Import marathon-evil-199704 as games/marathon-evil, packaged for wip 2012-12-12 16:26:51 +00:00
marathon-trilogy Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
minami * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
mirrormagic Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
mirrormagic-sdl Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
monsterz Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
moon-buggy Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
moria Update HOMEPAGE. (The old one still works too, at least for now.) 2012-10-14 03:03:32 +00:00
nagi Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
nethack DESTDIRify nethack. Merge patches and distinfo. Some other improvements. 2011-06-01 11:20:29 +00:00
nethack-lib Remove illegal time_t casts. Should fix build SIGSEGV on 32 bit netbsd. 2012-12-16 20:34:08 +00:00
nethack-qt recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
nethack-tty DESTDIRify nethack. Merge patches and distinfo. Some other improvements. 2011-06-01 11:20:29 +00:00
nethack-x11 DESTDIRify nethack. Merge patches and distinfo. Some other improvements. 2011-06-01 11:20:29 +00:00
netmaj Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
netmaze Clean up some gcc warnings. This probably doesn't accomplish anything 2013-03-25 01:59:03 +00:00
netris Works fine with system curses 2013-10-17 16:11:15 +00:00
neverball Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
newvox Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
nighthawk Fix use of nested functions. Bump revision. 2012-12-20 22:03:01 +00:00
ninvaders Works fine with system curses 2013-10-17 10:08:40 +00:00
omega Works fine with system curses 2013-10-17 16:11:15 +00:00
onscripter Revbump for Lua multiversion support. 2014-05-03 13:14:36 +00:00
openmortal build fix following the freetype2 update 2014-03-23 08:14:23 +00:00
openttd recursive bump from icu shlib major bump. 2014-04-09 07:26:56 +00:00
openttd-data Changes 1.3.2: 2013-08-05 19:24:35 +00:00
orbital_eunuchs_sniper Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
pag Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
palapeli Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
picmi Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
pingus Revbump after updating devel/boost-libs 2013-11-20 20:04:35 +00:00
pioneers Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
plib Reset maintainer for resigned developers. 2013-12-23 11:57:02 +00:00
polyglot Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
powder Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
powermanga Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
powwow Needs termios.h. 2013-08-17 11:14:54 +00:00
prboom Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
pushover Revbump for Lua multiversion support. 2014-05-03 13:14:36 +00:00
puzzles Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
py-ranking Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
py-renpy Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-trueskill Mark packages as not ready for python-3.x where applicable; 2014-01-25 10:29:56 +00:00
pysolfc Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
pytraffic Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
qnetwalk recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
qonk Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
qstat Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
quake Remove xextproto/buildlink3.mk in most cases where it occurs with 2012-10-23 10:24:02 +00:00
quake2forge Remove xextproto/buildlink3.mk in most cases where it occurs with 2012-10-23 10:24:02 +00:00
quake3arena "Use of DOWNLOADED_DISTFILE is deprecated. Use the shell variable 2013-04-06 12:03:59 +00:00
quake3arena-demo "Use of DOWNLOADED_DISTFILE is deprecated. Use the shell variable 2013-04-06 12:03:59 +00:00
quake3server Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
quake3server-excessive Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
quake3server-osp Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
quake3server-ra3 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
quake3server-ut Remove "Trailing empty lines." and/or "Trailing white-space." 2013-04-08 11:17:08 +00:00
quake6 Remove xextproto/buildlink3.mk in most cases where it occurs with 2012-10-23 10:24:02 +00:00
quakedata Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
quakeforge Bump applications PKGREVISIONs for python users that might be using 2014-05-17 16:10:41 +00:00
quakespasm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
quarry Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
REminiscence Needs zlib. 2014-01-09 14:44:32 +00:00
rftg Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
robotfindskitten Works fine with system curses 2013-10-17 17:03:11 +00:00
rocksndiamonds Reset maintainer to "pkgsrc-users@NetBSD.org". 2013-03-02 10:44:33 +00:00
rocksndiamonds-levels Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
rollemup Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
rtcw "Use of DOWNLOADED_DISTFILE is deprecated. Use the shell variable 2013-04-06 12:03:59 +00:00
sarien Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
scid Bump applications PKGREVISIONs for python users that might be using 2014-05-17 16:10:41 +00:00
scummvm Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
scummvm-bass Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
scummvm-fotaq Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
scummvm-tools Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
sex Add USE_TOOLS+=nroff to packages which generate catman pages. 2013-09-12 11:15:12 +00:00
simgear Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
singularity Bump applications PKGREVISIONs for python users that might be using 2014-05-17 16:10:41 +00:00
sirius Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
six recursive bump from ilmbase shlib version change. 2014-04-10 06:21:18 +00:00
sjeng Use more void. 2013-01-11 23:26:36 +00:00
sl Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
solarus Updated to latest release, 1.2.0. Requires LuaJIT2 and the SDL2 verions of 2014-05-18 20:22:19 +00:00
spaceracer string.h is no longer included by png.h 2013-03-02 18:10:42 +00:00
spellcast Add missing prototypes for functions that should really be void. 2012-12-20 22:04:14 +00:00
spider Add some void love. 2012-12-20 22:05:05 +00:00
stegavorto Bump applications PKGREVISIONs for python users that might be using 2014-05-17 16:10:41 +00:00
stratagus Revbump for Lua multiversion support. 2014-05-03 13:14:36 +00:00
sudoku-cli Works fine with system curses 2013-10-17 16:24:11 +00:00
supertuxkart Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
svb Use more void and system headers. 2012-12-25 21:09:52 +00:00
tads Tads uses termcap, not curses. 2013-10-10 18:27:37 +00:00
tanked Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
teg Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
tetrinetx Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
thew Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
tileworld Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
toppler Import toppler-1.1.6 as games/toppler from wip. 2013-01-05 22:17:04 +00:00
tscp Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
tuxmath Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
tuxracer Revbump after updating tcl/tk. 2014-01-11 14:42:00 +00:00
tyrquake Remove xextproto/buildlink3.mk in most cases where it occurs with 2012-10-23 10:24:02 +00:00
ufoai Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
uqm Use ${SH} to run the build shellscript. Otherwise on Solaris it runs 2013-04-14 05:22:34 +00:00
urban Fix a common mistake in many different packages: POSIX says that when using 2013-10-18 11:41:17 +00:00
velena Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
vms-empire Works fine with system curses 2013-10-17 16:24:11 +00:00
wargames Do not set FETCH_USING, should not be set in a package Makefile. 2014-01-27 18:41:11 +00:00
warmux Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
warzone2100 Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
wesnoth Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
wormz Fix main. Bump revision. 2013-01-11 13:26:20 +00:00
wxhugo Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xarchon recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
xbat Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xbill Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xblast Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xblockout Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xboard Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
xboing Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xbomb Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xbomber Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xbreaky Reset maintainer for resigned developers. 2013-12-23 11:57:02 +00:00
xconq Xconq still requires legacy Tcl/Tk structure members, so have its headers 2014-01-25 00:01:21 +00:00
xcowsay Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xdemineur Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xdoom Remove xextproto/buildlink3.mk in most cases where it occurs with 2012-10-23 10:24:02 +00:00
xemeraldia Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xevil C++ is not K&R C, so give main the return type it is supposed to have. 2012-10-26 20:21:33 +00:00
xfreecell Remove xextproto/buildlink3.mk in most cases where it occurs with 2012-10-23 10:24:02 +00:00
xfrisk Fall back to fixed (like elsewhere in the program) if helvetica is 2014-05-11 02:19:04 +00:00
xgalaga Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xgospel Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xjewel Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xjig Remove xextproto/buildlink3.mk in most cases where it occurs with 2012-10-23 10:24:02 +00:00
xjump Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xkobo Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xmahjongg Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xmris Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xnibbles Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xpat2 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xpilot Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xpipeman Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xpuyopuyo Fix inline use. 2013-08-31 14:48:38 +00:00
xracer Reset maintainer, address bounces. 2013-09-23 10:33:01 +00:00
xrick Needs zlib. 2014-01-09 14:44:32 +00:00
xroach Fix pointer sign cast. 2013-09-10 14:19:06 +00:00
xroads Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xsc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xscavenger Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xscorch * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
xscrabble Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xskat Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xsokoban Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xsoldier Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xtris Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xtux Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xu4 Add a number of includes hidden by libstdc++'s name space pollution. 2013-04-29 21:31:09 +00:00
xvier Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xworm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xye Regen 2013-06-15 19:53:14 +00:00
xzip Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
zombies Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
zoom Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
Makefile + lgogdownloader. 2014-04-19 08:19:44 +00:00