blob: d495e6563ee1d29672b6f669adce1e33fe9ad165 (
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
|
# $FreeBSD$
#
COMMENT = Games
SUBDIR += 0verkill
SUBDIR += 3dc
SUBDIR += 3dpong
SUBDIR += 44bsd-hunt
SUBDIR += 4stattack
SUBDIR += 54321
SUBDIR += 8kingdoms
SUBDIR += BillardGL
SUBDIR += CaribbeanStud
SUBDIR += HeroesOfMightAndMagic
SUBDIR += KnightCap
SUBDIR += abe
SUBDIR += abridge
SUBDIR += abuse
SUBDIR += abuse_sdl
SUBDIR += acm
SUBDIR += actx
SUBDIR += adgali
SUBDIR += adom
SUBDIR += adonthell
SUBDIR += aestats
SUBDIR += affenspiel
SUBDIR += afternoonstalker
SUBDIR += agame
SUBDIR += airrox
SUBDIR += alephone
SUBDIR += alephone-data
SUBDIR += alephone-scenarios
SUBDIR += alienarena
SUBDIR += alienarena-data
SUBDIR += alienblaster
SUBDIR += alienwave
SUBDIR += allacrost
SUBDIR += amoebax
SUBDIR += amphetamine
SUBDIR += amy
SUBDIR += an
SUBDIR += anagramarama
SUBDIR += angband
SUBDIR += anki
SUBDIR += annelid
SUBDIR += antipolix
SUBDIR += antrix
SUBDIR += aop
SUBDIR += apoolGL
SUBDIR += apricots
SUBDIR += aqbubble
SUBDIR += armagetron
SUBDIR += asc
SUBDIR += asciiquarium
SUBDIR += assaultcube
SUBDIR += atitd
SUBDIR += atlantikdesigner
SUBDIR += atomix
SUBDIR += atr3d
SUBDIR += atris
SUBDIR += atris-sounds
SUBDIR += avanor
SUBDIR += awale
SUBDIR += awele
SUBDIR += balazar
SUBDIR += balazarbrothers
SUBDIR += banihstypos
SUBDIR += barrage
SUBDIR += bass
SUBDIR += bastet
SUBDIR += battalion
SUBDIR += battleball
SUBDIR += battletanks
SUBDIR += belooted
SUBDIR += bfm
SUBDIR += biloba
SUBDIR += biniax2
SUBDIR += biorythm
SUBDIR += bitefusion
SUBDIR += blackjack
SUBDIR += blackshadeselite
SUBDIR += blinkensisters
SUBDIR += blobby
SUBDIR += bloboats
SUBDIR += block
SUBDIR += blockade
SUBDIR += blokish
SUBDIR += blue
SUBDIR += bogged
SUBDIR += bomb
SUBDIR += bomberclone
SUBDIR += bomberinstinct
SUBDIR += bombermaze
SUBDIR += bomns
SUBDIR += boswars
SUBDIR += braincurses
SUBDIR += brainworkshop
SUBDIR += brickshooter
SUBDIR += briquolo
SUBDIR += brutalchess
SUBDIR += bs
SUBDIR += bsdrain
SUBDIR += bsdtris
SUBDIR += bsp
SUBDIR += bubbros
SUBDIR += bugsquish
SUBDIR += bugsx
SUBDIR += bumprace
SUBDIR += burgerspace
SUBDIR += burrtools
SUBDIR += bygfoot
SUBDIR += bzflag
SUBDIR += cake
SUBDIR += cardpics
SUBDIR += cave9
SUBDIR += cavezofphear
SUBDIR += cchess
SUBDIR += ceferino
SUBDIR += cgoban
SUBDIR += cgoban2
SUBDIR += chanta
SUBDIR += chapping
SUBDIR += cheech
SUBDIR += childsplay
SUBDIR += childsplay_plugins
SUBDIR += chromium
SUBDIR += circuslinux
SUBDIR += cleanq3
SUBDIR += columns
SUBDIR += concentration
SUBDIR += connect4
SUBDIR += connectfive
SUBDIR += conquest
SUBDIR += construo
SUBDIR += corewars
SUBDIR += cosmo
SUBDIR += cosmosmash
SUBDIR += cowsay
SUBDIR += crack-attack
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 += crimson
SUBDIR += criticalmass
SUBDIR += crossfire-client
SUBDIR += crossfire-server
SUBDIR += crrcsim
SUBDIR += cryptoslam
SUBDIR += csmash
SUBDIR += ctris
SUBDIR += cube
SUBDIR += cultivation
SUBDIR += cursive
SUBDIR += d2x
SUBDIR += daimonin-client
SUBDIR += dangen
SUBDIR += dangerdeep
SUBDIR += dangerdeep-data
SUBDIR += darkplaces
SUBDIR += deal
SUBDIR += defendguin
SUBDIR += demonquake
SUBDIR += deng
SUBDIR += diameter
SUBDIR += digger-vgl
SUBDIR += djgame2
SUBDIR += dmjava
SUBDIR += dodgindiamond2
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 += dopewars
SUBDIR += drm
SUBDIR += dsnake
SUBDIR += duel
SUBDIR += duke3d-data
SUBDIR += dungeon
SUBDIR += dungeoncrawl
SUBDIR += easysok
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 += empire
SUBDIR += endgame-singularity
SUBDIR += endgame-singularity-music
SUBDIR += enigma
SUBDIR += ensemblist
SUBDIR += enygma
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 += falconseye
SUBDIR += farblazer
SUBDIR += fargoal
SUBDIR += fgkicker
SUBDIR += fgrun
SUBDIR += fgsd
SUBDIR += fillets-ng
SUBDIR += filters
SUBDIR += fishsupper
SUBDIR += fkiss
SUBDIR += flightgear
SUBDIR += flightgear-aircrafts
SUBDIR += flightgear-atlas
SUBDIR += flightgear-data
SUBDIR += flightgear-mb339-pan
SUBDIR += flobopuyo
SUBDIR += flyhard
SUBDIR += flying
SUBDIR += fmars
SUBDIR += foobillard
SUBDIR += formido
SUBDIR += fortunate
SUBDIR += fotaq
SUBDIR += freebsd-games
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 += freeorion
SUBDIR += freera
SUBDIR += freesci
SUBDIR += freesweep
SUBDIR += freesynd
SUBDIR += freetennis
SUBDIR += fretsonfire
SUBDIR += fretsonfire-data
SUBDIR += frikqcc
SUBDIR += frotz
SUBDIR += frozenbubble
SUBDIR += fteqw
SUBDIR += ftjava
SUBDIR += fuhquake
SUBDIR += funnyboat
SUBDIR += fxsudoku
SUBDIR += galaxis
SUBDIR += galaxyhack
SUBDIR += galaxymage
SUBDIR += garith
SUBDIR += gbottler
SUBDIR += gcompris
SUBDIR += gdado
SUBDIR += geki2
SUBDIR += geki3
SUBDIR += gemdropx
SUBDIR += gemrb
SUBDIR += ggz-client-libs
SUBDIR += ggz-gtk-client
SUBDIR += ggz-gtk-games
SUBDIR += ggz-kde-client
SUBDIR += ggz-sdl-games
SUBDIR += ggz-txt-client
SUBDIR += gillo
SUBDIR += gish-demo
SUBDIR += gl-117
SUBDIR += glasteroids
SUBDIR += glaxium
SUBDIR += glbsp
SUBDIR += glchess
SUBDIR += glest
SUBDIR += glest-data
SUBDIR += glife
SUBDIR += glmaze
SUBDIR += glob2
SUBDIR += glsfcave
SUBDIR += gltron
SUBDIR += gma
SUBDIR += gmastermind
SUBDIR += gmines
SUBDIR += gnarr
SUBDIR += gnmm
SUBDIR += gno3dtet
SUBDIR += gnome-games
SUBDIR += gnome-games-extra-data
SUBDIR += gnomeattacks
SUBDIR += gnomebreakout
SUBDIR += gnomechess
SUBDIR += gnomekiss
SUBDIR += gnomememoryblocks
SUBDIR += gnomermind
SUBDIR += gnomesudoku
SUBDIR += gnono
SUBDIR += gnubg
SUBDIR += gnuchess
SUBDIR += gnudoku
SUBDIR += gnugo
SUBDIR += gnurobots
SUBDIR += gnushogi
SUBDIR += gnustep-ladder
SUBDIR += gnustep-sudoku
SUBDIR += golddig
SUBDIR += gomoku.app
SUBDIR += goonies
SUBDIR += gracer
SUBDIR += grande
SUBDIR += greed
SUBDIR += gretools
SUBDIR += grhino
SUBDIR += gridlock
SUBDIR += gru
SUBDIR += grubik
SUBDIR += grubinvaders
SUBDIR += gshisen
SUBDIR += gtetrinet
SUBDIR += gtkabale
SUBDIR += gtkatlantic
SUBDIR += gtkballs
SUBDIR += gtklife
SUBDIR += gtkpool
SUBDIR += gtkradiant
SUBDIR += gtktetcolor
SUBDIR += gturing
SUBDIR += gtypist
SUBDIR += gweled
SUBDIR += hangman
SUBDIR += hattrickorganizer
SUBDIR += hedgewars
SUBDIR += heretic
SUBDIR += heroes
SUBDIR += hex
SUBDIR += hex-a-hop
SUBDIR += hexxagon
SUBDIR += highmoon
SUBDIR += hinversi
SUBDIR += hllib
SUBDIR += hlstats
SUBDIR += hlstatsx
SUBDIR += hohlin
SUBDIR += holotz-castle
SUBDIR += icbm3d
SUBDIR += icebreaker
SUBDIR += ifm
SUBDIR += imaze
SUBDIR += inform
SUBDIR += interlogic
SUBDIR += ioquake3
SUBDIR += iourbanterror
SUBDIR += ishido
SUBDIR += ivan
SUBDIR += jaggedalliance2
SUBDIR += jchessboard
SUBDIR += jetpack
SUBDIR += jfduke3d
SUBDIR += jfk
SUBDIR += jigsaw
SUBDIR += jigzo
SUBDIR += jin
SUBDIR += joequake
SUBDIR += jools
SUBDIR += jtans
SUBDIR += jumpnbump
SUBDIR += jzip
SUBDIR += kaid
SUBDIR += kamikaze
SUBDIR += kanatest
SUBDIR += kardsgt
SUBDIR += kartofel
SUBDIR += kbilliards
SUBDIR += kcheckers
SUBDIR += kdegames3
SUBDIR += kdegames4
SUBDIR += kevedit
SUBDIR += kfreerings
SUBDIR += kiki
SUBDIR += kimboot
SUBDIR += klavaro
SUBDIR += klondike
SUBDIR += kmastermind
SUBDIR += kmquake2
SUBDIR += knights
SUBDIR += kobodeluxe
SUBDIR += koth
SUBDIR += kpicframer
SUBDIR += kpictorial
SUBDIR += kpuzzle
SUBDIR += krosswordplayer
SUBDIR += kslide
SUBDIR += ksudoku
SUBDIR += ktritoc
SUBDIR += kuklomenos
SUBDIR += kwappen
SUBDIR += ladder
SUBDIR += lapispuzzle
SUBDIR += latrine
SUBDIR += laughingman
SUBDIR += lbreakout
SUBDIR += lbreakout2
SUBDIR += ldmud
SUBDIR += legends
SUBDIR += lexter
SUBDIR += lgeneral
SUBDIR += lgeneral-data
SUBDIR += lianliankan
SUBDIR += libdungeonmaker
SUBDIR += libfov
SUBDIR += libggz
SUBDIR += libmaitretarot
SUBDIR += libmt_client
SUBDIR += libshhcards
SUBDIR += lincity
SUBDIR += lincity-ng
SUBDIR += linux-americasarmy
SUBDIR += linux-candycruncher-demo
SUBDIR += linux-coldwar-demo
SUBDIR += linux-darwinia-demo
SUBDIR += linux-defcon
SUBDIR += linux-doom3
SUBDIR += linux-doom3-demo
SUBDIR += linux-enemyterritory
SUBDIR += linux-enemyterritory-etpro
SUBDIR += linux-enemyterritory-etpub
SUBDIR += linux-enemyterritory-fortress
SUBDIR += linux-enemyterritory-jaymod
SUBDIR += linux-enemyterritory-omni-bot
SUBDIR += linux-enemyterritory-shrub
SUBDIR += linux-enemyterritory-tce
SUBDIR += linux-etqw-demo-server
SUBDIR += linux-etqw-server
SUBDIR += linux-gorky17-demo
SUBDIR += linux-majesty-demo
SUBDIR += linux-nerogame
SUBDIR += linux-ningpo-demo
SUBDIR += linux-nwnclient
SUBDIR += linux-nwserver
SUBDIR += linux-quake3
SUBDIR += linux-quake3-demo
SUBDIR += linux-quake4
SUBDIR += linux-quake4-demo
SUBDIR += linux-savage
SUBDIR += linux-savage-samuraiwars
SUBDIR += linux-sof
SUBDIR += linux-spheresofchaos-demo
SUBDIR += linux-ssamtfe
SUBDIR += linux-ssamtse
SUBDIR += linux-steam
SUBDIR += linux-unrealgold
SUBDIR += linux-uplink-demo
SUBDIR += linux-ut
SUBDIR += linux-ut2003-demo
SUBDIR += linux-ut2004-demo
SUBDIR += linux-virtual-jay-peak
SUBDIR += linux-warsow
SUBDIR += linwarrior
SUBDIR += liquidwar
SUBDIR += lm-solve
SUBDIR += lmarbles
SUBDIR += lmpc
SUBDIR += lordsawar
SUBDIR += love
SUBDIR += lpairs
SUBDIR += ltris
SUBDIR += lucidlife
SUBDIR += luola
SUBDIR += macopix
SUBDIR += madbomber
SUBDIR += maelstrom
SUBDIR += magiccube4d
SUBDIR += magicor
SUBDIR += mahjong
SUBDIR += maitretarot
SUBDIR += mangband
SUBDIR += mangos
SUBDIR += marsnomercy
SUBDIR += masterserver
SUBDIR += maxr
SUBDIR += memonix
SUBDIR += meqcc
SUBDIR += meritous
SUBDIR += merlin
SUBDIR += mindfocus
SUBDIR += mindguard
SUBDIR += mirrormagic
SUBDIR += miscom
SUBDIR += mkgichessclub
SUBDIR += mkhexgrid
SUBDIR += monkeybubble
SUBDIR += monopd
SUBDIR += monster-masher
SUBDIR += monsterz
SUBDIR += moon-buggy
SUBDIR += moonlander
SUBDIR += moria
SUBDIR += mt_dolphin_ia
SUBDIR += mt_gtk_client
SUBDIR += mtaserver
SUBDIR += mudmagic
SUBDIR += mvdsv
SUBDIR += nInvaders
SUBDIR += nadar
SUBDIR += nazghul
SUBDIR += nehquake
SUBDIR += nethack32
SUBDIR += nethack33
SUBDIR += nethack33-gnome
SUBDIR += nethack33-nox11
SUBDIR += nethack34
SUBDIR += nethack34-gnome
SUBDIR += nethack34-nox11
SUBDIR += nethack34-qt
SUBDIR += netherearth
SUBDIR += netpanzer
SUBDIR += netpanzer-data
SUBDIR += netrek-BRMH-bin
SUBDIR += netrek-COW3-bin
SUBDIR += netris
SUBDIR += netspades
SUBDIR += nettoe
SUBDIR += neverball
SUBDIR += newvox
SUBDIR += nextgo
SUBDIR += nexuiz
SUBDIR += nibbles
SUBDIR += nighthawk
SUBDIR += nil
SUBDIR += nimuh
SUBDIR += ninix-aya
SUBDIR += njam
SUBDIR += noegnud-addons
SUBDIR += noegnud-data
SUBDIR += noegnud-littlehack
SUBDIR += noegnud-nethack
SUBDIR += noegnud-nethack-deet
SUBDIR += noegnud-slashem
SUBDIR += nonsense
SUBDIR += npush
SUBDIR += nuclearchess
SUBDIR += numptyphysics
SUBDIR += numptyphysics-npcomplete
SUBDIR += nwndata
SUBDIR += odamex
SUBDIR += oilwar
SUBDIR += omega
SUBDIR += oneko
SUBDIR += oneko-sakura
SUBDIR += oolite
SUBDIR += oonsoo
SUBDIR += openalchemist
SUBDIR += openarena
SUBDIR += openastromenace
SUBDIR += opencity
SUBDIR += openglad
SUBDIR += openjazz
SUBDIR += openlierox
SUBDIR += openmortal
SUBDIR += openttd
SUBDIR += openyahtzee
SUBDIR += optimax
SUBDIR += orbital_eunuchs_sniper
SUBDIR += osgg
SUBDIR += outerspace
SUBDIR += p5-Acme-GuessNumber
SUBDIR += p5-Algorithm-Pair-Best
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 += palomino
SUBDIR += passage
SUBDIR += pathological
SUBDIR += pcgen
SUBDIR += pear-Games_Chess
SUBDIR += pengpong
SUBDIR += penguin-command
SUBDIR += pengupop
SUBDIR += pentix
SUBDIR += pets
SUBDIR += peg-e
SUBDIR += phalanx
SUBDIR += phpua-bf
SUBDIR += phpua-cod
SUBDIR += phpua-engine
SUBDIR += phpua-hl
SUBDIR += phpua-q3
SUBDIR += phpua-ut
SUBDIR += phpua-ut2003
SUBDIR += pinball
SUBDIR += pingus
SUBDIR += pioneers
SUBDIR += pipenightdreams
SUBDIR += pipepanic
SUBDIR += planeshift
SUBDIR += plee-the-bear
SUBDIR += plonx
SUBDIR += plutocracy
SUBDIR += pmars
SUBDIR += pmars-sdl
SUBDIR += poker-engine
SUBDIR += poker-eval
SUBDIR += pokerth
SUBDIR += polypuzzle
SUBDIR += pongix
SUBDIR += pouetchess
SUBDIR += powermanga
SUBDIR += powwow
SUBDIR += ppracer
SUBDIR += prboom
SUBDIR += primateplunge
SUBDIR += ptkei
SUBDIR += ptools
SUBDIR += pushover
SUBDIR += pvpgn
SUBDIR += py-anki
SUBDIR += py-mnemosyne
SUBDIR += py-poker-eval
SUBDIR += py-pychess
SUBDIR += py-sgflib
SUBDIR += py-sgfsummary
SUBDIR += py-ski
SUBDIR += pyawale
SUBDIR += pyching
SUBDIR += pydance
SUBDIR += pykawari
SUBDIR += pysol
SUBDIR += pysol-cardsets
SUBDIR += pysol-music
SUBDIR += pysycache
SUBDIR += pysycache-lang
SUBDIR += pysycache-themes
SUBDIR += pythonchess
SUBDIR += q15
SUBDIR += q2p
SUBDIR += q2pro
SUBDIR += q3cellshading
SUBDIR += qcc
SUBDIR += qccx
SUBDIR += qgo
SUBDIR += qix
SUBDIR += qkmj
SUBDIR += qmars
SUBDIR += qnetchess
SUBDIR += qnetwalk
SUBDIR += qonk
SUBDIR += qstat
SUBDIR += quackle
SUBDIR += quake-data
SUBDIR += quake-dpmod
SUBDIR += quake-extras
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 += quake2-zaero
SUBDIR += quake2forge
SUBDIR += quake2lnx
SUBDIR += quake2max
SUBDIR += quake3
SUBDIR += quake3-data
SUBDIR += quake3-excessive
SUBDIR += quake3-freezetag
SUBDIR += quake3-osp
SUBDIR += quake3-ra3
SUBDIR += quake3-rq3
SUBDIR += quake3-ut
SUBDIR += quake3-wfa
SUBDIR += quakeforge
SUBDIR += quantumminigolf
SUBDIR += quaqut
SUBDIR += qudos
SUBDIR += quetoo
SUBDIR += quit
SUBDIR += qwdtools
SUBDIR += r1q2
SUBDIR += race
SUBDIR += reminiscence
SUBDIR += rfksay
SUBDIR += ri-li
SUBDIR += robocode
SUBDIR += robotfindskitten
SUBDIR += rockdodger
SUBDIR += rocksndiamonds
SUBDIR += rottdc
SUBDIR += rt2-demo
SUBDIR += rtb
SUBDIR += rtcw
SUBDIR += rubix
SUBDIR += ruby-exmars
SUBDIR += sampsvr
SUBDIR += sarien
SUBDIR += sauerbraten
SUBDIR += scare
SUBDIR += scid
SUBDIR += scorched3d
SUBDIR += scourge
SUBDIR += scourge-data
SUBDIR += scramble
SUBDIR += scummvm
SUBDIR += scummvm-tools
SUBDIR += sdb
SUBDIR += sdl-ball
SUBDIR += sdlCC
SUBDIR += sdlquake2
SUBDIR += sdlroids
SUBDIR += sdlsand
SUBDIR += seabattle
SUBDIR += seahaven
SUBDIR += secretmaryochronicles
SUBDIR += secretmaryochronicles-music
SUBDIR += senken
SUBDIR += senso
SUBDIR += sex
SUBDIR += sfbol
SUBDIR += shaaft
SUBDIR += shootingstar
SUBDIR += simplevaders
SUBDIR += simutrans
SUBDIR += six
SUBDIR += sjeng
SUBDIR += sl
SUBDIR += slashem-tty
SUBDIR += slige
SUBDIR += slump
SUBDIR += slune
SUBDIR += smiley
SUBDIR += sokoban
SUBDIR += sol
SUBDIR += solarconquest
SUBDIR += solarwolf
SUBDIR += sopwith
SUBDIR += spacearyarya
SUBDIR += spacehulk
SUBDIR += speak
SUBDIR += species
SUBDIR += spellcast
SUBDIR += speyes
SUBDIR += spicetrade
SUBDIR += spider
SUBDIR += spring
SUBDIR += starlanes
SUBDIR += stepbill
SUBDIR += stepmania-devel
SUBDIR += stonesoup
SUBDIR += stormbaancoureur
SUBDIR += stransball2
SUBDIR += stratagus
SUBDIR += stroq
SUBDIR += stvef-paks
SUBDIR += stvef-server
SUBDIR += sudoku
SUBDIR += sudoku_solver
SUBDIR += sudsol
SUBDIR += super_methane_brothers
SUBDIR += supertux
SUBDIR += sxsame
SUBDIR += tads
SUBDIR += taipan
SUBDIR += tank
SUBDIR += taxipilot
SUBDIR += tbclock
SUBDIR += tecnoballz
SUBDIR += teeworlds
SUBDIR += teg
SUBDIR += tenebrae
SUBDIR += tetrinet
SUBDIR += tetrinet-x
SUBDIR += tetrons
SUBDIR += tetzle
SUBDIR += textmaze
SUBDIR += thevalley
SUBDIR += thudboard
SUBDIR += tileworld
SUBDIR += timeseal
SUBDIR += tinymux
SUBDIR += tkmoo
SUBDIR += tksol
SUBDIR += tmw
SUBDIR += tnl
SUBDIR += tomatoes
SUBDIR += tome
SUBDIR += toppler
SUBDIR += torcs
SUBDIR += tornado
SUBDIR += torrent
SUBDIR += toycars
SUBDIR += trackballs
SUBDIR += tractorgen
SUBDIR += traindirector
SUBDIR += tremor
SUBDIR += tremulous
SUBDIR += trigger
SUBDIR += trimines
SUBDIR += trojka
SUBDIR += trophy
SUBDIR += tsito
SUBDIR += tt
SUBDIR += ttraffic
SUBDIR += ttt
SUBDIR += tux-aqfh
SUBDIR += tuxkart
SUBDIR += tuxmath
SUBDIR += tuxpaint
SUBDIR += tuxpaint-config
SUBDIR += tuxpaint-fonts
SUBDIR += tuxpaint-stamps
SUBDIR += tuxpuck
SUBDIR += tuxracer
SUBDIR += tuxracer_golf
SUBDIR += tuxtype
SUBDIR += tvp
SUBDIR += twitch
SUBDIR += tycho
SUBDIR += typespeed
SUBDIR += tyrquake
SUBDIR += ufoai
SUBDIR += ufoai-data
SUBDIR += uhexen
SUBDIR += uhexen2
SUBDIR += uhexen2-extras
SUBDIR += ultimatestunts
SUBDIR += umark
SUBDIR += untahris
SUBDIR += uox3
SUBDIR += uqm
SUBDIR += urbanterror-data
SUBDIR += utserver
SUBDIR += vamos
SUBDIR += vavoom
SUBDIR += vavoom-extras
SUBDIR += vdrift
SUBDIR += vdrift-data
SUBDIR += vectoroids
SUBDIR += vegastrike
SUBDIR += vegastrike-data
SUBDIR += vitetris
SUBDIR += volleyball
SUBDIR += vor
SUBDIR += vultures-claw
SUBDIR += vultures-eye
SUBDIR += wanderer
SUBDIR += wargus
SUBDIR += warsow
SUBDIR += warsow-data
SUBDIR += warzone2100
SUBDIR += wesnoth
SUBDIR += wesnoth-devel
SUBDIR += whichwayisup
SUBDIR += widelands
SUBDIR += windstille
SUBDIR += wmeyes
SUBDIR += wmfortune
SUBDIR += wmminichess
SUBDIR += wmpuzzle
SUBDIR += wmqstat
SUBDIR += wmquake
SUBDIR += wmshuffle
SUBDIR += wmtictactoe
SUBDIR += wmtimebomb
SUBDIR += wolf3d
SUBDIR += wolfpack
SUBDIR += wop
SUBDIR += wordplay
SUBDIR += worldofpadman
SUBDIR += wormux
SUBDIR += wormux-devel
SUBDIR += wrogue
SUBDIR += wtf
SUBDIR += xabacus
SUBDIR += xarchon
SUBDIR += xasteroids
SUBDIR += xataxx
SUBDIR += xbaby
SUBDIR += xbat
SUBDIR += xbattle
SUBDIR += xbill
SUBDIR += xbl
SUBDIR += xblackjack
SUBDIR += xblast
SUBDIR += xblood
SUBDIR += xbloody
SUBDIR += xboard
SUBDIR += xboing
SUBDIR += xbomb
SUBDIR += xbomber
SUBDIR += xbubble
SUBDIR += xchadance
SUBDIR += xcheckers
SUBDIR += xchomp
SUBDIR += xcogitate
SUBDIR += xconq
SUBDIR += xcowsay
SUBDIR += xcubes
SUBDIR += xdeblock
SUBDIR += xdemineur
SUBDIR += xdesktopwaves
SUBDIR += xdigger
SUBDIR += xdino
SUBDIR += xevil
SUBDIR += xeyesplus
SUBDIR += xfireworks
SUBDIR += xflame
SUBDIR += xfrisk
SUBDIR += xgalaga
SUBDIR += xgame
SUBDIR += xgammon
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 += xkobo
SUBDIR += xkoules
SUBDIR += xlaby
SUBDIR += xlife
SUBDIR += xlines
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 += xonix
SUBDIR += xosmulti
SUBDIR += xpacman
SUBDIR += xpanex
SUBDIR += xpat2
SUBDIR += xpenguins
SUBDIR += xphotohunter
SUBDIR += xpilot
SUBDIR += xpilot-ng-client
SUBDIR += xpilot-ng-server
SUBDIR += xpipeman
SUBDIR += xpired
SUBDIR += xpuyopuyo
SUBDIR += xpuzzletama
SUBDIR += xpyraminx
SUBDIR += xqf
SUBDIR += xquarto
SUBDIR += xracer
SUBDIR += xrally
SUBDIR += xrick
SUBDIR += xripple
SUBDIR += xrisk
SUBDIR += xroach
SUBDIR += xroads
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 += xtic
SUBDIR += xtriangles
SUBDIR += xtris
SUBDIR += xtrojka
SUBDIR += xtron
SUBDIR += xtruco
SUBDIR += xtux
SUBDIR += xvier
SUBDIR += xvmahjongg
SUBDIR += xvmines
SUBDIR += xwelltris
SUBDIR += xword
SUBDIR += xwordpy
SUBDIR += xworm
SUBDIR += xye
SUBDIR += xzip
SUBDIR += yace
SUBDIR += yadex
SUBDIR += yahtzee
SUBDIR += yamsweeper
SUBDIR += zangband
SUBDIR += zatacka
SUBDIR += zephulor
SUBDIR += znibbles
SUBDIR += zoom
SUBDIR += ztrack
.include <bsd.port.subdir.mk>
|