pkgsrc/games
rodent 6a3ca1db79 Updated to latest stable, 1.1.0. Set LUA_VERSION_REQD=51, as the default,
52, doesn't work. Needs -lreadline and something else. Will look into this
later. From ChangeLog:

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

* Add a very short sample quest with free graphics and musics (#232, #318).
* Allow scripted dialog boxes (#184).
* Allow a scripted game-over menu (#261).
* Replace the old built-in dialog box by a very minimal one.
* Remove the old built-in game-over menu.
* Remove the old built-in dark rooms displaying (#205).
* New entity: separators to visually separate some regions in a map (#177).
* New type of ground: ice (#182).
* New type of ground: low walls (#117).
* Blocks and thrown items can now fall into holes, lava and water (#191).
* Kill enemies that fall into holes, lava and water (#190).
* Allow quest makers and users to set the size of the playing area.
* Allow maps to have a default destination entity (#231).
* A game can now start without specifying an initial map and destination.
* Stairs inside a single floor can now go from any layer to a next one (#178).
* Fix map menus not receiving on_command_pressed/released() events.
* Fix camera callbacks never called when already on the target (#308).
* Fix a crash when adding a new menu during a menu:on_finished() event.
* Fix a crash when calling hero:start_victory() without sword.
* Fix an error when loading sounds (#236). Sounds were working anyway.
* Fix a possible memory error when playing sounds.
* Fix blocks that continue to follow the hero after picking a treasure (#284).
* Fix on_obtained() that was not called for non-brandished treasures (#295).
* Jumpers can no longer be activated the opposite way when in water.
* Jumpers are now activated after a slight delay (#253).
* Sensors no longer automatically reset the hero's movement (#292).
* Correctly detect the ground below the hero or any point.
* Don't die if there is a syntax error in dialogs.dat.
* Show a better error message if trying to play a Solarus 0.9 quest (#260).
* Remove built-in debug keys. This can be done from Lua now.
* Remove the preprocessor constant SOLARUS_DEBUG_KEYS.
* Call on_draw() before drawing menus.
* Fix .it musics looping when they should not.
* Log all errors in error.txt (#287).
* The quest archive can now also be named data.solarus.zip (#293).

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

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

* Sprites: New syntax easier to read and parse (#168).
* project_db.dat: New syntax easier to read and parse (#169).
* quest.dat: Allow to specify a range of supported quest sizes.
* Maps: Add the property "default" to destinations.
* Maps: Make optional the property "destination" of teletransporters.
* Tilesets: The ground value of diagonal walls with water has changed.
* Tilesets: New ground values "ice" and "low_wall".
* dialogs.dat: Allow any property in dialogs. dialog_id and text are mandatory.
* languages.dat no longer exists. Languages are in project_db.dat now (#265).

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

Changes that introduce incompatibilities:

* map:is_dialog_enabled() is replaced by game:is_dialog_enabled().
* map:start_dialog() is replaced by game:start_dialog().
* Remove map:draw_dialog_box(), no longer needed.
* Remove map:set_dialog_style(): replace it in your own dialog box system.
* Remove map:set_dialog_position(): replace it in your own dialog box system.
* Remove map:set_dialog_variable(): use the info param of game:start_dialog().
* Make map:get_entities() returns an iterator instead of an array (#249).
* Replace map:set_pause_enabled() by game:set_pause_allowed().
* Make the enemy:create_enemy() more like map:create_enemy() (#215).
* Remove sol.language.get_default_language(), useless and misleading (#265).
* Remove sol.main.is_debug_enabled().
* Remove map:get_light() and map:set_light() (#205).
* In game:get/set_ability(), ability "get_back_from_death" no longer exists.
* Empty chests no longer show a dialog if there is no on:empty() event (#274).

Changes that do not introduce incompatibilities:

* game:get/set_starting_location(): map and destination can now be nil.
* hero:teleport(): make destination optional (maps now have a default one).
* map:create_teletransporter(): make destination optional.
* Add a function sol.video.get_quest_size().
* Make map:get_camera_position() also return the size of the visible area.
* Add a method entity:is_in_same_region(entity).
* Add a method entity:get_center_position().
* Add methods entity:get_direction4_to(), entity:get_direction8_to() (#150).
* Add a method game:get_hero().
* Add methods hero:get/set_walking_speed() (#206).
* Add hero:get_state() and hero:on_state_changed() (#207).
* Add events separator:on_activating() and separator:on_activated() (#272).
* Add methods enemy:is/set_traversable() (#147).
* Add a method enemy:immobilize() (#160).
* Add on_position_changed() to all entities, not only enemies (#298).
* Add on_obstacle_reached() to all entities, not only enemies (#298).
* Add on_movement_changed() to all entities, not only enemies (#298).
* Add on_movement_finished() to all entities, not only enemies/NPCs (#298).
* target_movement:set_target(entity) now accepts an x,y offset (#154).
* Add a method game:is_pause_allowed().
* Add a method map:get_ground() (#141).
* Add a method map:get_music() (#306).
* Add an optional parameter on_top to sol.menu.start.
* Add sprite:on_animation_changed() and sprite:on_direction_changed() (#153).
* Add a function sol.input.is_key_pressed().
* Add a function sol.input.is_joypad_button_pressed().
* Add a function sol.input.get_joypad_axis_state().
* Add a function sol.input.get_joypad_hat_direction().
* Add functions sol.input.is/set_joypad_enabled() (#175).
* Add a function sol.audio.get_music() (#146).
* Add a function sol.audio.get_music_format().
* Add a function sol.audio.get_music_num_channels().
* Add functions sol.audio.get/set_music_channel_volume() for .it files (#250).
* Add functions sol.audio.get/set_music_tempo() for .it files (#250).
* Return nil if the string is not found in sol.language.get_string().
* sol.language.get_dialog() is now implemented.
* Add a function game:stop_dialog(status) to close the scripted dialog box.
* Add an event game:on_dialog_started(dialog, info).
* Add an event game:on_dialog_finished(dialog).
* Add functions game:start_game_over() and game:stop_game_over (#261).
* Add events game:on_game_over_started(), game:on_game_over_finished (#261).
* Add sol.file functions: open(), exists(), remove(), mkdir() (#267).

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

* Add a GUI to upgrade automatically quest files to the latest format (#247).
* Remove the initial prompt dialog to open a quest (#264).
* Replace non-free images by new icons (#245).
* Add tooltips to the add entity toolbar.
* Simplify the add entity toolbar by showing only one icon per entity type.
* Survive when images cannot be found (#256).
* Create more content when creating a new quest (#258, #279).
* Improve error messages.
* Fix a crash when creating a destructible without tileset selected (#283).
* Fix the sprite field disabled in the NPC properties dialog (#303).
2013-11-02 17:09:26 +00:00
..
0verkill Fix build on SunOS. Patching by Sebastian Wiedenroth. 2013-10-21 09:50:36 +00:00
4stAttack Revbump from devel/py-game update 2013-10-24 12:32:38 +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
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 pango-1.36.0 2013-10-10 14:41:44 +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 Revbump from devel/py-game update 2013-10-24 12:32:38 +00:00
blinken Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +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 pango-1.36.0 2013-10-10 14:41:44 +00:00
bomber Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +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 for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
bovo Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
bridge-hands Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
bzflag Updated to latest release, 2.4.2. Buildlink libXext. Regenerated PLIST for 2013-07-14 15:48:14 +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 Recursive bump for png-1.6. 2013-02-16 11:18:58 +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 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
crack-attack Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +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 Disambiguate hash references. 2013-06-16 20:40:40 +00:00
crossfire-client Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
crossfire-client-gtk Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
crossfire-client-gtk2 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
crossfire-server Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +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 Fix format strings for short arguments to scanf. Avoid dangling else. 2013-10-10 00:07:23 +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 Works fine with system curses 2013-10-17 09:44:57 +00:00
duckmaze Revbump from devel/py-game update 2013-10-24 12:32:38 +00:00
dungeon Works fine with system curses 2013-10-17 16:36:07 +00:00
eboard Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +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 Avoid conflict with C++11's std::move. 2013-04-30 22:20:58 +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 Bump PKGREVISION of packages whose Lua depends changed form, but whose 2013-10-30 06:49:53 +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
flightgear Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +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 pango-1.36.0 2013-10-10 14:41:44 +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 Fix build of freeciv-server with newer libtool. 2013-05-23 15:02: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 pango-1.36.0 2013-10-10 14:41:44 +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 pango-1.36.0 2013-10-10 14:41:44 +00:00
gate88 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
gbrainy Revbump after updating textproc/icu 2013-10-19 09:06:55 +00:00
gcompris Revbump after updating textproc/icu 2013-10-19 09:06:55 +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 pango-1.36.0 2013-10-10 14:41:44 +00:00
genecys-data Prefer in-tree bsdtar 2013-01-11 13:25:40 +00:00
ggz-client-libs Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +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 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +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 pango-1.36.0 2013-10-10 14:41:44 +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 Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
greed Fix patch 2013-10-11 14:33:47 +00:00
grhino Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gtetrinet Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gtkballs Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gtklevel9 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gtkmagnetic Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gturing Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +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 pango-1.36.0 2013-10-10 14:41:44 +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 games/ivan: Fix redeclared variable error 2012-10-11 11:36:20 +00:00
jetpack Regen. Not sure what happened here... 2013-01-17 15:53:38 +00:00
jools Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +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 textproc/icu 2013-10-19 09:06:55 +00:00
kanagram Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kanatest Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
kapman Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kapooka Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
katomic Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kblackbox Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kblocks Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kbounce Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kbreakout Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kdegames3 recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
kdetoys3 recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
kdetoys4 Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kdiamond Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
ketm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
kfourinline Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kgoldrunner Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
khangman Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kigo Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
killbots Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kiriki Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kjumpingcube Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
klickety Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
klines Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kmahjongg Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kmines Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
knavalbattle Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
knetwalk Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +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 for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
KoboDeluxe Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
kolf Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kollision Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
konquest Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
koth Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
kpat Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kreversi Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kshisen Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
ksirk Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
ksnakeduel Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kspaceduel Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
ksquares Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
ksudoku Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
ktuberling Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kubrick Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kye Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
lbreakout Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +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
libggz Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
libkdegames Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
libkmahjongg Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +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 Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +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 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +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 Bump PKGREVISION of packages whose Lua depends changed form, but whose 2013-10-30 06:49:53 +00:00
openmortal Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
openttd Revbump after updating textproc/icu 2013-10-19 09:06:55 +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 Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
picmi Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
pingus Remove "Trailing empty lines." and/or "Trailing white-space." 2013-04-08 11:17:08 +00:00
pioneers Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
plib Fix build on OpenBSD/amd64 5.2. 2013-01-06 00:59:46 +00:00
pokerth Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +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 Bump PKGREVISION of packages whose Lua depends changed form, but whose 2013-10-30 06:49:53 +00:00
puzzles Update to 10051: 2013-10-12 13:51:57 +00:00
py-ranking Import ranking-0.3.1 as games/py-ranking. 2013-07-06 17:36:39 +00:00
py-renpy Use devel/py-game instead. 2013-10-24 12:43:52 +00:00
py-trueskill Update to 0.4.1: 2013-06-12 20:33:29 +00:00
pysolfc Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
pytraffic Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +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 "Use of DOWNLOADED_DISTFILE is deprecated. Use the shell variable 2013-04-06 12:03:59 +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 Don't use IP_PKTINFO on NetBSD. 2013-08-31 14:49:08 +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 pango-1.36.0 2013-10-10 14:41:44 +00:00
REminiscence Reset maintainer on his request. 2012-12-12 10:44:06 +00:00
rftg Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +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 PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +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 pango-1.36.0 2013-10-10 14:41:44 +00:00
sex Add USE_TOOLS+=nroff to packages which generate catman pages. 2013-09-12 11:15:12 +00:00
simgear Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
singularity Revbump from devel/py-game update 2013-10-24 12:32:38 +00:00
sirius Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
six recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +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 stable, 1.1.0. Set LUA_VERSION_REQD=51, as the default, 2013-11-02 17:09:26 +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 Revbump from devel/py-game update 2013-10-24 12:32:38 +00:00
stratagus Bump PKGREVISION of packages whose Lua depends changed form, but whose 2013-10-30 06:49:53 +00:00
sudoku-cli Works fine with system curses 2013-10-17 16:24:11 +00:00
supertuxkart Add missing include for rand. 2013-06-26 21:23:52 +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 pango-1.36.0 2013-10-10 14:41:44 +00:00
tetrinetx Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +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 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
tyrquake Remove xextproto/buildlink3.mk in most cases where it occurs with 2012-10-23 10:24:02 +00:00
ufoai Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +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 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
warmux Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +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 Bump PKGREVISION of packages whose Lua depends changed form, but whose 2013-10-30 06:49:53 +00:00
wormz Fix main. Bump revision. 2013-01-11 13:26:20 +00:00
wxhugo Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +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 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +00:00
xconq Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
xcowsay Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +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 'The "+=" operator should only be used with lists.' 2013-04-06 19:42:41 +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 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 11:54:29 +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 Remove py-pygame 2013-10-24 12:03:00 +00:00