blob: 94ac1ecf220a108a329d32d9733de90b9de75771 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
|
# $FreeBSD$
#
COMMENT = Games and related software
SUBDIR += 0ad
SUBDIR += 0verkill
SUBDIR += 2048
SUBDIR += 2048-qt
SUBDIR += 3dc
SUBDIR += 3dpong
SUBDIR += 3omns
SUBDIR += 4stattack
SUBDIR += 54321
SUBDIR += 7kaa
SUBDIR += CaribbeanStud
SUBDIR += HeroesOfMightAndMagic
SUBDIR += KnightCap
SUBDIR += abbayedesmorts
SUBDIR += abe
SUBDIR += abuse_sdl
SUBDIR += acm
SUBDIR += adgali
SUBDIR += adom
SUBDIR += adonthell
SUBDIR += aestats
SUBDIR += affenspiel
SUBDIR += afternoonstalker
SUBDIR += agame
SUBDIR += aisleriot
SUBDIR += alephone
SUBDIR += alephone-data
SUBDIR += alephone-scenarios
SUBDIR += alex4
SUBDIR += alienblaster
SUBDIR += alienwave
SUBDIR += allacrost
SUBDIR += amoebax
SUBDIR += an
SUBDIR += angband
SUBDIR += anki
SUBDIR += antipolix
SUBDIR += aop
SUBDIR += apoolGL
SUBDIR += apricots
SUBDIR += aquaria
SUBDIR += arkanoidsb
SUBDIR += armagetron
SUBDIR += arx-libertatis
SUBDIR += asc
SUBDIR += asciiquarium
SUBDIR += assaultcube
SUBDIR += asteroid
SUBDIR += asteroids3d
SUBDIR += atanks
SUBDIR += atomix
SUBDIR += atr3d
SUBDIR += atris
SUBDIR += atris-sounds
SUBDIR += avanor
SUBDIR += avoision
SUBDIR += awale
SUBDIR += awele
SUBDIR += balazar
SUBDIR += balazarbrothers
SUBDIR += banihstypos
SUBDIR += barbie_seahorse_adventures
SUBDIR += barrage
SUBDIR += bass
SUBDIR += bastet
SUBDIR += battalion
SUBDIR += battletanks
SUBDIR += belooted
SUBDIR += biloba
SUBDIR += biniax2
SUBDIR += biorythm
SUBDIR += bitefusion
SUBDIR += black-box
SUBDIR += blackjackclient
SUBDIR += blackshadeselite
SUBDIR += blinken
SUBDIR += blinkensisters
SUBDIR += blobby
SUBDIR += bloboats
SUBDIR += blobwars
SUBDIR += block
SUBDIR += blockade
SUBDIR += blockout
SUBDIR += blockrage
SUBDIR += blokish
SUBDIR += bloodfrontier
SUBDIR += bluemoon
SUBDIR += bogged
SUBDIR += bomber
SUBDIR += bomberclone
SUBDIR += bomberinstinct
SUBDIR += bombherman
SUBDIR += bombz
SUBDIR += bomns
SUBDIR += boswars
SUBDIR += bouncy
SUBDIR += bovo
SUBDIR += braincurses
SUBDIR += brainparty
SUBDIR += brainworkshop
SUBDIR += brickshooter
SUBDIR += brikx
SUBDIR += briquolo
SUBDIR += brutalchess
SUBDIR += bs
SUBDIR += bsdgames
SUBDIR += bsdrain
SUBDIR += bsdtris
SUBDIR += bsp
SUBDIR += bubble-chains
SUBDIR += bubbros
SUBDIR += bugsquish
SUBDIR += bugsx
SUBDIR += bumprace
SUBDIR += bunnysay
SUBDIR += burgerspace
SUBDIR += burrtools
SUBDIR += bygfoot
SUBDIR += bzflag
SUBDIR += bzflag-server
SUBDIR += cake
SUBDIR += caph
SUBDIR += capicity
SUBDIR += capitalism
SUBDIR += cardpics
SUBDIR += castlevox
SUBDIR += cataclysm-dda
SUBDIR += catesc
SUBDIR += cave9
SUBDIR += cavezofphear
SUBDIR += ceferino
SUBDIR += cgoban
SUBDIR += chanta
SUBDIR += chapping
SUBDIR += cheech
SUBDIR += chessx
SUBDIR += childsplay
SUBDIR += chocolate-doom
SUBDIR += chroma
SUBDIR += chromium-bsu
SUBDIR += circuslinux
SUBDIR += cleanq3
SUBDIR += cockatrice
SUBDIR += colorcode
SUBDIR += columns
SUBDIR += concentration
SUBDIR += connectagram
SUBDIR += connectfive
SUBDIR += conquest
SUBDIR += construo
SUBDIR += corewars
SUBDIR += corsix-th
SUBDIR += cosmo
SUBDIR += cosmosmash
SUBDIR += cowsay
SUBDIR += crack-attack
SUBDIR += craft
SUBDIR += crafty
SUBDIR += crafty-open-enormous
SUBDIR += crafty-open-large
SUBDIR += crafty-open-medium
SUBDIR += crafty-tablebase-no-pawn
SUBDIR += crafty-tablebase-pawn
SUBDIR += cre
SUBDIR += cretan-hubris
SUBDIR += crimson
SUBDIR += criticalmass
SUBDIR += critterding
SUBDIR += crossfire-client
SUBDIR += crossfire-server
SUBDIR += crrcsim
SUBDIR += cryptoslam
SUBDIR += csmash
SUBDIR += ctris
SUBDIR += cube
SUBDIR += cultivation
SUBDIR += cursive
SUBDIR += cutemaze
SUBDIR += cuyo
SUBDIR += d2x
SUBDIR += d2x-xl
SUBDIR += dangen
SUBDIR += dangerdeep
SUBDIR += dangerdeep-data
SUBDIR += darkplaces
SUBDIR += dcross
SUBDIR += defendguin
SUBDIR += dhewm3
SUBDIR += diameter
SUBDIR += diaspora
SUBDIR += digger-vgl
SUBDIR += dmjava
SUBDIR += dodgindiamond2
SUBDIR += domination
SUBDIR += dontspace
SUBDIR += doom
SUBDIR += doom-data
SUBDIR += doom-freedoom
SUBDIR += doom-hacx
SUBDIR += doom-hr
SUBDIR += doom-hr2
SUBDIR += doom-wolfendoom
SUBDIR += doomlegacy
SUBDIR += doomsday
SUBDIR += dopewars
SUBDIR += drcreep
SUBDIR += drm
SUBDIR += dsnake
SUBDIR += duckmaze
SUBDIR += duel
SUBDIR += dunelegacy
SUBDIR += dungeon
SUBDIR += dungeoncrawl
SUBDIR += dustrac
SUBDIR += easyrpg-player
SUBDIR += eboard
SUBDIR += edge
SUBDIR += editss
SUBDIR += eduke32
SUBDIR += egl
SUBDIR += egoboo
SUBDIR += eif
SUBDIR += eights
SUBDIR += einstein
SUBDIR += el
SUBDIR += el-data
SUBDIR += ember
SUBDIR += emptyepsilon
SUBDIR += endgame-singularity
SUBDIR += endgame-singularity-music
SUBDIR += endless-sky
SUBDIR += endless-sky-high-dpi
SUBDIR += enigma
SUBDIR += ensemblist
SUBDIR += entombed
SUBDIR += enygma
SUBDIR += epiar
SUBDIR += etracer
SUBDIR += euchre
SUBDIR += evilfinder
SUBDIR += evq3
SUBDIR += excido
SUBDIR += exhaust
SUBDIR += exhaust-doc
SUBDIR += exhaust-ma
SUBDIR += exmars
SUBDIR += exult
SUBDIR += ezquake
SUBDIR += f1spirit-remake
SUBDIR += fairymax
SUBDIR += falconseye
SUBDIR += farblazer
SUBDIR += fargoal
SUBDIR += fbg2
SUBDIR += fightorperish
SUBDIR += fillets-ng
SUBDIR += filters
SUBDIR += fishsupper
SUBDIR += five-or-more
SUBDIR += fkiss
SUBDIR += flare-engine
SUBDIR += flare-game
SUBDIR += flightgear
SUBDIR += flightgear-aircraft
SUBDIR += flightgear-data
SUBDIR += flightgear-mb339-pan
SUBDIR += flobopuyo
SUBDIR += flukz
SUBDIR += flyhard
SUBDIR += flying
SUBDIR += fmars
SUBDIR += foobillard
SUBDIR += formido
SUBDIR += fortunate
SUBDIR += fotaq
SUBDIR += four-in-a-row
SUBDIR += freeblocks
SUBDIR += freecell-solver
SUBDIR += freeciv
SUBDIR += freeciv-nox11
SUBDIR += freeciv-sounds
SUBDIR += freecol
SUBDIR += freedink
SUBDIR += freedink-data
SUBDIR += freedink-dfarc
SUBDIR += freedink-engine
SUBDIR += freedoko
SUBDIR += freedroid
SUBDIR += freedroidrpg
SUBDIR += freeminer
SUBDIR += freeminer-default
SUBDIR += freera
SUBDIR += freesweep
SUBDIR += freesynd
SUBDIR += freetennis
SUBDIR += fretsonfire
SUBDIR += fretsonfire-data
SUBDIR += frikqcc
SUBDIR += frobtads
SUBDIR += frogatto
SUBDIR += frotz
SUBDIR += frozen-bubble
SUBDIR += fteqw
SUBDIR += funnyboat
SUBDIR += galaxis
SUBDIR += galaxyhack
SUBDIR += garden-of-coloured-lights
SUBDIR += garith
SUBDIR += gbottler
SUBDIR += gbrainy
SUBDIR += gcompris
SUBDIR += gdado
SUBDIR += gemdropx
SUBDIR += gemrb
SUBDIR += ggz-client-libs
SUBDIR += ggz-gtk-client
SUBDIR += ggz-gtk-games
SUBDIR += ggz-sdl-games
SUBDIR += ggz-txt-client
SUBDIR += gigalomania
SUBDIR += gillo
SUBDIR += gish-demo
SUBDIR += gl-117
SUBDIR += glaxium
SUBDIR += glbsp
SUBDIR += glchess
SUBDIR += glest
SUBDIR += glest-data
SUBDIR += glightoff
SUBDIR += glmaze
SUBDIR += glob2
SUBDIR += glsfcave
SUBDIR += gltron
SUBDIR += gmastermind
SUBDIR += gmines
SUBDIR += gnake
SUBDIR += gnarr
SUBDIR += gnome-2048
SUBDIR += gnome-chess
SUBDIR += gnome-games
SUBDIR += gnome-klotski
SUBDIR += gnome-mahjongg
SUBDIR += gnome-mines
SUBDIR += gnome-nibbles
SUBDIR += gnome-robots
SUBDIR += gnome-sudoku
SUBDIR += gnome-taquin
SUBDIR += gnome-tetravex
SUBDIR += gnomeattacks
SUBDIR += gnomebreakout
SUBDIR += gnomekiss
SUBDIR += gnono
SUBDIR += gnubg
SUBDIR += gnubik
SUBDIR += gnuchess
SUBDIR += gnudoku
SUBDIR += gnugo
SUBDIR += gnujump
SUBDIR += gnurobbo
SUBDIR += gnurobots
SUBDIR += gnushogi
SUBDIR += gnustep-ladder
SUBDIR += gnustep-sudoku
SUBDIR += golddig
SUBDIR += goldencheetah
SUBDIR += golly
SUBDIR += gomoku
SUBDIR += gondola
SUBDIR += goonies
SUBDIR += gottet
SUBDIR += gracer
SUBDIR += granatier
SUBDIR += greed
SUBDIR += gretools
SUBDIR += grhino
SUBDIR += griels-quest
SUBDIR += gru
SUBDIR += grubik
SUBDIR += gshisen
SUBDIR += gtetrinet
SUBDIR += gti
SUBDIR += gtkatlantic
SUBDIR += gtkballs
SUBDIR += gtkevemon
SUBDIR += gtklife
SUBDIR += gtkpool
SUBDIR += gtkradiant
SUBDIR += gtktetcolor
SUBDIR += gturing
SUBDIR += gtypist
SUBDIR += gunfudeadlands
SUBDIR += hangman
SUBDIR += hedgewars
SUBDIR += help_hannahs_horse
SUBDIR += heretic
SUBDIR += heroes
SUBDIR += hex-a-hop
SUBDIR += hexalate
SUBDIR += hexglass
SUBDIR += hexxagon
SUBDIR += highmoon
SUBDIR += hinversi
SUBDIR += hitori
SUBDIR += hllib
SUBDIR += hohlin
SUBDIR += hoichess
SUBDIR += holotz-castle
SUBDIR += hoverboard-sdl
SUBDIR += hs-scroll
SUBDIR += hypatia_engine
SUBDIR += iagno
SUBDIR += icbm3d
SUBDIR += icebreaker
SUBDIR += iceicepenguin
SUBDIR += ifm
SUBDIR += imaze
SUBDIR += impossible_mission_puzzle
SUBDIR += inform
SUBDIR += inform7
SUBDIR += instead
SUBDIR += interlogic
SUBDIR += ioquake3
SUBDIR += ioquake3-devel
SUBDIR += ioquake3-devel-server
SUBDIR += ioquake3-server
SUBDIR += iortcw
SUBDIR += iourbanterror
SUBDIR += iourbanterror-server
SUBDIR += irrlamb
SUBDIR += ishido
SUBDIR += ivan
SUBDIR += jag
SUBDIR += jaggedalliance2
SUBDIR += java-games-suite
SUBDIR += jchessboard
SUBDIR += jfk
SUBDIR += jfsw
SUBDIR += jigsaw
SUBDIR += jigzo
SUBDIR += jin
SUBDIR += jinput
SUBDIR += joequake
SUBDIR += jools
SUBDIR += jtans
SUBDIR += jutils
SUBDIR += jvgs
SUBDIR += jzip
SUBDIR += kajaani-kombat
SUBDIR += kajongg
SUBDIR += kanagram
SUBDIR += kapman
SUBDIR += kardsgt
SUBDIR += kartofel
SUBDIR += katawa-shoujo
SUBDIR += katomic
SUBDIR += kblackbox
SUBDIR += kblocks
SUBDIR += kbounce
SUBDIR += kbreakout
SUBDIR += kcheckers
SUBDIR += kdegames4
SUBDIR += kdiamond
SUBDIR += kevedit
SUBDIR += kfourinline
SUBDIR += kgoldrunner
SUBDIR += khangman
SUBDIR += kigo
SUBDIR += kiki
SUBDIR += killbots
SUBDIR += kiriki
SUBDIR += kjumpingcube
SUBDIR += klavaro
SUBDIR += klickety
SUBDIR += klines
SUBDIR += klondike
SUBDIR += kmahjongg
SUBDIR += kmines
SUBDIR += knavalbattle
SUBDIR += knetwalk
SUBDIR += knights-kde4
SUBDIR += kobodeluxe
SUBDIR += kolf
SUBDIR += kollision
SUBDIR += konquest
SUBDIR += kpat
SUBDIR += krank
SUBDIR += kreversi
SUBDIR += kshisen
SUBDIR += ksirk
SUBDIR += ksnakeduel
SUBDIR += kspaceduel
SUBDIR += ksquares
SUBDIR += ksudoku
SUBDIR += ktuberling
SUBDIR += kubrick
SUBDIR += kuklomenos
SUBDIR += kye
SUBDIR += ladder
SUBDIR += lander
SUBDIR += lapispuzzle
SUBDIR += lbreakout
SUBDIR += lbreakout2
SUBDIR += ldmud
SUBDIR += legend-of-edgar
SUBDIR += legends
SUBDIR += legesmotus
SUBDIR += lexter
SUBDIR += lgeneral
SUBDIR += lianliankan
SUBDIR += libdungeonmaker
SUBDIR += libfov
SUBDIR += libgames-support
SUBDIR += libggz
SUBDIR += libkdegames
SUBDIR += libkmahjongg
SUBDIR += liblcf
SUBDIR += libmaitretarot
SUBDIR += libmt_client
SUBDIR += libretro-cores
SUBDIR += libshhcards
SUBDIR += lightsoff
SUBDIR += lincity
SUBDIR += lincity-ng
SUBDIR += linux-darwinia-demo
SUBDIR += linux-defcon
SUBDIR += linux-doom3
SUBDIR += linux-doom3-demo
SUBDIR += linux-enemyterritory
SUBDIR += linux-enemyterritory-etpro
SUBDIR += linux-enemyterritory-jaymod
SUBDIR += linux-enemyterritory-jaymod-21
SUBDIR += linux-enemyterritory-omni-bot
SUBDIR += linux-enemyterritory-omni-bot-0660
SUBDIR += linux-enemyterritory-shrub
SUBDIR += linux-enemyterritory-tce
SUBDIR += linux-etqw-demo-server
SUBDIR += linux-etqw-server
SUBDIR += linux-nerogame
SUBDIR += linux-nwnclient
SUBDIR += linux-quake3
SUBDIR += linux-quake3-demo
SUBDIR += linux-quake4
SUBDIR += linux-quake4-demo
SUBDIR += linux-rtcw
SUBDIR += linux-ssamtfe
SUBDIR += linux-ssamtse
SUBDIR += linux-unigine-heaven
SUBDIR += linux-unigine-valley
SUBDIR += linux-unrealgold
SUBDIR += linux-uplink-demo
SUBDIR += linux-ut
SUBDIR += linux-ut2003-demo
SUBDIR += linux-virtual-jay-peak
SUBDIR += linux-worldofgoo-demo
SUBDIR += linwarrior
SUBDIR += liquidwar
SUBDIR += lm-solve
SUBDIR += lmarbles
SUBDIR += lmpc
SUBDIR += lolcat
SUBDIR += lordsawar
SUBDIR += lostfeathers
SUBDIR += lpairs
SUBDIR += lskat
SUBDIR += ltris
SUBDIR += lugaru
SUBDIR += luola
SUBDIR += lwjgl
SUBDIR += macopix
SUBDIR += madbomber
SUBDIR += maelstrom
SUBDIR += magiccube4d
SUBDIR += magicmaze
SUBDIR += magicor
SUBDIR += mahjong
SUBDIR += maitretarot
SUBDIR += manaplus
SUBDIR += mangband
SUBDIR += marsnomercy
SUBDIR += masterserver
SUBDIR += maxr
SUBDIR += meandmyshadow
SUBDIR += megaglest
SUBDIR += megaglest-data
SUBDIR += megamario
SUBDIR += memonix
SUBDIR += meqcc
SUBDIR += meritous
SUBDIR += mindfocus
SUBDIR += mindguard
SUBDIR += minecraft-client
SUBDIR += minecraft-server
SUBDIR += minerbold
SUBDIR += minetest
SUBDIR += minetest_game
SUBDIR += mirrormagic
SUBDIR += miscom
SUBDIR += mkgichessclub
SUBDIR += mkhexgrid
SUBDIR += moagg
SUBDIR += monkeybubble
SUBDIR += monster-masher
SUBDIR += monsterz
SUBDIR += moon-buggy
SUBDIR += moonlander
SUBDIR += mopesnake
SUBDIR += moria
SUBDIR += motogt
SUBDIR += mt_dolphin_ia
SUBDIR += mt_gtk_client
SUBDIR += mtaserver
SUBDIR += mudmagic
SUBDIR += mvdsv
SUBDIR += nInvaders
SUBDIR += nadar
SUBDIR += naev
SUBDIR += naev-data
SUBDIR += narcissu2
SUBDIR += nazghul
SUBDIR += nehquake
SUBDIR += nelly
SUBDIR += nethack32
SUBDIR += nethack33
SUBDIR += nethack33-nox11
SUBDIR += nethack34
SUBDIR += nethack34-nox11
SUBDIR += nethack36
SUBDIR += nethack36-nox11
SUBDIR += netherearth
SUBDIR += netpanzer
SUBDIR += netradiant
SUBDIR += netrek-BRMH-bin
SUBDIR += netrek-client-cow
SUBDIR += netspades
SUBDIR += nettoe
SUBDIR += netwalk
SUBDIR += neverball
SUBDIR += newvox
SUBDIR += nextgo
SUBDIR += nexuiz
SUBDIR += nighthawk
SUBDIR += nimuh
SUBDIR += ninix-aya
SUBDIR += njam
SUBDIR += nlarn
SUBDIR += noegnud-data
SUBDIR += nonsense
SUBDIR += npush
SUBDIR += nsnake
SUBDIR += nuclearchess
SUBDIR += numptyphysics
SUBDIR += numptyphysics-npcomplete
SUBDIR += nwndata
SUBDIR += odamex
SUBDIR += oldrunner
SUBDIR += omega
SUBDIR += oneisenough
SUBDIR += oneko
SUBDIR += oneko-sakura
SUBDIR += oolite
SUBDIR += oonsoo
SUBDIR += openalchemist
SUBDIR += openarena
SUBDIR += openarena-data
SUBDIR += openarena-oax
SUBDIR += openarena-server
SUBDIR += openastromenace
SUBDIR += openbor
SUBDIR += openbubbles
SUBDIR += opencity
SUBDIR += openclonk
SUBDIR += opengfx
SUBDIR += openglad
SUBDIR += openjazz
SUBDIR += openlierox
SUBDIR += openmortal
SUBDIR += openmsx
SUBDIR += openmw
SUBDIR += openomf
SUBDIR += openpref
SUBDIR += openra
SUBDIR += opensfx
SUBDIR += opensonic
SUBDIR += openspades
SUBDIR += openssn
SUBDIR += opensurge
SUBDIR += openttd
SUBDIR += opentyrian
SUBDIR += openxcom
SUBDIR += openyahtzee
SUBDIR += optimax
SUBDIR += orbital_eunuchs_sniper
SUBDIR += osgg
SUBDIR += outerspace
SUBDIR += p5-Acme-GuessNumber
SUBDIR += p5-Algorithm-Pair-Best2
SUBDIR += p5-Algorithm-Pair-Swiss
SUBDIR += p5-Baseball-Sabermetrics
SUBDIR += p5-Games-Alak
SUBDIR += p5-Games-AlphaBeta
SUBDIR += p5-Games-Bingo
SUBDIR += p5-Games-Bingo-Bot
SUBDIR += p5-Games-Bingo-Print
SUBDIR += p5-Games-Dice
SUBDIR += p5-Games-GuessWord
SUBDIR += p5-Games-Tournament-RoundRobin
SUBDIR += pachi
SUBDIR += pacmanarena
SUBDIR += paintown
SUBDIR += pairs
SUBDIR += palapeli
SUBDIR += palomino
SUBDIR += pangzero
SUBDIR += passage
SUBDIR += patapizza-tetris
SUBDIR += pathological
SUBDIR += pcgen
SUBDIR += pear-Games_Chess
SUBDIR += peg-e
SUBDIR += pengpong
SUBDIR += penguin-command
SUBDIR += pengupop
SUBDIR += phalanx
SUBDIR += phlipple
SUBDIR += picmi
SUBDIR += pinball
SUBDIR += pingus
SUBDIR += pink-pony
SUBDIR += pioneer
SUBDIR += pioneers
SUBDIR += pipenightdreams
SUBDIR += pipepanic
SUBDIR += pipewalker
SUBDIR += plee-the-bear
SUBDIR += plutocracy
SUBDIR += pmars
SUBDIR += pmars-sdl
SUBDIR += poker-engine
SUBDIR += poker-eval
SUBDIR += pokerth
SUBDIR += polyglot
SUBDIR += polypuzzle
SUBDIR += pongix
SUBDIR += popstar
SUBDIR += pouetchess
SUBDIR += powder
SUBDIR += powermanga
SUBDIR += powwow
SUBDIR += ppracer
SUBDIR += prboom
SUBDIR += prboom-plus
SUBDIR += primateplunge
SUBDIR += ptkei
SUBDIR += ptools
SUBDIR += puckman
SUBDIR += pushover
SUBDIR += pvpgn
SUBDIR += py-fife
SUBDIR += py-mnemosyne
SUBDIR += py-poker-eval
SUBDIR += py-sgflib
SUBDIR += py-sgfsummary
SUBDIR += pyawale
SUBDIR += pycadia
SUBDIR += pydance
SUBDIR += pyfa
SUBDIR += pykawari
SUBDIR += pysolfc
SUBDIR += pyspacewar
SUBDIR += pysycache
SUBDIR += pysycache-lang
SUBDIR += pythonchess
SUBDIR += pythonsudoku
SUBDIR += pytowerdefense
SUBDIR += q2p
SUBDIR += q2pro
SUBDIR += q3cellshading
SUBDIR += qcc
SUBDIR += qccx
SUBDIR += qgo
SUBDIR += qmars
SUBDIR += qnetwalk
SUBDIR += qonk
SUBDIR += qqwing
SUBDIR += qstat
SUBDIR += qtads
SUBDIR += quackle
SUBDIR += quadra
SUBDIR += quadrapassel
SUBDIR += quake-data
SUBDIR += quake-dpmod
SUBDIR += quake-reaper
SUBDIR += quake-source
SUBDIR += quake2-3zb2
SUBDIR += quake2-ctf
SUBDIR += quake2-data
SUBDIR += quake2-extras
SUBDIR += quake2-lights
SUBDIR += quake2-matrix
SUBDIR += quake2-psychomod
SUBDIR += quake2-relay
SUBDIR += quake2-rogue
SUBDIR += quake2-source
SUBDIR += quake2-xatrix
SUBDIR += quake2lnx
SUBDIR += quake2max
SUBDIR += quake3
SUBDIR += quake3-data
SUBDIR += quake3-excessive
SUBDIR += quake3-osp
SUBDIR += quake3-ra3
SUBDIR += quake3-ut
SUBDIR += quake3-wfa
SUBDIR += quakeforge
SUBDIR += quantumminigolf
SUBDIR += quaqut
SUBDIR += qudos
SUBDIR += quetoo
SUBDIR += quit
SUBDIR += qwdtools
SUBDIR += r1q2
SUBDIR += railroad-rampage
SUBDIR += redeclipse
SUBDIR += redeclipse-data
SUBDIR += reminiscence
SUBDIR += rescue
SUBDIR += residualvm
SUBDIR += retroarch
SUBDIR += rezerwar
SUBDIR += rfksay
SUBDIR += ri-li
SUBDIR += rnd_jue
SUBDIR += robocalypto
SUBDIR += robocode
SUBDIR += robocode-naval
SUBDIR += robotfindskitten
SUBDIR += rockdodger
SUBDIR += rocksndiamonds
SUBDIR += rocksndiamonds-data
SUBDIR += rottdc
SUBDIR += rtb
SUBDIR += rubix
SUBDIR += rubygem-fortune_gem
SUBDIR += sampsvr
SUBDIR += sarien
SUBDIR += sauerbraten
SUBDIR += scare
SUBDIR += schiff
SUBDIR += schwarzweiss
SUBDIR += scid
SUBDIR += scorched3d
SUBDIR += scourge
SUBDIR += scourge-data
SUBDIR += scramble
SUBDIR += scummvm
SUBDIR += scummvm-tools
SUBDIR += sdb
SUBDIR += sdl-ball
SUBDIR += sdlCC
SUBDIR += sdl_jewels
SUBDIR += sdl_lopan
SUBDIR += sdl_scavenger
SUBDIR += sdlroids
SUBDIR += sdlsand
SUBDIR += sea-defender
SUBDIR += seabattle
SUBDIR += seahaven
SUBDIR += searchandrescue
SUBDIR += searchandrescue-data
SUBDIR += secrettower
SUBDIR += senken
SUBDIR += sets
SUBDIR += sex
SUBDIR += sgt-puzzles
SUBDIR += shaaft
SUBDIR += shootingstar
SUBDIR += simplevaders
SUBDIR += simsu
SUBDIR += simutrans
SUBDIR += sjeng
SUBDIR += ski
SUBDIR += sl
SUBDIR += slade
SUBDIR += slashem-tty
SUBDIR += slump
SUBDIR += slune
SUBDIR += smashbattle
SUBDIR += sokoban
SUBDIR += sol
SUBDIR += solarconquest
SUBDIR += solarus
SUBDIR += solarus-quest-editor
SUBDIR += solarwolf
SUBDIR += sopwith
SUBDIR += spacejunk
SUBDIR += speak
SUBDIR += species
SUBDIR += spellathon
SUBDIR += spellcast
SUBDIR += speyes
SUBDIR += spicetrade
SUBDIR += spider
SUBDIR += spring
SUBDIR += springlobby
SUBDIR += starfighter
SUBDIR += starlanes
SUBDIR += steelstorm
SUBDIR += stendhal
SUBDIR += stepmania-devel
SUBDIR += stockfish
SUBDIR += stonesoup
SUBDIR += stonesoup-sdl
SUBDIR += stormbaancoureur
SUBDIR += stransball2
SUBDIR += stratagus
SUBDIR += sudoku-sensei
SUBDIR += sudoku_solver
SUBDIR += sudsol
SUBDIR += super_mario_bros_python
SUBDIR += super_methane_brothers
SUBDIR += supertux
SUBDIR += supertux2
SUBDIR += supertuxkart
SUBDIR += swell-foop
SUBDIR += sxsame
SUBDIR += syobon
SUBDIR += tads
SUBDIR += taipan
SUBDIR += tali
SUBDIR += tanglet
SUBDIR += tanks-of-freedom
SUBDIR += tbclock
SUBDIR += tbe
SUBDIR += tecnoballz
SUBDIR += teeworlds
SUBDIR += teg
SUBDIR += tenebrae
SUBDIR += tesseract
SUBDIR += tesseract-data
SUBDIR += tetrinet
SUBDIR += tetrinet-x
SUBDIR += tetrons
SUBDIR += tetzle
SUBDIR += textmaze
SUBDIR += thegrind
SUBDIR += thudboard
SUBDIR += tileworld
SUBDIR += timeseal
SUBDIR += tinymux
SUBDIR += tkmoo
SUBDIR += tksol
SUBDIR += tomatoes
SUBDIR += tome4
SUBDIR += tomenet
SUBDIR += tong
SUBDIR += toppler
SUBDIR += torcs
SUBDIR += tornado
SUBDIR += torrent
SUBDIR += toycars
SUBDIR += trackballs
SUBDIR += tractorgen
SUBDIR += traindirector
SUBDIR += traingame
SUBDIR += tremulous
SUBDIR += trenchbroom
SUBDIR += trigger-data
SUBDIR += trigger-rally
SUBDIR += trimines
SUBDIR += triplane
SUBDIR += trojka
SUBDIR += trophy
SUBDIR += tsito
SUBDIR += tt
SUBDIR += ttraffic
SUBDIR += ttt
SUBDIR += tux-aqfh
SUBDIR += tuxfighter
SUBDIR += tuxkart
SUBDIR += tuxmath
SUBDIR += tuxpaint
SUBDIR += tuxpaint-config
SUBDIR += tuxpaint-fonts
SUBDIR += tuxpaint-stamps
SUBDIR += tuxpuck
SUBDIR += tuxracer
SUBDIR += tuxtype
SUBDIR += twind
SUBDIR += twitch
SUBDIR += tycho
SUBDIR += typespeed
SUBDIR += tyrian-data
SUBDIR += ufoai
SUBDIR += ufoai-data
SUBDIR += uhexen
SUBDIR += uhexen2
SUBDIR += uhexen2-extras
SUBDIR += ultimatestunts
SUBDIR += umark
SUBDIR += unknown-horizons
SUBDIR += unnethack
SUBDIR += untahris
SUBDIR += uqm
SUBDIR += urbanterror-data
SUBDIR += valyriatear
SUBDIR += vamos
SUBDIR += vavoom
SUBDIR += vavoom-extras
SUBDIR += vectoroids
SUBDIR += vegastrike
SUBDIR += vegastrike-data
SUBDIR += violetland
SUBDIR += viruskiller
SUBDIR += vitetris
SUBDIR += vms-empire
SUBDIR += vodovod
SUBDIR += volleyball
SUBDIR += vor
SUBDIR += voxelands
SUBDIR += voxelands-server
SUBDIR += vultures-eye
SUBDIR += wanderer
SUBDIR += wargus
SUBDIR += warmux
SUBDIR += warsow
SUBDIR += warsow-data
SUBDIR += warzone2100
SUBDIR += wesnoth
SUBDIR += whichwayisup
SUBDIR += widelands
SUBDIR += wizznic
SUBDIR += wmeyes
SUBDIR += wmpuzzle
SUBDIR += wmqstat
SUBDIR += wmquake
SUBDIR += wmshuffle
SUBDIR += wmtictactoe
SUBDIR += wolfpack
SUBDIR += wop
SUBDIR += wordplay
SUBDIR += wordwarvi
SUBDIR += worldofpadman
SUBDIR += wtf
SUBDIR += wxlauncher
SUBDIR += wyrmgus
SUBDIR += wyrmsun
SUBDIR += xabacus
SUBDIR += xasteroids
SUBDIR += xataxx
SUBDIR += xbat
SUBDIR += xbattle
SUBDIR += xbill
SUBDIR += xbl
SUBDIR += xblackjack
SUBDIR += xblast
SUBDIR += xblood
SUBDIR += xboard
SUBDIR += xboard-devel
SUBDIR += xboing
SUBDIR += xbomb
SUBDIR += xbubble
SUBDIR += xchadance
SUBDIR += xcheckers
SUBDIR += xchomp
SUBDIR += xconq
SUBDIR += xcowsay
SUBDIR += xcubes
SUBDIR += xdeblock
SUBDIR += xdemineur
SUBDIR += xdesktopwaves
SUBDIR += xdigger
SUBDIR += xdino
SUBDIR += xemeraldia
SUBDIR += xevil
SUBDIR += xeyesplus
SUBDIR += xfireworks
SUBDIR += xfrisk
SUBDIR += xgalaga
SUBDIR += xgalaga++
SUBDIR += xgalaga-sdl
SUBDIR += xglk
SUBDIR += xgospel
SUBDIR += xhexagons
SUBDIR += xhime
SUBDIR += xinfocom
SUBDIR += xinvaders
SUBDIR += xinvaders3d
SUBDIR += xisola
SUBDIR += xjewel
SUBDIR += xjig
SUBDIR += xjump
SUBDIR += xjumpx
SUBDIR += xkoules
SUBDIR += xlaby
SUBDIR += xlennart
SUBDIR += xlife
SUBDIR += xlogical
SUBDIR += xmahjongg
SUBDIR += xmastermind
SUBDIR += xmball
SUBDIR += xmemory
SUBDIR += xmille
SUBDIR += xmine
SUBDIR += xminehunter
SUBDIR += xmines
SUBDIR += xminesweep
SUBDIR += xmlink
SUBDIR += xmoto
SUBDIR += xmris
SUBDIR += xmulti
SUBDIR += xneko
SUBDIR += xoct
SUBDIR += xoids
SUBDIR += xoj
SUBDIR += xonotic
SUBDIR += xorgramana
SUBDIR += xosmulti
SUBDIR += xpacman
SUBDIR += xpanex
SUBDIR += xpat2
SUBDIR += xpenguins
SUBDIR += xpilot
SUBDIR += xpilot-ng-client
SUBDIR += xpilot-ng-server
SUBDIR += xpipeman
SUBDIR += xpired
SUBDIR += xpuyopuyo
SUBDIR += xpuzzletama
SUBDIR += xpyraminx
SUBDIR += xqf
SUBDIR += xrally
SUBDIR += xrick
SUBDIR += xrisk
SUBDIR += xroach
SUBDIR += xrobots
SUBDIR += xrot
SUBDIR += xrubik
SUBDIR += xsc
SUBDIR += xscavenger
SUBDIR += xscorch
SUBDIR += xscrabble
SUBDIR += xshisen
SUBDIR += xshogi
SUBDIR += xskat
SUBDIR += xskewb
SUBDIR += xsokoban
SUBDIR += xsoldier
SUBDIR += xspacewarp
SUBDIR += xspringies
SUBDIR += xteddy
SUBDIR += xtet42
SUBDIR += xtgyoretsu
SUBDIR += xtic
SUBDIR += xtriangles
SUBDIR += xtris
SUBDIR += xtrojka
SUBDIR += xtron
SUBDIR += xtruco
SUBDIR += xtux
SUBDIR += xvier
SUBDIR += xvmahjongg
SUBDIR += xvmines
SUBDIR += xworm
SUBDIR += xye
SUBDIR += xzip
SUBDIR += yadex
SUBDIR += yahtzee
SUBDIR += zangband
SUBDIR += zatacka
SUBDIR += zaz
SUBDIR += zdoom
SUBDIR += zephulor
SUBDIR += zhlt
SUBDIR += znibbles
SUBDIR += zoom
SUBDIR += ztrack
.include <bsd.port.subdir.mk>
|