summaryrefslogtreecommitdiff
blob: 7850021b6865f5167f1a24dadcc6c9f52290e291 (plain)
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
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
<?xml version='1.0' encoding="UTF-8"?>
<?xml-stylesheet href="/xsl/guide.xsl" type="text/xsl"?>
<!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
<guide type="newsletter">
<title>Gentoo Weekly Newsletter</title>
<subtitle>15 Settembre 2003</subtitle>
<abstract>Questa è la Gentoo Weekly Newsletter della settimana a partire dal 15 Settembre 2003.</abstract>
<summary>Iniziato il port ufficiale di Gentoo a IA64</summary>
<version>Anno 2, Numero 37</version>
<date>15 Settembre 2003</date>
<author title="Editor">
    <mail link="carlos@gentoo.org">Yuji Carlos Kosugi</mail>
</author>
<author title="Contributor">
    <mail link="aja@clanarmstrong.com">AJ Armstrong</mail>
</author>
<author title="Contributor">
	<mail link="bdowney@briandowney.net">Brian Downey</mail>
</author>
<author title="Contributor">
	<mail link="cal@calevans.com">Cal Evans</mail>
</author>
<author title="Contributor">
	<mail link="gubbs@fudo.org">Chris Gavin</mail>
</author>
<author title="Contributor">
	<mail link="cold_flame@email.com">Luke Giuliani</mail>
</author>
<author title="Contributor">
	<mail link="shawn.jonnet@verizon.net">Shawn Jonnet</mail>
</author>
<author title="Contributor">
	<mail link="citizen428@gentoo.org">Michael Kohl</mail>
</author>
<author title="Contributor">
	<mail link="klieber@gentoo.org">Kurt Lieber</mail>
</author>
<author title="Contributor">
    <mail link="rcm@sasaska.net">Rafael Cordones Marcos</mail>
</author>
<author title="Contributor">
    <mail link="david@phrixus.net">David Narayan</mail>
</author>
<author title="Contributor">
	<mail link="gerrynjr@gentoo.org">Gerald J Normandin Jr.</mail>
</author>
<author title="Contributor">
    <mail link="plate@gentoo.org">Ulrich Plate</mail>
</author>
<author title="Dutch Translation">
        <mail link="matje@lanzone.be">Mathy Vanvoorden</mail>
</author>
<author title="Dutch Translation">
        <mail link="Hendrik.Eeckhaut@UGent.be">Hendrik Eeckhaut</mail>
</author>
<author title="Dutch Translation">
        <mail link="sephiroth@quicknet.nl">Jorn Eilander</mail>
</author>
<author title="Dutch Translation">
        <mail link="bernieke@bernieke.com">Bernard Kerckenaere</mail>
</author>
<author title="Dutch Translation">
        <mail link="peter@daborg.nl">Peter ter Borg</mail>
</author>
<author title="Dutch Translation">
        <mail link="linux@sejo.be">Jochen Maes</mail>
</author>
<author title="Dutch Translation">
        <mail link="rgoessen@home.nl">Roderick Goessen</mail>
</author>
<author title="Dutch Translation">
        <mail link="gerard@steelo.net">Gerard van den Berg</mail>
</author>
<author title="French Translation">
    <mail link="mat@frheaven.com">Matthieu Montaudouin</mail>
</author>
<author title="French Translation">
    <mail link="riverdale@linuxmail.org">Martin Prieto</mail>
</author>
<author title="French Translation">
    <mail link="cabec2@pegase.net">Antoine Raillon</mail>
</author>
<author title="French Translation">
    <mail link="seb@cine7.net">Sebastien Cevey</mail>
</author>
<author title="French Translation">
    <mail link="mabouya@petitefleure.org">Jean-Christophe Choisy</mail>
</author>
<author title="German Translation">
	<mail link="madeagle@gentoo.org">Steffen Lassahn</mail>
</author>
<author title="German Translation">
	<mail link="haim@gentoo.org">Matthias F. Brandstetter</mail>
</author>
<author title="German Translation">
	<mail link="lordvan@gentoo.org">Thomas Raschbacher</mail>
</author>
<author title="German Translation">
	<mail link="yanestra@gentoo.org">Klaus-J. Wolf</mail>
</author>
<author title="Italian Translation">
	<mail link="mush@monrif.net">Marco Mascherpa</mail>
</author>
<author title="Italian Translation">
	<mail link="paper@tiscali.it">Claudio Merloni</mail>
</author>
<author title="Italian Translation">
	<mail link="bsolar@bluewin.ch">Christian Apolloni</mail>
</author>
<author title="Italian Translation">
	<mail link="stefano.lucidi@gentoo-italia.org">Stefano Lucidi</mail>
</author>
<author title="Japanese Translation">
	<mail link="hagi@p1d.com">Yoshiaki Hagihara</mail>
</author>
<author title="Japanese Translation">
	<mail link="katuyuki@siva.ddo.jp">Katsuyuki Konno</mail>
</author>
<author title="Japanese Translation">
	<mail link="carlos@gentoo.org">Yuji Carlos Kosugi</mail>
</author>
<author title="Japanese Translation">
	<mail link="yasunori@mail.portland.co.uk">Yasunori Fukudome</mail>
</author>
<author title="Japanese Translation">
    <mail link="088@t.email.ne.jp">Takashi Ota</mail>
</author>
<author title="Polish Translation">
    <mail link="sototh@gts.pl">Radoslaw Janeczko</mail>
</author>
<author title="Polish Translation">
    <mail link="lucass.home@pf.pl">Lukasz Strzygowski</mail>
</author>
<author title="Polish Translation">
    <mail link="veng@wp.pl">Michal Drobek</mail>
</author>
<author title="Polish Translation">
    <mail link="apo@cyberpunk.net.pulawy.pl">Adam Lyjak</mail>
</author>
<author title="Polish Translation">
    <mail link="cthulhu@emusearch.net">Krzysztof Klimonda</mail>
</author>
<author title="Portuguese (Brazil) Translation">
	<mail link="bohlke@inf.ufrgs.br">Atila "Jedi" Bohlke Vasconcelos</mail>
</author>
<author title="Portuguese (Brazil) Translation">
	<mail link="dudu@datavibe.net">Eduardo Belloti</mail>
</author>
<author title="Portuguese (Brazil) Translation">
	<mail link="joaoraf@rudah.com.br">Jo&#227;o Rafael Moraes Nicola</mail>
</author>
<author title="Portuguese (Brazil) Translation">
	<mail link="mgazambuja@terra.com.br">Marcelo Gon&#231;alves de Azambuja</mail>
</author>
<author title="Portuguese (Brazil) Translation">
	<mail link="angusy@gentoobr.org">Otavio Rodolfo Piske</mail>
</author>
<author title="Portuguese (Brazil) Translation">
	<mail link="natunobilis@gentoobr.org">Pablo N. Hess -- NatuNobilis</mail>
</author>
<author title="Portuguese (Brazil) Translation">
	<mail link="pzilla@yawl.com.br">Pedro de Medeiros</mail>
</author>
<author title="Portuguese (Brazil) Translation">
	<mail link="venturasbarbeiro@ig.com.br">Ventura Barbeiro</mail>
</author>
<author title="Portuguese (Portugal) Translation">
<mail link="blueroom@digitalmente.net">Bruno Ferreira</mail>
</author>
<author title="Portuguese (Portugal) Translation">
	<mail link="humpback@felisberto.net">Gustavo Felisberto</mail>
</author>
<author title="Portuguese (Portugal) Translation">
	<mail link="jose_costa@netcabo.pt">Jos&#233; Costa</mail>
</author>
<author title="Portuguese (Portugal) Translation">
	<mail link="metalgodin@linuxmail.org">Luis Medina</mail>
</author>
<author title="Portuguese (Portugal) Translation">
	<mail link="rjlouro@rjlouro.org">Ricardo Loureiro</mail>
</author>
<author title="Russian Translator">
       <mail link="gals_home@list.ru">Sergey Galkin</mail>
</author>
<author title="Russian Translator">
       <mail link="svyatogor@gentoo.org">Sergey Kuleshov</mail>
</author>
<author title="Russian Translator">
       <mail link="asp13@mail.ru">Alex Spirin</mail>
</author>
<author title="Russian Translator">
       <mail link="dimsuz@mail.ru">Dmitry Suzdalev</mail>
</author>
<author title="Russian Translator">
       <mail link="mazurous@mail.ru">Anton Vorovatov</mail>
</author>
<author title="Russian Translator">
       <mail link="dzaletov@rambler.ru">Denis Zaletov</mail>
</author>
<author title="Spanish Translation">
     <mail link="lanark@lanark.com.ar">Lanark</mail>
</author>
<author title="Spanish Translation">
     <mail link="ferdy@ferdyx.org">Fernando J. Pereda</mail>
</author>
<author title="Spanish Translation">
     <mail link="lpeinado@uoc.edu">Lluis Peinado Cifuentes</mail>
</author>
<author title="Spanish Translation">
     <mail link="ZEPHRYNXIRDAL@telefonica.net">Zephryn Xirdal T</mail>
</author>
<author title="Spanish Translation">
     <mail link="katossi@usuarios.retecal.es">Guillermo Juarez</mail>
</author>
<author title="Spanish Translation">
     <mail link="correo@sevein.com">Jes&#250;s Garc&#237;a Crespo</mail>
</author>
<author title="Spanish Translation">
     <mail link="carlos@castillobueno.com">Carlos Castillo</mail>
</author>
<author title="Spanish Translation">
     <mail link="julio@castillobueno.com">Julio Castillo</mail>
</author>
<author title="Spanish Translation">
     <mail link="s3r@fibertel.com.ar">Sergio G&#243;mez</mail>
</author>
<author title="Turkish Translation">
        <mail link="aycan@core.gen.tr">Aycan Irican</mail>
</author>
<author title="Turkish Translation">
        <mail link="bugra@myrealbox.com">Bugra Cakir</mail>
</author>
<author title="Turkish Translation">
        <mail link="cagils@biznet.com.tr">Cagil Seker</mail>
</author>
<author title="Turkish Translation">
        <mail link="emre@core.gen.tr">Emre Kazdagli</mail>
</author>
<author title="Turkish Translation">
        <mail link="evrim@core.gen.tr">Evrim Ulu</mail>
</author>
<author title="Turkish Translation">
        <mail link="gurcell@core.gen.tr">Gursel Kaynak</mail>
</author>
<chapter>
	<title>Gentoo News</title>
	<section>
		<title>Indice</title>
		<body>
			<ul>
				<li><uri link="#doc_chap1_sect2">Iniziato il port ufficiale di Gentoo a IA64</uri></li>
			</ul>
		</body>
	</section>
<section>
	<title>Iniziato il port ufficiale di Gentoo a IA64</title>
	<body>
	<p>
	In questa settimana <mail link="drobbins@gentoo.org">Daniel Robbins</mail>
	<uri link="http://article.gmane.org/gmane.linux.gentoo.devel/12115">ha annunciato</uri> su gentoo-dev che HP ha donato
	un sistema dual CPU Itanium 2 a Gentoo e ha illustrato i passi del progetto di port che consiste brevemente nel far funzionare
	Portage su Debian/IA64 e poi convertirlo ad una installazione nativa Gentoo, infine espandere il supporto a IA64 nei pacchetti
	di Portage. Ciò che nessuno si sarebbe mai aspettato è che qualcuno
	<uri link="http://article.gmane.org/gmane.linux.gentoo.devel/12167">saltasse fuori</uri> con un pacchetto stage1 funzionante
	e patch per tutte le ebuild necessarie a costruire un sistema di base. La macchina che è stata donata fa parte adesso della
	LAN di Daniel Robbins e utilizza il port fornito da splite, il misterioso benefattore. Se avete esperienza con IA64 e desiderate
	prestare aiuto in qualche modo, contattate
	<mail link="seemant@gentoo.org">Seemant Kulleen</mail> and includete <mail link="drobbins@gentoo.org">Daniel Robbins</mail>
	in copia per conoscenza. Questo port verrà probabilmente realizzato in breve visto che molti sviluppatori vi sono interessati
	al di la di questo ottimo inizio; continuate a leggere le prossime GWn per ulteriori aggiornamenti.
	</p>
	</body>
</section>
</chapter>
<chapter>
<title>Gentoo Security</title>
<section>
<title>Indice</title>
<body>
	<p><b>Non ci sono stati annunci di vulnerabilità nell'ultima settimana</b></p>
</body>
</section>


<section>
<title>Ultime segnalazioni di vulnerabilità</title>
<body>
     <p>
     Sono state segnalate le seguenti vulnerabilità nell'ultima settimana:
     </p>
     <ul>
          <li><uri link="http://bugs.gentoo.org/show_bug.cgi?id=28407">pam: pam_console lascia a tutti gli utenti controllo completo
	  delle seriali!</uri></li>
          <li><uri link="http://bugs.gentoo.org/show_bug.cgi?id=28394">Buffer overflow in MySQL</uri></li>
          <li><uri link="http://bugs.gentoo.org/show_bug.cgi?id=27984">net-mail/exim</uri></li>
     </ul>
</body>
</section>

</chapter>
<chapter>
	<title>Racconti degli utenti</title>
	<body>
	<p>
	La rubrica è in pausa questa settimana. Ricordate di <mail link="gwn-feedback@gentoo.org">inviarci</mail> i vostri racconti
	riguardanti Gentoo in modo che le possiamo pubblicare qui.
	</p>
	</body>
</chapter>
<chapter>
<title>Lo sviluppatore della settimana</title>
<body>
<p class="secthead">Adrian Almenar</p>

<figure link="http://www.gentoo.org/images/gwn/20030915_strider.jpg"
short="Adrian Almenar" caption="Adrian Almenar" />

<p>Questa settimana, ci occupiamo di <mail link="strider@gentoo.org"
>Adrian Almenar</mail> (strider).  Adrian lavora principalmente con il
team java di Gentoo, correggendo bug e mantenendo i pacchetti in dev-java/*.
In particolare lavora sui pacchetti dei JDK e java-config, oltre che
 xalan-j, xerces-j, ant, maven e jikes. Quello in Gentoo è il suo primo
ruolo di rilievo in un progetto open-source, ma ha già collaborato nella
traduzione di materiale di Jakarta-Tomcat. Il lavoro di cui è più fiero è
l'aver dato inizio al porting di java-config in Python, un impegno completato
poi da <mail link="tberman@gentoo.org"
>Todd Berman</mail> e <mail link="aether@gentoo.org"
>Jason Mobarak</mail>.
</p>
<p>
Adrian vive e lavora a Caracas, Venezuela, dove il clima incoraggia la
passione per la birra fresca. E' impiegato come sviluppatore java in una
compagnia di mobile Internet services, dove il 90% dei server di produzione
sono ora Gentoo-based.  Di sera, studia Scienze Economica alla Universidad Central
de Venezuela, dopo aver studiato Computer Science per qualche anno. Nonostante
il suo lavoro diurno, e i weekend passati a lavorare su Gentoo, riesce ancora
a passare un po' di tempo con la sua ragazza, Stella. Dice anche di riuscire a trovare
il tempo per coltivare la sua passione per Ham radio, elettronica e telecomunicazioni
oltre a più prosaici passatempi, come la lettura, i film e uscire con gli amici.
</p>
<p>
Adrian in ufficio preferisce usare XFCE4 come Window Manager, ma a casa usa KDE
per venire incontro a sua mamma (sì, sua mamma usa Gentoo). Per gestire i suoi 5 account
di posta usa Sylpheed-claws, mentre altri suoi programmi preferiti sono
Mozilla-Firebird, Gaim, XMMS, J-Pilot, GKrellm, vim e kvim. I suoi computer sono un Pentium IV 1.8 GHz
(768 Mb, Geforce
2) per lo sviluppo e un Athlon 800 MHz (128 Mb, TNT2) usato come server di posta, firewall,
e computer per sua mamma.
</p>
<p>
Adrian ha iniziato a usare Linux con una Slackware nel 1996, quando ne ebbere bisogno
al lavoro per sviluppo Web e programmazione Java. Ha sentito parlare di Gentoo nell'Aprile
del 2002 e ha iniziato ad usarla nel Giugno di quell'anno, quando era disponibile la versione
1.2. Dopo essersi reso conto di quanto fosse adatta alle sue necessità, ha iniziato ad usarla anche al lavoro,
al punto da assistere alla migrazione a Gentoo di parecchi computer della sua società. Ci ha 
proposto una citazione dal film <e>Hackers</e>, che secondo lui descrive bene il ruolo di Linux
nel mercato dei sistemi operativi: <e>"Mess with the best, die like the rest."</e>
</p>
</body>
</chapter>
<chapter>
<title>Sentito nella comunità</title>
<section>
<title>Web Forums</title>
<body>
<p><b>La corsa al G5</b></p>
<p>Quando <uri link="http://forums.gentoo.org/profile.php?mode=viewprofile&amp;u=17436">oubipaws</uri> ha dichiarato di essere riuscito a far girare Gentoo sul suo Apple Macintosh G5, l'elite degli sviluppatori PPC di Gentoo è giunta in massa alla thread per vedere cosa stava succedendo. Tristemente, lo scietticismo ha prevalso alla fine, ma almeno l'eccitazione era reale... e perfino gli sviluppatori più "fool-proof" sono decisamente contenti di vedere così tanta gente che cerca di far andare Gentoo Linux sulle loro macchine G5: </p>
<ul><li><uri link="http://forums.gentoo.org/viewtopic.php?t=79513">Testing the G5, part 1</uri></li>
</ul>
<p><b>Dalla Danimarca con amore</b></p>
<p>Non tutti cercano solo quindici minuti di gloria... Piuttosto di spingere le proprie personalità al fronte, alcuni sono molto abili nell'usare il Forum come canale per portare il loro lavoro allo scoperto. Con 20,000 regolari nella board e una udienza piuttosto gratificante, ciò è spesso salutato con ovazioni e pollici levati dagli utenti del Forum. Questa settimana l'esempio più evidente di uno sviluppo non ufficiale ancorato ad una thread del Forum viene da <uri link="http://forums.gentoo.org/profile.php?mode=viewprofile&amp;u=1402">Lovechild</uri>. Leggenda del Forum e noto contribuiente a <uri link="http://www.breakmygentoo.net">Breakmygentoo</uri> ora ha perfino il suo set di patch per il kernel disponibile, e l'ultima settimana ha aperto bottega in una thread che è diventata seconda casa per una felice accozzaglia di guerriglieri per la desktop performance:</p>
<ul><li><uri link="http://forums.gentoo.org/viewtopic.php?t=81758">Love-sources - get them before they go obsolete</uri></li></ul>
</body>
</section>
<section>
<title>gentoo-user</title>
<body>
<p>
<b>Rapidi consigli per utenti dial-up</b>
</p>
<p>
Gli utenti broadband non dovrebbero avere tutto il divertimento. Un membro della list gentoo-user voleva sapere quali consigli e trucchi fossero disponibili per gli utenti dial-up, e ne sono stati postati di buoni
<uri link="http://news.gmane.org/onethread.php?group=gmane.linux.gentoo.user&amp;root=%3C20030910102034.91276.qmail%40web42006.mail.yahoo.com%3E">
leggete
</uri>
qui.
</p>
</body>
</section>
</chapter>
<chapter>
<title>Gentoo International</title>
<body>
<p><b>Germania: "Practical Linux" Show l' 11 Ottobre in Giessen</b></p>
<p>Benjamin Judas, aka <uri link="http://forums.gentoo.org/profile.php?mode=viewprofile&amp;u=7570">Beejay</uri>, un gentooista che vive ad appena mezz'ora dalla conferenza, ha annunciato la partecipazione di Gentoo nel <uri link="http://www.practical-linux.de/">Practical Linux Day</uri> di quest'anno, un evento annuale al <uri link="http://www.fh-giessen.de">Fachhochschule Giessen</uri> (University of Applied Science), situato circa 80 km a nord di Frankfurt/Main. Beejay offrirà una presentazione durante la sessione principale, e uno stand di Gentoo sarà senza dubbio gestito dai soliti sospetti. Girano voci di una fornitura di LiveCD appena sfornati in viaggio per essere venduti allo show. Dite agli altri ragazzi che state arrivando nella <uri link="http://forums.gentoo.org/viewtopic.php?t=81408">thread del forum corrispondente</uri> (in tedesco).</p>
</body>
</chapter>
<chapter>
<title>Portage Watch</title>
<section>
<title>I seguenti pacchetti stabili sono stati aggiornati o aggiunti a portage nelle ultime due settimane:</title>
<body>
<ul>
<li>app-admin/ccze: <uri link="http://bonehunter.rulez.org/CCZE.html">Un logfile flessibile e veloce  a colori</uri></li>
<li>app-admin/dosfstools: <uri link="ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/">tool x il dos filesystem </uri></li>
<li>app-admin/gkrellm: <uri link="http://www.gkrellm.net/">Singolo processo per vari monito di sistema</uri></li>
<li>app-admin/longrun: <uri link="http://freshmeat.net/projects/longrun/">Un' utility per controllare i processori Transmeta's Crusoe</uri></li>
<li>app-admin/sysklogd: <uri link="http://www.infodrom.org/projects/sysklogd/">Standard log daemons</uri></li>
<li>app-admin/watchdog: <uri link="http://www.ibiblio.org/pub/Linux/system/daemons/watchdog/">un software watchdog.</uri></li>
<li>app-admin/webmin: <uri link="http://www.webmin.com/">Webmin, un'interfaccia di amministrazione di sistema basata sul web</uri></li>
<li>app-admin/zope-config: A Gentoo Zope multi-Instance configure tool</li>
<li>app-admin/zprod-manager: <uri link="http://www.gentoo.org/">Tool di selezione per i prodotti Gentoo Zope Product</uri></li>
<li>app-arch/dump: <uri link="http://dump.sourceforge.net">backup utility per il Dump/restore di ext2fs </uri></li>
<li>app-arch/file-roller: <uri link="http://fileroller.sourceforge.net/">manager di archivi per GNOME</uri></li>
<li>app-arch/lzop: <uri link="http://www.oberhumer.com/opensource/lzop/">Utility per una veloce compressione/decompressione </uri></li>
<li>app-benchmarks/bonnie: <uri link="http://www.textuality.com/bonnie/">Test delle performance del I/O del Filesystem usando chimate alle librerie  C standard.</uri></li>
<li>app-cdr/cdrtools: <uri link="http://www.fokus.gmd.de/research/cc/glone/employees/joerg.schilling/private/cdrecord.html">Collezione di tool per i drive CDR, incluso cdrecord.</uri></li>
<li>app-cdr/k3b: <uri link="http://k3b.sourceforge.net/">K3b, KDE software di scrittura cd</uri></li>
<li>app-crypt/md5deep: <uri link="http://md5deep.sourceforge.net">espande il programma md5sum con opzione ricorsive di comparazione</uri></li>
<li>app-dicts/canna-cannadic: <uri link="http://cannadic.oucrc.org/">Japanese dictionary as a supplement/replacemnt to the dictionaries distributed with Canna3.5b2</uri></li>
<li>app-dicts/dictd-jargon: <uri link="http://www.dict.org">Jargon lexicon</uri></li>
<li>app-dicts/ispell-da: <uri link="http://da.speling.org/">Dizionario danese per ispell</uri></li>
<li>app-dicts/ispell-fi: <uri link="http://ispell-fi.sourceforge.net/">Dizionari finlandese per ispell</uri></li>
<li>app-dicts/ispell-ga: <uri link="http://borel.slu.edu/ispell/">Dizionario irlandese per ispell</uri></li>
<li>app-dicts/pydict: <uri link="http://sourceforge.net/projects/pydict">Chinese-English / English-Chinese dictionary</uri></li>
<li>app-dicts/stardict: <uri link="http://stardict.sourceforge.net/ http://cosoft.org.cn/projects/stardict/">A GNOME2 international dictionary supporting fuzzy and glob style matching</uri></li>
<li>app-doc/doxygen: <uri link="http://www.doxygen.org">Doxygen èun sistema di socumentazione per for C++, C, Java, IDL (Corba, Microsoft, and KDE-DCOP flavors) and to some extent PHP and C#.</uri></li>
<li>app-doc/linux-gazette: <uri link="http://www.linuxgazette.com/">Sharing ideas and discoveries and Making Linux just a little more fun</uri></li>
<li>app-doc/linux-gazette-all: <uri link="http://www.linuxgazette.com/">Linux Gazette - all issues</uri></li>
<li>app-doc/linux-gazette-base: <uri link="http://www.linuxgazette.com/">Linux Gazette - common files</uri></li>
<li>app-doc/phrack: <uri link="http://www.phrack.org/">...a Hacker magazine by the community, for the community....</uri></li>
<li>app-editors/emacs-cvs: <uri link="http://www.gnu.org/software/emacs">Emacs is the extensible, customizable, self-documenting real-time display editor.</uri></li>
<li>app-editors/kvim: <uri link="http://www.freehackers.org/${PN}">KDE editor bastato su vim</uri></li>
<li>app-editors/teco: <uri link="http://www.ibiblio.org/pub/linux/apps/editors/tty/ http://www.ibiblio.org/pub/academic/computer-science/history/pdp-11/teco">Classic TECO editor, Predecessor to EMACS.</uri></li>
<li>app-editors/xemacs-packages-sumo: <uri link="http://www.xemacs.org">The SUMO bundle of ELISP packages for Xemacs</uri></li>
<li>app-emacs/apel: <uri link="http://www.m17n.org/">A Portable Emacs Library is a library for making portable Emacs Lisp programs.</uri></li>
<li>app-emacs/auctex: <uri link="http://www.gnu.org/software/auctex">AUC TeX is an extensible package that supports writing and formatting TeX files</uri></li>
<li>app-emacs/chess: <uri link="http://emacs-chess.sourceforge.net/">A chess client and library for Emacs</uri></li>
<li>app-emacs/dictionary: <uri link="http://www.myrkr.in-berlin.de/dictionary/index.html">Emacs package for talking to a dictionary server</uri></li>
<li>app-emacs/ecb: <uri link="http://home.swipnet.se/mayhem/ecb.html">ECB is source code browser for Emacs. It is a global minor-mode which displays a couple of windows that can be used to browse directories, files and methods. It supports method parsing for Java, C, C++, Elisp etc.</uri></li>
<li>app-emacs/elib: <uri link="http://jdee.sunsite.dk">The Emacs Lisp Library</uri></li>
<li>app-emacs/emacs-w3m: <uri link="http://emacs-w3m.namazu.org">emacs-w3m is interface program of w3m on Emacs.</uri></li>
<li>app-emacs/emacs-wiki: <uri link="http://repose.cx/emacs/wiki/">Maintain a local Wiki using Emacs-friendly markup</uri></li>
<li>app-emacs/flim: <uri link="http://cvs.m17n.org/elisp/FLIM/">A library to provide basic features about message representation or encoding -- FLIM</uri></li>
<li>app-emacs/ilisp: <uri link="http://sourceforge.net/projects/ilisp/">A comprehensive (X)Emacs interface for an inferior Common Lisp, or other Lisp based languages.</uri></li>
<li>app-emacs/limit: <uri link="http://pure.fan.gr.jp/simm/?MyWorks">LIMIT - Library about Internet Message, for IT generation</uri></li>
<li>app-emacs/mew: <uri link="http://www.mew.org/">great MIME mail reader for Emacs/XEmacs</uri></li>
<li>app-emacs/ognus: <uri link="http://www.gnus.org/">Current alpha branch of the Gnus news- and mail-reader</uri></li>
<li>app-emacs/semi: <uri link="http://cvs.m17n.org/elisp/SEMI/index.html.ja.iso-2022-jp">a library to provide MIME feature for GNU Emacs -- SEMI</uri></li>
<li>app-emacs/tamago: <uri link="http://www.m17n.org/tamago/">Emacs Backend for Sj3 Ver.2, FreeWnn, Wnn6 and Canna</uri></li>
<li>app-emacs/thumbs: <uri link="http://aroy.net/emacslisp.org/mypackages/thumbs/thumbs.el">Emacs thumbnail previewer for image files</uri></li>
<li>app-emacs/timestamp.x: <uri link="http://aroy.net/emacslisp.org/mypackages/thumbs/thumbs.el">Emacs thumbnail previewer for image files</uri></li>
<li>app-emacs/tramp: <uri link="http://savannah.nongnu.org/projects/tramp/">TRAMP is a package for editing remote files similar to ange-ftp but with rlogin, telnet and/or ssh</uri></li>
<li>app-emacs/uptimes: <uri link="http://www.davep.org/emacs/">Track and display emacs session uptimes.</uri></li>
<li>app-emacs/view-process: <uri link="http://www.emacswiki.org/cgi-bin/wiki.pl?ViewProcess">A Elisp package For viewing and operating on the process list</uri></li>
<li>app-emacs/wl: <uri link="http://www.gohome.org/wl/index.html">Wanderlust is a mail/news reader supporting IMAP4rev1 for emacsen</uri></li>
<li>app-emacs/xslide: <uri link="http://www.menteith.com/xslide/">xslide is an Emacs major mode for editing XSL stylesheets and running XSL processes.</uri></li>
<li>app-emacs/yc: <uri link="http://www.ceres.dti.ne.jp/~knak/yc.html">YC - Yet another Canna client on Emacsen.</uri></li>
<li>app-emacs/zenirc: <uri link="http://www.zenirc.org">ZenIRC is a full-featured scriptable IRC client for the EMACS text editor.</uri></li>
<li>app-emulation/winex-transgaming: <uri link="http://www.transgaming.com/">WineX is a distribution of Wine with enhanced DirectX for gaming</uri>		eerror "from: ${HOMEPAGE} (requires a Transgaming subscription)."</li>
<li>app-i18n/imhangul: <uri link="http://imhangul.kldp.net/">Gtk+-2.0 Hangul Input Modules</uri></li>
<li>app-i18n/jless-iso254: <uri link="http://www.flash.net/~marknu/less/">Jam less is an enhancement of less which supports multibyte character</uri></li>
<li>app-i18n/kinput2: <uri link="http://www.nec.co.jp/canna/">A Japanese input server which supports the XIM protocol</uri></li>
<li>app-i18n/manpages-es: <uri link="http://ditec.um.es/~piernas/manpages-es/index.html">A somewhat comprehensive collection of Linux spanish man page translations</uri></li>
<li>app-i18n/nkf: <uri link="http://sourceforge.jp/projects/nkf/">Network Kanji code conversion Filter with UTF-8/16 support</uri></li>
<li>app-i18n/skkinput: <uri link="http://sourceforge.jp/projects/skkinput2">A SKK-like Japanese input method for X11</uri></li>
<li>app-i18n/skkserv: <uri link="http://openlab.ring.gr.jp/skk/">Dictionary server for the SKK Japanese-input software</uri></li>
<li>app-i18n/timestamp.x: <uri link="http://openlab.ring.gr.jp/skk/">Dictionary server for the SKK Japanese-input software</uri></li>
<li>app-i18n/uim: <uri link="http://anthy.sourceforge.jp/">UIM is a simple, secure and flexible input method library</uri></li>
<li>app-misc/ckermit: <uri link="http://www.kermit-project.org/">C-Kermit is a combined serial and network communication software package offering a consistent, medium-independent, cross-platform approach to connection establishment, terminal sessions, file transfer, character-set translation, numeric and alphanumeric paging, and automation of communication tasks.</uri></li>
<li>app-misc/lirc: <uri link="http://www.lirc.org">LIRC is a package that allows you to decode and send infra-red</uri></li>
<li>app-misc/magicpoint: <uri link="http://www.mew.org/mgp/">an X11 based presentation tool</uri></li>
<li>app-misc/symlinks: <uri link="http://www.ibiblio.org/pub/linux/utils/file/">Symlinks scans for and fixes broken or messy symlinks</uri></li>
<li>app-misc/worker: <uri link="http://www.boomerangsworld.de/worker/">Worker Filemanager: Amiga Directory Opus 4 clone.</uri></li>
<li>app-office/dia: <uri link="http://www.gnome.org/gnome-office/dia.shtml">Diagram Creation Program</uri></li>
<li>app-office/dia2code: <uri link="http://dia2code.sourceforge.net">Convert UML diagrams produced with Dia to various source code flavours.</uri></li>
<li>app-office/gnucash: <uri link="http://www.gnucash.org/">A personal finance manager</uri></li>
<li>app-office/gnumeric: <uri link="http://www.gnome.org/gnome-office/gnumeric.shtml">Gnumeric, the GNOME Spreadsheet</uri></li>
<li>app-office/koffice: <uri link="http://www.koffice.org/">A free, integrated office suite for KDE, the K Desktop Environment.</uri></li>
<li>app-office/openoffice-bin: <uri link="http://www.openoffice.org">OpenOffice productivity suite</uri></li>
<li>app-office/qhacc: <uri link="http://qhacc.sourceforge.net">Personal Finance for QT</uri></li>
<li>app-office/scribus: <uri link="http://web2.altmuehlnet.de/fschmid/">Desktop Publishing (DTP) and Layout program for Linux.</uri></li>
<li>app-pda/gnome-pilot: <uri link="http://www.gnome.org/gnome-pilot/">Gnome Pilot apps</uri></li>
<li>app-pda/gnome-pilot-conduits: <uri link="http://www.eskil.org/gnome-pilot/">Gnome Pilot Conduits</uri></li>
<li>app-pda/jpilot: <uri link="http://jpilot.org/">Desktop Organizer Software for the Palm Pilot</uri></li>
<li>app-pda/pilot-link: <uri link="http://www.pilot-link.org/">suite of tools for moving data between a Palm device and a desktop</uri></li>
<li>app-portage/deltup: <uri link="http://deltup.sourceforge.net">Patch system for Gentoo sources.  Retains MD5 codes</uri></li>
<li>app-portage/envtest: <uri link="http://foo.bar.com/">This ebuild display the environment for an ebuild. It's for portage-testing purposes only and will _always_ fail.</uri></li>
<li>app-portage/generate-use: <uri link="http://www.lordvan.com/Projects/Linux/Gentoo/gentoolkit-gui/">A USE var generator for Gentoo Linux(gtk+2)</uri></li>
<li>app-portage/mirrorselect: <uri link="http://www.gentoo.org/">Tool to help select distfiles mirrors for Gentoo</uri></li>
<li>app-portage/ufed: <uri link="http://www.gentoo.org">Gentoo Linux USE flags editor</uri></li>
<li>app-sci/bioperl: <uri link="http://www.bioperl.org/">collection of tools for bioinformatics, genomics and life science research</uri></li>
<li>app-sci/biopython: <uri link="http://www.biopython.org">Biopython - python module for Computational Moelcular Biology</uri></li>
<li>app-sci/elph: <uri link="http://www.tigr.org/software/ELPH/index.shtml">ELPH -- general-purpose Gibbs sampler for finding motifs in a set of DNA or protein sequences</uri></li>
<li>app-sci/ginac: <uri link="http://www.ginac.de/">GiNaC : a free CAS (computer algebra system)</uri></li>
<li>app-sci/lin-seti: <uri link="http://lin-seti.sourceforge.net/">A Seti@Home cache manager, cache-compatible with Seti Driver. Can be run as system daemon.</uri></li>
<li>app-sci/modelsim: <uri link="http://www.model.com/">VHDL and mixed-VHDL/Verilog simulator</uri></li>
<li>app-sci/ncbi-tools: <uri link="http://www.ncbi.nlm.nih.gov/">NCBI toolkit including the BLAST group of programs, entrez, ddv, udv, sequin and others</uri></li>
<li>app-sci/orsa: <uri link="http://orsa.sourceforge.net/">Orbital Reconstruction, Simulation and Analysis</uri></li>
<li>app-sci/phylip: <uri link="http://evolution.genetics.washington.edu/phylip.html">PHYLIP (the PHYLogeny Inference Package) is a package of programs for inferring phylogenies (evolutionary trees)</uri></li>
<li>app-sci/qcad: <uri link="http://www.qcad.org">A 2D CAD package based upon Qt.</uri></li>
<li>app-sci/tbass: <uri link="http://www.cs.man.ac.uk/amulet/projects/balsa/">Balsa is both a framework for synthesising asynchronous hardware systems and the language for describing such systems</uri></li>
<li>app-sci/tilp: <uri link="http://tilp.sourceforge.net/">TiLP is a linking program for Texas Instruments' graphing calculators.</uri></li>
<li>app-sci/timestamp.x: <uri link="http://tilp.sourceforge.net/">TiLP is a linking program for Texas Instruments' graphing calculators.</uri></li>
<li>app-shells/bash-completion: <uri link="http://www.caliban.org/bash/index.shtml#completion">Programmable Completion for bash (includes emerge and ebuild commands).</uri></li>
<li>app-shells/ksh: <uri link="http://www.kornshell.com/">The Original Korn Shell, 1993 revision (ksh93)</uri></li>
<li>app-shells/scsh: <uri link="http://www.scsh.net/">Unix shell embedded in Scheme</uri></li>
<li>app-shells/zsh: <uri link="http://www.zsh.org/">UNIX Shell similar to the Korn shell</uri></li>
<li>app-text/a2ps: <uri link="http://www-inf.enst.fr/~demaille/a2ps/">Any to PostScript filter</uri></li>
<li>app-text/acroread: <uri link="http://www.adobe.com/products/acrobat/">Adobe's PDF reader</uri></li>
<li>app-text/dictd: <uri link="http://www.dict.org/">Dictionary Client/Server for the DICT protocol</uri></li>
<li>app-text/docbook-sgml-utils: <uri link="http://sources.redhat.com/docbook-tools/">Shell scripts to manage DocBook documents</uri></li>
<li>app-text/dvipdfmx: <uri link="http://project.ktug.or.kr/dvipdfmx/">DVI to PDF translator with multi-byte character support</uri></li>
<li>app-text/ggv: <uri link="http://www.gnome.org/">Gnome Ghostview</uri></li>
<li>app-text/gnome-spell: <uri link="http://www.gnome.org/">Gnome spellchecking component.</uri></li>
<li>app-text/gv: <uri link="http://wwwthep.physik.uni-mainz.de/~plass/gv/">standard ghostscript frontend used by programs like LyX</uri></li>
<li>app-text/ispell: <uri link="http://fmg-www.cs.ucla.edu/geoff/ispell.html">fast screen-oriented spelling checker</uri></li>
<li>app-text/jadetex: <uri link="http://jadetex.sourceforge.net/">TeX macros used by Jade TeX output.</uri></li>
<li>app-text/kbarcode: <uri link="http://www.kbarcode.net/">A KDE 3.x solution for barcode handling.</uri></li>
<li>app-text/openjade: <uri link="http://openjade.sourceforge.net">Jade is an implemetation of DSSSL - an ISO standard for formatting SGML and XML documents</uri></li>
<li>app-text/opensp: <uri link="http://openjade.sourceforge.net/">A free, object-oriented toolkit for SGML parsing and entity management</uri></li>
<li>app-text/ptex: <uri link="http://www.ascii.co.jp/pb/ptex/">The ASCII publishing TeX distribution</uri></li>
<li>app-text/sablotron: <uri link="http://www.gingerall.com/charlie-bin/get/webGA/act/sablotron.act">An XSLT Parser in C++</uri></li>
<li>app-text/sgml-common: <uri link="http://www.iso.ch/cate/3524030.html">Base ISO character entities and utilities for SGML</uri></li>
<li>app-text/tetex: <uri link="http://tug.org/teTeX/">a complete TeX distribution</uri></li>
<li>app-text/ttf2pt1: <uri link="http://ttf2pt1.sourceforge.net/">Converts True Type to Type 1 fonts</uri></li>
<li>app-text/xdvik: <uri link="http://sourceforge.net/projects/xdvi/">DVI previewer for X Window System</uri></li>
<li>app-vim/info: <uri link="http://www.vim.org/scripts/script.php?script_id=21">vim plugin: GNU info documentation browser</uri></li>
<li>dev-db/dbbalancer: <uri link="http://sourceforge.net/projects/dbbalancer">Load balancing multithreaded PostgreSQL connection pool.</uri></li>
<li>dev-db/framerd: <uri link="http://www.framerd.org/">FramerD is a portable distributed object-oriented database designed to support the maintenance and sharing of knowledge bases.</uri></li>
<li>dev-db/hk_classes: <uri link="http://hk-classes.sourceforge.net/">GUI-independent C++ libraries for database applications, plus API documentation and tutorials</uri></li>
<li>dev-db/mergeant: <uri link="http://www.gnome-db.org/">Database admin tool using libgnomedb and libgda</uri></li>
<li>dev-db/mysql: <uri link="http://www.mysql.com/">A fast, multi-threaded, multi-user SQL database server</uri></li>
<li>dev-db/phpmyadmin: <uri link="http://phpmyadmin.sourceforge.net/">Web-based administration for MySQL database in PHP</uri></li>
<li>dev-db/postgresql: <uri link="http://www.postgresql.org/">sophisticated Object-Relational DBMS</uri></li>
<li>dev-db/sqlgui: <uri link="http://www.sqlgui.de/">GUI for the dev-db/sqlguipart, administration tool for a mysql db</uri></li>
<li>dev-db/tora: <uri link="http://www.globecom.se/tora/">TOra - Toolkit For Oracle</uri></li>
<li>dev-db/unixODBC: <uri link="http://www.unixodbc.org/">ODBC Interface for Linux</uri></li>
<li>dev-db/xindice: <uri link="http://xml.apache.org/xindice">A native java XML database</uri></li>
<li>dev-haskell/haddock: <uri link="http://www.haskell.org/haddock">A documentation tool for Haskell</uri></li>
<li>dev-java/batik: <uri link="http://xml.apache.org/batik/">Batik is a Java(tm) technology based toolkit for applications or applets that want to use images in the Scalable Vector Graphics (SVG) format for various purposes, such as viewing, generation or manipulation.</uri></li>
<li>dev-java/blackdown-jdk: <uri link="http://www.blackdown.org">Blackdown Java Development Kit 1.3.1</uri></li>
<li>dev-java/blackdown-jre: <uri link="http://www.blackdown.org">Blackdown Java Runtime Environment 1.3.1</uri></li>
<li>dev-java/compaq-jdk: <uri link="http://h18012.www1.hp.com/java/documentation/1.3.1/linux/docs/index.html">Compaq Java Development Kit 1.3.1 for Alpha/Linux/GNU</uri>		die "Please download ${At} from ${HOMEPAGE}"</li>
<li>dev-java/ibm-jdk: <uri link="https://www6.software.ibm.com/dl/lxdk/lxdk-p">IBM JDK 1.3.1</uri>		die "Please download ${SRC_JAVA} from ${HOMEPAGE} to ${DISTDIR}"</li>
<li>dev-java/java-config: <uri link="http://www.gentoo.org/">Utility to change the Java Virtual Machine being used</uri></li>
<li>dev-java/java-sdk-docs: <uri link="http://java.sun.com/j2se/1.4.2/download.html">Javadoc for Java SDK version 1.4.2</uri>	einfo "Please download ${SRC_URI} from ${HOMEPAGE} and move it to ${DISTDIR}"</li>
<li>dev-java/jrockit: <uri link="http://commerce.bea.com/downloads/weblogic_jrockit.jsp">BEA WebLogic's J2SE Development Kit, version 8.1</uri>		eerror "Please download ${At} from ${HOMEPAGE} (select the \"Linux (32 bit)\" package format of \"WebLogic JRockit 8.1\") and move it to ${DISTDIR}."</li>
<li>dev-java/jswat: <uri link="http://www.bluemarsh.com/java/jswat">Extensible graphical Java debugger</uri></li>
<li>dev-java/kaffe: <uri link="http://www.kaffe.org/">A cleanroom, open source Java VM and class libraries</uri></li>
<li>dev-java/kissme-classpath: <uri link="http://www.gnu.org/software/classpath/classpath.html">GNU Classpath specifically tailored to kissme</uri></li>
<li>dev-java/makeme: <uri link="http://makeme.sf.net">Make utility written in Java</uri></li>
<li>dev-java/rhino: <uri link="http://www.mozilla.org/rhino/">Rhino is an open-source implementation of JavaScript written entirely in Java. It is typically embedded into Java applications to provide scripting to end users</uri></li>
<li>dev-java/snipsnap: <uri link="http://snipsnap.org">A blog/wiki personal content management system</uri></li>
<li>dev-java/sun-j2sdk: <uri link="http://wwws.sun.com/software/java2/download.html">Sun's J2SE Development Kit, version 1.4.0 (From sources)</uri>		eerror "Please download ${SRC_SUNMOTIF} from ${HOMEPAGE} to ${DISTDIR}"		eerror "Please download ${SRC_MOZHEADERS} from ${HOMEPAGE} to ${DISTDIR}"		eerror "Please download ${SRC_JAVA} from ${HOMEPAGE} to ${DISTDIR}"</li>
<li>dev-java/sun-jdk: <uri link="http://java.sun.com/j2se/1.3/download.html">Sun Java Development Kit 1.3.1_09</uri>	einfo ${HOMEPAGE}</li>
<li>dev-java/timestamp.x: <uri link="http://java.sun.com/j2se/1.3/download.html">Sun Java Development Kit 1.3.1_09</uri>	einfo ${HOMEPAGE}</li>
<li>dev-java/xalan: <uri link="http://xml.apache.org/xalan-j/index.html">XSLT processor</uri></li>
<li>dev-java/xerces: <uri link="http://xml.apache.org/xerces2-j/index.html">The next generation of high performance, fully compliant XML parsers in the Apache Xerces family</uri></li>
<li>dev-lang/cxx: <uri link="http://www.support.compaq.com/alpha-tools">Compaq's enhanced C++ compiler for the ALPHA platform</uri></li>
<li>dev-lang/ghc: <uri link="http://www.haskell.org/ghc/">The Glasgow Haskell Compiler</uri></li>
<li>dev-lang/gnat: <uri link="http://www.gnat.com/">GNAT Ada Compiler</uri></li>
<li>dev-lang/helium: <uri link="http://www.cs.uu.nl/~afie/helium">Helium (for learning Haskell)</uri></li>
<li>dev-lang/ifc: <uri link="http://developer.intel.com/software/products/compilers/flin/">Intel Fortran Compiler - The Pentium optimized compiler for Linux</uri></li>
<li>dev-lang/inform: <uri link="http://www.inform-fiction.org/">design system for interactive fiction</uri></li>
<li>dev-lang/nhc98: <uri link="http://www.cs.york.ac.uk/fp/nhc98/">Haskell 98 compiler</uri></li>
<li>dev-lang/ocaml: <uri link="http://www.ocaml.org/">fast modern type-inferring functional programming language descended from the ML (Meta Language) family</uri></li>
<li>dev-lang/perl: <uri link="http://www.perl.org/">Larry Wall's Practical Extraction and Reporting Language</uri></li>
<li>dev-lang/prc-tools: <uri link="http://prc-tools.sourceforge.net">GNU-Based Palm C++ Development Suite</uri></li>
<li>dev-lang/python: <uri link="http://www.python.org">A really great language</uri></li>
<li>dev-lang/spidermonkey: <uri link="http://www.mozilla.org/js/spidermonkey/">Stand-alone JavaScript C library</uri></li>
<li>dev-lang/stratego: <uri link="http://www.stratego-language.org/">Stratego term-rewriting language</uri></li>
<li>dev-lang/tinycobol: <uri link="http://tiny-cobol.sourceforge.net/">COBOL for linux</uri></li>
<li>dev-libs/9libs: <uri link="http://www.netlib.org/research/9libs/9libs-1.0.README">A package of Plan 9 compatability libraries.</uri></li>
<li>dev-libs/atk: <uri link="http://developer.gnome.org/projects/gap/">Gnome Accessibility Toolkit</uri></li>
<li>dev-libs/bglibs: <uri link="http://untroubled.org/bglibs/">Bruce Guenters Libraries Collection</uri></li>
<li>dev-libs/blitz: <uri link="http://www.oonumerics.org/blitz">High-performance C++ numeric library</uri></li>
<li>dev-libs/ccmath: <uri link="http://freshmeat.net/projects/ccmath/">CCMATH is a mathematics library, coded in C, that contains functions for linear algebra, numerical integration</uri></li>
<li>dev-libs/commonc++: <uri link="http://www.gnu.org/software/commonc++/">GNU Common C++ is a C++ framework offering portable support for</uri></li>
<li>dev-libs/cyrus-imap-dev: <uri link="http://asg.web.cmu.edu/cyrus/imapd/">Developer support for the Cyrus IMAP Server</uri></li>
<li>dev-libs/fftw: <uri link="http://www.fftw.org">C subroutine library for computing the Discrete Fourier Transform (DFT)</uri></li>
<li>dev-libs/g-wrap: <uri link="http://www.gnucash.org">A tool for exporting C libraries into Scheme</uri></li>
<li>dev-libs/gmetadom: <uri link="http://gmetadom.sf.net">A library providing bindings for multiple languages of multiple C DOM implementations</uri></li>
<li>dev-libs/gmp: <uri link="http://www.gnu.org/software/gmp/gmp.html">Library for arithmetic on arbitrary precision integers, rational numbers, and floating-point numbers</uri></li>
<li>dev-libs/gsl: <uri link="http://sources.redhat.com/gsl/">The GNU Scientific Library</uri></li>
<li>dev-libs/libcxml: <uri link="ftp://ftp.compaq.com/pub/products/linuxdevtools/latest/downloads.html">Compaqs eXtended Math Library for linux alpha</uri>		die "Please download ${At} from ${HOMEPAGE}"</li>
<li>dev-libs/libextractor: <uri link="http://www.ovmj.org/~samanta/libextractor">A simple library for keyword extraction</uri></li>
<li>dev-libs/libmal: <uri link="http://jasonday.home.att.net/code/libmal/libmal.html">libmal is a convenience library of the functions malsync distribution</uri></li>
<li>dev-libs/libmcal: <uri link="http://mcal.chek.com/">Modular Calendar Access Libary</uri></li>
<li>dev-libs/libole2: <uri link="http://www.gnome.org/">Library to manipulate OLE2 Structured Storage files</uri></li>
<li>dev-libs/libsigc++: <uri link="http://libsigc.sourceforge.net/">The GLib library of C routines</uri></li>
<li>dev-libs/libticables: <uri link="http://tilp.sourceforge.net/">libticables is a necessary library for the TiLP calculator linking program.</uri></li>
<li>dev-libs/libticalcs: <uri link="http://tilp.sourceforge.net/">libticalcs is a necessary library for the TiLP calculator linking program.</uri></li>
<li>dev-libs/libtifiles: <uri link="http://tilp.sourceforge.net/">libtifiles is a necessary library for the TiLP calculator linking program.</uri></li>
<li>dev-libs/libtomcrypt: <uri link="http://libtomcrypt.org/">modular and portable cryptographic toolkit</uri></li>
<li>dev-libs/libtommath: <uri link="http://math.libtomcrypt.org/">highly optimized and portable routines for integer based number theoretic applications</uri></li>
<li>dev-libs/libunicode: <uri link="http://www.gnome.org/">Unicode library</uri></li>
<li>dev-libs/libxml2: <uri link="http://www.xmlsoft.org/">Version 2 of the library to manipulate XML files</uri></li>
<li>dev-libs/nss: <uri link="http://www.mozilla.org/projects/security/pki/nss/">Mozilla's Netscape Security Services Library that implements PKI support</uri></li>
<li>dev-libs/pwlib: <uri link="http://www.openh323.org/">Libs needed for GnomeMeeting</uri></li>
<li>dev-libs/tinyq: <uri link="http://www.uwyn.com/projects/tinyq/">Stripped down version of qt ${PV} for console development</uri></li>
<li>dev-libs/vrb: <uri link="http://phil.ipal.org/freeware/vrb/">library for a virtual ring buffer</uri></li>
<li>dev-lisp/clisp: <uri link="http://clisp.sourceforge.net/">A portable, bytecode-compiled implementation of Common Lisp</uri></li>
<li>dev-lisp/gauche: <uri link="http://gauche.sf.net">A Unix system friendly Scheme Interpreter</uri></li>
<li>dev-lisp/sbcl: <uri link="http://sbcl.sourceforge.net/">Steel Bank Common Lisp</uri></li>
<li>dev-lisp/timestamp.x: <uri link="http://sbcl.sourceforge.net/">Steel Bank Common Lisp</uri></li>
<li>dev-ml/camlimages: <uri link="http://pauillac.inria.fr/advi/">Library used by active-dvi</uri></li>
<li>dev-ml/lablgl: <uri link="http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/lablgl.html">Objective CAML interface for OpenGL</uri></li>
<li>dev-ml/lablgtk: <uri link="http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/lablgtk.html">Objective CAML interface for Gtk+</uri></li>
<li>dev-ml/ocaml-shell: <uri link="http://www.ocaml-programming.de/packages/documentation/shell/">O'Caml modules for running shell commands and pipelines</uri></li>
<li>dev-ml/ocamlnet: <uri link="http://ocamlnet.sourceforge.net">Modules for O'Caml application-level Internet protocols</uri></li>
<li>dev-ml/pcre-ocaml: <uri link="http://www.ai.univie.ac.at/~markus/home/ocaml_sources.html">Perl Compatibility Regular Expressions for O'Caml</uri></li>
<li>dev-ml/pxp: <uri link="http://www.ocaml-programming.de/packages/documentation/pxp/index_dev.html">validating XML parser library for O'Caml</uri></li>
<li>dev-ml/timestamp.x: <uri link="http://www.ocaml-programming.de/packages/documentation/pxp/index_dev.html">validating XML parser library for O'Caml</uri></li>
<li>dev-perl/Audio-CD-disc-cover: <uri link="http://home.wanadoo.nl/jano/disc-cover.html">Perl Module needed for app-cdr/disc-cover</uri></li>
<li>dev-perl/CGI-FastTemplate: <uri link="http://search.cpan.org/author/JMOORE/${P}/">The Perl CGI::FastTemplate Module</uri></li>
<li>dev-perl/Cgi-Simple: <uri link="http://search.cpan.org/author/JFREEMAN/${P}/">The Perl CGI::Simple Module</uri></li>
<li>dev-perl/Curses: <uri link="http://cpan.valueclick.com/authors/id/W/WP/WPS/${P}.readme">Curses interface modules for Perl</uri></li>
<li>dev-perl/DateManip: <uri link="http://www.perl.com/CPAN/authors/id/SBECK/${P}.readme">Perl date manipulation routines.</uri></li>
<li>dev-perl/Devel-StackTrace: <uri link="http://www.perl.com/CPAN/modules/by-modules/Devel/${P}.readme">Devel-StackTrace module for perl</uri></li>
<li>dev-perl/Digest-MD5: <uri link="http://cpan.valueclick.com/modules/by-category/14_Security_and_Encryption/Digest/${P}.readme">A URI Perl Module</uri></li>
<li>dev-perl/Email-Valid: <uri link="http://www.cpan.org/modules/by-module/EMail/${P}.readme">Check validity of Internet email addresses.</uri></li>
<li>dev-perl/ExtUtils-MakeMaker: <uri link="http://cpan.valueclick.com/modules/by-module/ExtUtils/${P}.readme">MakeMaker Perl Module</uri></li>
<li>dev-perl/HTML-Mason: <uri link="http://www.masonhq.com/">A HTML development and delivery Perl Module</uri></li>
<li>dev-perl/HTML-Parser: <uri link="http://cpan.valueclick.com/modules/by-category/15_World_Wide_Web_HTML_HTTP_CGI/HTML/${P}.readme">Parse &lt;HEAD&gt; section of HTML documents</uri></li>
<li>dev-perl/HTML-TableExtract: <uri link="http://www.cpan.org/modules/by-module/HTML/${MY_P}.readme">The Perl Table-Extract Module</uri></li>
<li>dev-perl/ImageInfo: <uri link="http://www.cpan.org/modules/by-module/Image/${MY_P}.readme">The Perl Image-Info Module</uri></li>
<li>dev-perl/Msql-Mysql-modules: <uri link="http://www.cpan.org/modules/by-module/Msql/${P}.readme">The Perl MySQL Module</uri></li>
<li>dev-perl/Net-Telnet: <uri link="http://www.cpan.org/modules/by-module/Net/${P}.readme">A Telnet Perl Module</uri></li>
<li>dev-perl/Params-Validate: <uri link="http://www.perl.com/CPAN/modules/by-authors/id/D/DR/DROLSKY/">A module to provide a flexible system for validation method/function call parameters</uri></li>
<li>dev-perl/Term-ANSIScreen: <uri link="http://www.cpan.org/CPAN/data/ANSIScreen/ANSIScreen.html">Terminal control using ANSI escape sequences.</uri></li>
<li>dev-perl/Text-ChaSen: <uri link="http://www.daionet.gr.jp/~knok/chasen/">Chasen library module for Perl.</uri></li>
<li>dev-perl/Text-Kakasi: <uri link="http://search.cpan.org/dist/Text-Kakasi/">This module provides libkakasi interface for Perl.</uri></li>
<li>dev-perl/Tk-TableMatrix: <uri link="http://search.cpan.org/author/CERNEY/${P}">Perl module for Tk-TableMatrix</uri></li>
<li>dev-perl/XML-DT: <uri link="http://cpan.valueclick.com/modules/by-module/XML/${P}.readme">A perl XML down translate module</uri></li>
<li>dev-perl/inline-files: <uri link="http://search.cpan.org/author/DCONWAY/${MY_P}">Multiple virtual files in a single file</uri></li>
<li>dev-perl/libwww-perl: <uri link="http://cpan.valueclick.com/modules/by-category/15_World_Wide_Web_HTML_HTTP_CGI/WWW/${P}.readme">A collection of Perl Modules for the WWW</uri></li>
<li>dev-perl/perl-MDK-Common: <uri link="http://cvs.mandrakesoft.com/cgi-bin/cvsweb.cgi/soft/perl-MDK-Common/">Common useful perl functions</uri></li>
<li>dev-perl/perl-ldap: <uri link="http://perl-ldap.sourceforge.net">A collection of perl modules which provide an object-oriented interface to LDAP servers.</uri></li>
<li>dev-perl/perl-tk: <uri link="http://www.cpan.org/modules/by-authors/Nick_Ing-Simmons/${MY_P}.readme">A Perl Module for Tk</uri></li>
<li>dev-php/PEAR-Cache: <uri link="http://pear.php.net/package-info.php?pacid=40">Framework for caching of arbitrary data.</uri></li>
<li>dev-php/PEAR-DB: <uri link="http://pear.php.net/package-info.php?pacid=46">Database abstraction layer for PHP</uri></li>
<li>dev-php/PEAR-Date: <uri link="http://pear.php.net/package-info.php?pacid=57">Date and Time Zone Classes</uri></li>
<li>dev-php/PEAR-HTML_Common: <uri link="http://pear.php.net/package-info.php?pacid=69">base class for other HTML classes</uri></li>
<li>dev-php/PEAR-HTML_QuickForm: <uri link="http://pear.php.net/package-info.php?pacid=58">The PEAR::HTML_QuickForm package provides methods for creating, validating, processing HTML forms.</uri></li>
<li>dev-php/PEAR-HTML_Select_Common: <uri link="http://pear.php.net/package-info.php?pacid=165">Some small classes to handle common &lt;select&gt; lists</uri></li>
<li>dev-php/PEAR-HTML_Template_Flexy: <uri link="http://pear.php.net/package-info.php?pacid=111">An extremely powerful Tokenizer driven Template engine</uri></li>
<li>dev-php/PEAR-HTML_Template_Sigma: <uri link="http://pear.php.net/package-info.php?pacid=111">An implementation of Integrated Templates API with template 'compilation' added</uri></li>
<li>dev-php/PEAR-Log: <uri link="http://pear.php.net/package-info.php?pacid=8">The Log framework provides an abstracted logging system supporting logging to console, file, syslog, SQL, and mcal targets.</uri></li>
<li>dev-php/PEAR-Mail_Mime: <uri link="http://pear.php.net/package-info.php?pacid=21">Provides classes to deal with creation and manipulation of mime messages.</uri></li>
<li>dev-php/PEAR-Net_Sieve: <uri link="http://pear.php.net/package-info.php?pacid=71">Provides an API to talk to the timsieved server that comes with Cyrus IMAPd. Can be used to install, remove, mark active etc sieve scripts.</uri></li>
<li>dev-php/PEAR-Net_Socket: <uri link="http://pear.php.net/package-info.php?pacid=64">class interface to TCP sockets</uri></li>
<li>dev-php/PEAR-System_Command: <uri link="http://pear.php.net/package-info.php?pacid=74">PEAR::System_Command is a commandline execution interface</uri></li>
<li>dev-php/PEAR-XML_CSSML: <uri link="http://pear.php.net/package-info.php?pacid=61">A template system for generating cascading style sheets (CSS)</uri></li>
<li>dev-php/PEAR-XML_Tree: <uri link="http://pear.php.net/package-info.php?pacid=19">The XML_Tree package allows one to build XML data structures using a tree representation, without the need for an extension like DOMXML</uri></li>
<li>dev-php/PEAR-XML_XPath: <uri link="http://pear.php.net/package-info.php?pacid=65">The PEAR::XML_XPath class provided an XPath/DOM XML manipulation, maneuvering and query interface</uri></li>
<li>dev-php/PECL-mailparse: <uri link="http://pear.php.net/mailparse">A PHP extension for parsing and working with RFC822 and RFC2045 (MIME) compliant messages.</uri></li>
<li>dev-php/mod_php: Apache module for PHP</li>
<li>dev-php/php: PHP Shell Interpreter</li>
<li>dev-php/phpdbg: <uri link="http://dd.cron.ru/dbg/">A PHP debugger useable with some editors like phpedit.</uri></li>
<li>dev-php/phpgroupware: <uri link="http://www.phpgroupware.org/">intranet/groupware tool and application framework</uri></li>
<li>dev-php/phpsysinfo: <uri link="http://phpsysinfo.sourceforge.net/">phpSysInfo is a nice package that will display your system stats via PHP.</uri></li>
<li>dev-php/turck-mmcache: <uri link="http://turck-mmcache.sourceforge.net/">open source PHP accelerator, optimizer, encoder and dynamic content cache</uri></li>
<li>dev-python/Cheetah: <uri link="http://www.cheetahtemplate.org/">Cheetah is a Python-powered template engine and code generator.</uri></li>
<li>dev-python/Imaging: <uri link="http://www.pythonware.com/downloads/#pil">Python Imaging Library (PIL).</uri></li>
<li>dev-python/Imaging-py21: <uri link="http://www.pythonware.com/downloads/#pil">Python Imaging Library (PIL).</uri></li>
<li>dev-python/PyQt: <uri link="http://www.riverbankcomputing.co.uk/pyqt/">set of Python bindings for the QT 3.x Toolkit</uri></li>
<li>dev-python/bicyclerepair: <uri link="http://bicyclerepair.sourceforge.net/">Bicycle Repair Man is the Python Refactoring Browser,</uri></li>
<li>dev-python/docutils: <uri link="http://docutils.sourceforge.net/">Set of python tools for processing plaintext docs into HTML, XML, etc.</uri></li>
<li>dev-python/editobj: <uri link="http://oomadness.tuxfamily.org/en/editobj/">EditObj can create a dialog box to edit ANY Python object. It also includes a Tk tree widget, an event and a multiple undo-redo frameworks.</uri></li>
<li>dev-python/egenix-mx-base-py21: <uri link="http://www.egenix.com/">egenix utils for Python.</uri></li>
<li>dev-python/email-py21: <uri link="http://mimelib.sourceforge.net/">Helps to create, parse, generate, and modify email messages.</uri></li>
<li>dev-python/gnome-python: <uri link="http://www.daa.com.au/~james/pygtk/">GNOME 2 bindings for Python</uri></li>
<li>dev-python/htmlgen: <uri link="http://starship.python.net/crew/friedrich/HTMLgen/html/main.html">HTMLgen - Python modules for the generation of HTML documents</uri></li>
<li>dev-python/kinterbasdb: <uri link="http://kinterbasdb.sourceforge.net">kinterbasdb - firebird/interbase interface for Python.</uri></li>
<li>dev-python/ldaptor: <uri link="http://twistedmatrix.com/users/tv/ldaptor/">set of LDAP utilities for use from the command line</uri></li>
<li>dev-python/pexpect: <uri link="http://pexpect.sourceforge.net/">Pexpect is a pure Python module for spawning child applications; controlling them; and responding to expected patterns in their output</uri></li>
<li>dev-python/pmw: <uri link="http://pmw.sourceforge.net/">A toolkit for building high-level compound widgets in Python using the Tkinter module.</uri></li>
<li>dev-python/psycopg: <uri link="http://www.initd.org/software/psycopg.py">PostgreSQL database adapter for the Python</uri> # best one</li>
<li>dev-python/psycopg-py21: <uri link="http://www.initd.org/software/psycopg.py">PostgreSQL database adapter for the Python</uri> # best one</li>
<li>dev-python/py2play: <uri link="http://oomadness.tuxfamily.org/en/py2play/">A Peer To Peer network game engine</uri></li>
<li>dev-python/pycurl: <uri link="http://pycurl.sourceforge.net">python binding for curl/libcurl</uri></li>
<li>dev-python/pygtk: <uri link="http://www.daa.com.au/~james/pygtk/">GTK+ bindings for Python</uri></li>
<li>dev-python/python-biggles: <uri link="http://biggles.sourceforge.net">A Python module for creating publication-quality 2D scientific plots.</uri></li>
<li>dev-python/pythong: <uri link="http://www3.uji.es/~dllorens/PythonG/principal.html">Nice and powerful spanish development enviroment for Python</uri></li>
<li>dev-python/pyx: <uri link="http://pyx.sourceforge.net/">Python package for the generation of encapsulated PostScript figures</uri></li>
<li>dev-python/quixote: <uri link="http://www.mems-exchange.org/software/quixote/">Python HTML templating framework for developing web applications.</uri></li>
<li>dev-python/rlcompleter2: <uri link="http://codespeak.net/rlcompleter2/">Python command line completion.</uri></li>
<li>dev-python/stripogram: <uri link="http://www.zope.org/Members/chrisw/StripOGram/">A library for converting HTML to Plain Text.</uri></li>
<li>dev-python/stripogram-py21: <uri link="http://www.zope.org/Members/chrisw/StripOGram/">A library for converting HTML to Plain Text.</uri></li>
<li>dev-python/timestamp.x: <uri link="http://www.zope.org/Members/chrisw/StripOGram/">A library for converting HTML to Plain Text.</uri></li>
<li>dev-python/twisted: <uri link="http://www.twistedmatrix.com/">collection of servers and clients, which can be used either by developers of new applications or directly. Documentation included.</uri></li>
<li>dev-python/wxPython: <uri link="http://www.wxpython.org/">A blending of the wxWindows C++ class library with Python.</uri></li>
<li>dev-ruby/eruby: <uri link="http://www.modruby.net">eRuby interprets a Ruby code embedded text file.</uri></li>
<li>dev-ruby/mod-ruby: <uri link="http://www.modruby.net">A Ruby Module for Apache</uri></li>
<li>dev-ruby/racc: <uri link="http://www.loveruby.net/en/racc.html">A LALR(1) parser generator for Ruby</uri></li>
<li>dev-ruby/ri: <uri link="http://www.pragmaticprogrammer.com/ruby/downloads/ri.html">Ruby Interactive reference</uri></li>
<li>dev-ruby/ruby-gtk: <uri link="http://ruby-gnome.sourceforge.net/">Ruby Gtk+ bindings</uri></li>
<li>dev-ruby/strscan: <uri link="http://www1.u-netsurf.ne.jp/~brew/mine/en/index.html">Fast string scanning library for Ruby</uri></li>
<li>dev-ruby/testunit: <uri link="http://testunit.talbott.ws/">unit testing framework for the Ruby language</uri></li>
<li>dev-tcltk/ck: SRC_URI="${HOMEPAGE}/${P_NEW}.tar.gz"<uri link="http://www.ch-werner.de/ck/">A curses based toolkit for tcl</uri></li>
<li>dev-tcltk/itcl: <uri link="http://www.tcltk.com/itcl/">Object Oriented Enhancements for Tcl/Tk</uri></li>
<li>dev-tcltk/mysqltcl: <uri link="http://www.xdobry.de/mysqltcl/">TCL MySQL Interface</uri></li>
<li>dev-tex/latex-calendar: <uri link="ftp://ibiblio.org/pub/packages/TeX/macros/latex/contrib/supported/">LaTeX package used to create Calendars.  Very flexible and robust.</uri></li>
<li>dev-util/cutils: <uri link="http://www.sigala.it/sandro/software.html#cutils">C language utilities</uri></li>
<li>dev-util/cvsup: <uri link="http://www.cvsup.org/">a faster alternative to cvs</uri></li>
<li>dev-util/devhelp: <uri link="http://devhelp.codefactory.se/">Developer help browser</uri></li>
<li>dev-util/diasce: <uri link="http://diasce.es.gnome.org/">The C/C++ Code editor for Gnome</uri></li>
<li>dev-util/kdbg: <uri link="http://members.nextra.at/johsixt/kdbg.html">A Graphical Debugger Interface to gdb</uri></li>
<li>games-action/0verkill: <uri link="http://artax.karlin.mff.cuni.cz/~brain/0verkill/">A bloody 2D action deathmatch-like game in ASCII-ART</uri></li>
<li>games-action/abuse_sdl: <uri link="http://www.labyrinth.net.au/~trandor/abuse/">port of Abuse by Crack Dot Com</uri></li>
<li>games-action/armagetron: <uri link="http://armagetron.sourceforge.net/">armagetron: 3d tron lightcycles, just like the movie</uri></li>
<li>games-action/atanks: <uri link="http://atanks.sourceforge.net/">Worms and Scorched Earth-like game</uri></li>
<li>games-action/barrage: <uri link="http://lgames.sourceforge.net">A violent point-and-click shooting game</uri></li>
<li>games-action/bomberclone: <uri link="http://www.bomberclone.de/">BomberMan clone with network game support</uri></li>
<li>games-action/bombermaze: <uri link="http://www.freesoftware.fsf.org/bombermaze/">Bomberman clone for GNOME</uri></li>
<li>games-action/bzflag: <uri link="http://www.BZFlag.org/">OpenGL accelerated 3d tank combat simulator game</uri></li>
<li>games-action/chromium: <uri link="http://www.reptilelabour.com/software/chromium/">Chromium B.S.U. - an arcade game</uri></li>
<li>games-action/d2x: <uri link="http://icculus.org/d2x/">Descent 2</uri></li>
<li>games-action/descent3: <uri link="http://www.lokigames.com/products/descent3/">Descent 3 - 3-Dimensional indoor/outdoor spaceship combat</uri></li>
<li>games-action/dungeon: <uri link="http://www.ibiblio.org/linsearch/lsms/dungeon-3.2.3.html">A linux port of the Dungeon game once distributed by DECUS</uri></li>
<li>games-action/fakk2: <uri link="http://www.lokigames.com/products/fakk2/">Heavy Metal: FAKK2 - 3D third-person action shooter based on the Heavy Metal comics/movies</uri></li>
<li>games-action/geki2-KXL: <uri link="http://kxl.hn.org/">2D length scroll shooting game</uri></li>
<li>games-action/geki3-KXL: <uri link="http://kxl.hn.org/">2D length scroll shooting game</uri></li>
<li>games-action/glaxium: <uri link="http://xhosxe.free.fr/glaxium/">OpenGL-based space-ship shoot-em-up style game</uri></li>
<li>games-action/gltron: <uri link="http://gltron.sourceforge.net/">3d tron, just like the movie</uri></li>
<li>games-action/heavygear2: <uri link="http://www.activision.com/games/heavygearii/">Heavy Gear II - 3D first-person Mechanized Assault</uri></li>
<li>games-action/heroes: <uri link="http://heroes.sourceforge.net/">Heroes Enjoy Riding Over Empty Slabs: similar to Tron and Nibbles</uri></li>
<li>games-action/koth: <uri link="http://www.nongnu.org/koth/">Multiplayer, networked game of little tanks with really big weapons</uri></li>
<li>games-action/maelstrom: <uri link="http://www.devolution.com/~slouken/Maelstrom/">An asteroids battle game</uri></li>
<li>games-action/moon-buggy: <uri link="http://www.mathematik.uni-kl.de/~wwwstoch/voss/comp/moon-buggy.html">A simple console game, where you drive a car across the moon's surface</uri></li>
<li>games-action/mutantstormdemo: <uri link="http://www.pompom.org.uk/">shoot through crazy psychedelic 3D environments</uri></li>
<li>games-action/nighthawk: <uri link="http://jsno.arafuraconnect.com.au/proj_linux/nighthawk.html">A tribute to one of the most playable and contagious games ever written- Paradroid by Andrew Braybrook</uri></li>
<li>games-action/orbital-eunuchs-sniper: <uri link="http://icculus.org/oes">Snipe terrorists from your orbital base</uri></li>
<li>games-action/orbz-demo: <uri link="http://www.21-6.com/orbz.asp">action/arcade game set in colorful 3D environments</uri></li>
<li>games-action/parsec: <uri link="http://openparsec.sourceforge.net/">Parsec - there is no safe distance</uri></li>
<li>games-action/phobiaii: <uri link="http://www.lynxlabs.com/games/linuxphobia/index.html">Just a moment ago, you were safe inside your ship, behind five inch armour</uri></li>
<li>games-action/phobiaiii: <uri link="http://www.lynxlabs.com/phobiaIII/">Just a moment ago, you were safe inside your ship, behind five inch armour</uri></li>
<li>games-action/poopmup: <uri link="http://poopmup.sourceforge.net/">You are now free to fly around the city and poop on passers-by</uri></li>
<li>games-action/powermanga: <uri link="http://linux.tlk.fr/">An arcade 2D shoot-em-up game</uri></li>
<li>games-action/raptor2: <uri link="http://raptorv2.sourceforge.net/">space shoot-em-up game</uri></li>
<li>games-action/slune: <uri link="http://oomadness.tuxfamily.org/en/slune/">A 3D action game with multiplayer mode and amazing graphics</uri></li>
<li>games-action/spacearyarya-kxl: <uri link="http://kxl.hn.org/">A 2D/3D shooting game</uri></li>
<li>games-action/spacetripperdemo: <uri link="http://www.pompom.org.uk/">hardcore arcade shoot-em-up</uri></li>
<li>games-action/trackballs: <uri link="http://trackballs.sourceforge.net/">simple game similar to the classical game Marble Madness</uri></li>
<li>games-action/tuxkart: <uri link="http://tuxkart.sourceforge.net">A racing game starring Tux, the linux penguin</uri></li>
<li>games-action/xbomber: <uri link="http://www.xdr.com/dash/bomber.html">Bomberman clone w/multiplayer support</uri></li>
<li>games-action/xpilot: <uri link="http://www.xpilot.org/">A multi-player 2D client/server space game</uri></li>
<li>games-action/xshipwars: <uri link="http://wolfpack.twu.net/ShipWars/XShipWars/">massively multi-player, ultra graphical, space-oriented gaming system designed exclusively for network play</uri></li>
<li>games-arcade/ascii-invaders: <uri link="http://www.ip9.org/munro/invaders/index.html">Space invaders clone, using ncurses library</uri></li>
<li>games-arcade/bub-n-bros: <uri link="http://bub-n-bros.sourceforge.net/">A multiplayer clone of the famous Bubble Bobble game</uri></li>
<li>games-arcade/bumprace: <uri link="http://www.linux-games.com/bumprace/">simple arcade racing game</uri></li>
<li>games-arcade/circuslinux: <uri link="http://www.newbreedsoftware.com/circus-linux/">clone of the Atari 2600 game \</uri>Circus Atari\""</li>
<li>games-arcade/crack-attack: <uri link="http://aluminumangel.org/attack/">Addictive OpenGL-based block game</uri></li>
<li>games-arcade/criticalmass: <uri link="http://criticalmass.sourceforge.net/">SDL/OpenGL space shoot'em up game</uri></li>
<li>games-arcade/digger: <uri link="http://www.digger.org/">Digger Remastered</uri></li>
<li>games-arcade/emilia-pinball: <uri link="http://pinball.sourceforge.net/">SDL OpenGL pinball game</uri></li>
<li>games-arcade/excido: <uri link="http://icculus.org/excido/">A fast paced action game</uri></li>
<li>games-arcade/frozen-bubble: <uri link="http://www.frozen-bubble.org/">A Puzzle Bubble clone written in perl</uri></li>
<li>games-arcade/grande-KXL: <uri link="http://kxl.hn.org/">ZANAC type game</uri></li>
<li>games-arcade/jumpnbump: <uri link="http://www.jumpbump.mine.nu/">a funny multiplayer game about cute little fluffy bunnies</uri></li>
<li>games-arcade/kamikaze: <uri link="http://mindx.dyndns.org/kde/kamikaze">A bomberman like game for KDE</uri></li>
<li>games-arcade/kobodeluxe: <uri link="http://www.olofson.net/kobodl/">An SDL port of xkobo, a addictive space shoot-em-up</uri></li>
<li>games-arcade/koules: <uri link="http://www.paru.cas.cz/~hubicka/koules/English/">fast action arcade-style game w/sound and network support</uri></li>
<li>games-arcade/late: <uri link="http://late.sourceforge.net/">A game, similar to Barrack by Ambrosia Software</uri></li>
<li>games-arcade/lbreakout: <uri link="http://lgames.sourceforge.net">Breakout clone written with the SDL library</uri></li>
<li>games-arcade/lbreakout2: <uri link="http://lgames.sourceforge.net/">Breakout clone written with the SDL library</uri></li>
<li>games-arcade/missile: <uri link="http://missile.sourceforge.net/">The Atari game Missile Command for Linux</uri></li>
<li>games-arcade/netris: <uri link="http://www.netris.org/">Classic networked version of T*tris</uri></li>
<li>games-arcade/njam: <uri link="http://njam.sourceforge.net/">Multi or single-player network Pacman-like game in SDL</uri></li>
<li>games-arcade/openmortal: <uri link="http://apocalypse.rulez.org/~upi/Mortal/">A spoof of the famous Mortal Combat game</uri></li>
<li>games-arcade/penguin-command: <uri link="http://www.linux-games.com/penguin-command/">A clone of the classic Missile Command Game</uri></li>
<li>games-arcade/project-starfighter: <uri link="http://www.parallelrealities.co.uk/starfighter.php">A space themed shooter</uri></li>
<li>games-arcade/pyddr: <uri link="http://www.icculus.org/pyddr/">Dance Dance Revolution!  You need this game more than Frozen Bubble</uri></li>
<li>games-arcade/pyddr-songs: <uri link="http://icculus.org/pyddr/">Music for the pyDDR game</uri></li>
<li>games-arcade/rocksndiamonds: <uri link="http://www.artsoft.org/rocksndiamonds/">A Boulderdash clone</uri></li>
<li>games-arcade/sdlroids: <uri link="http://david.hedbor.org/projects/sdlroids/">Asteroids Clone for X using SDL</uri></li>
<li>games-arcade/sdlsasteriods: <uri link="http://sdlsas.sourceforge.net/">Rework of Sasteroids using SDL</uri></li>
<li>games-arcade/solarwolf: <uri link="http://www.pygame.org/shredwheat/solarwolf/">action/arcade recreation of SolarFox</uri></li>
<li>games-arcade/supertux: <uri link="http://www.newbreedsoftware.com/supertux/">A game similar to Super Mario Bros.</uri></li>
<li>games-arcade/timestamp.x: <uri link="http://www.newbreedsoftware.com/supertux/">A game similar to Super Mario Bros.</uri></li>
<li>games-arcade/tuxpuck: <uri link="http://www.efd.lth.se/~d00jkr/tuxpuck/">Hover hockey</uri></li>
<li>games-arcade/tuxracer: <uri link="http://tuxracer.sourceforge.net/">take on the role of Tux, the Linux Penguin, as he races down steep, snow-covered mountains</uri></li>
<li>games-arcade/xbill: <uri link="http://www.xbill.org">A game about evil hacker called Bill!</uri></li>
<li>games-arcade/xboing: <uri link="http://www.techrescue.org/xboing/">blockout type game where you bounce a proton ball trying to destroy blocks</uri></li>
<li>games-arcade/xevil: <uri link="http://www.xevil.com/">3rd person, side-view, fast-action, kill-them-before-they-kill-you game</uri></li>
<li>games-arcade/xgalaga: <uri link="http://rumsey.org/xgal.html">Galaga game clone.</uri></li>
<li>games-arcade/xkobo: <uri link="http://freshmeat.net/projects/xkobo/?topic_id=80">A fastpaced multiway scrolling shoot-em-up</uri></li>
<li>games-arcade/xrick: <uri link="http://www.bigorno.net/xrick/">Clone of the Rick Dangerous adventure game from the 80's</uri></li>
<li>games-arcade/xtux: <uri link="http://xtux.sourceforge.net/">Multiplayer Gauntlet-style arcade game</uri></li>
<li>games-board/ace: <uri link="http://www.delorie.com/store/ace/">DJ Delorie's Ace of Penguins solitaire games</uri></li>
<li>games-board/cgoban: <uri link="http://www.igoweb.org/~wms/comp/cgoban/">A Go-frontend</uri></li>
<li>games-board/cgoban2: <uri link="http://kgs.kiseido.com/">A Java client for the Kiseido Go Server, and a SGF editor</uri></li>
<li>games-board/crafty: <uri link="ftp://ftp.cis.uab.edu/pub/hyatt/">chess engine</uri>	einfo "      download them from ${HOMEPAGE}."</li>
<li>games-board/daemonshogi: <uri link="http://www.users.yun.co.jp/~tokita/daemonshogi/">A GTK+ based, simple shogi (Japanese chess) program</uri></li>
<li>games-board/eboard: <uri link="http://eboard.sourceforge.net/">chess interface for POSIX systems</uri></li>
<li>games-board/ggz-gtk-client: <uri link="http://ggz.sourceforge.net/">The gtk client for GGZ Gaming Zone</uri></li>
<li>games-board/ggz-gtk-games: <uri link="http://ggz.sourceforge.net/">These are the gtk versions of the games made by GGZ Gaming Zone</uri></li>
<li>games-board/ggz-txt-client: <uri link="http://ggz.sourceforge.net/">The textbased client for GGZ Gaming Zone</uri></li>
<li>games-board/gnocatan: <uri link="http://gnocatan.sourceforge.net/">A clone of the popular board game The Settlers of Catan</uri></li>
<li>games-board/gnono: <uri link="http://www.paw.co.za/projects/gnono/">rewrite of Windows card game WUNO</uri></li>
<li>games-board/gnubg: <uri link="http://www.gnu.org/software/gnubg/gnubg.html">GNU BackGammon</uri></li>
<li>games-board/gnuchess: <uri link="http://www.gnu.org/software/chess/chess.html">Console based chess interface</uri></li>
<li>games-board/gnugo: <uri link="http://www.gnu.org/software/gnugo/">A Go-playing program</uri></li>
<li>games-board/gnushogi: <uri link="http://www.gnu.org/directory/games/gnushogi.html">Japanese version of chess (commandline + X-Version)</uri></li>
<li>games-board/gtkatlantic: <uri link="http://gtkatlantic.sourceforge.net/">Monopoly-like game that works with the monopd server</uri></li>
<li>games-board/gtkboard: <uri link="http://gtkboard.sf.net/">Board games system</uri></li>
<li>games-board/hexxagon: <uri link="http://nesqi.homeip.net/hexxagon/">clone of the original DOS game</uri></li>
<li>games-board/knights: <uri link="http://knights.sourceforge.net/">KDE Chess Interface</uri></li>
<li>games-board/kwappen: <uri link="http://www.lcs-chemie.de/kwappen_eng.htm">A jigsaw puzzle game for the KDE environment</uri></li>
<li>games-board/maitretarot: <uri link="http://www.nongnu.org/maitretarot/">server for the french tarot game maitretarot</uri></li>
<li>games-board/mt_dolphin_ia: <uri link="http://www.nongnu.org/maitretarot/">client for the french tarot game maitretarot</uri></li>
<li>games-board/mt_gtk_client: <uri link="http://www.nongnu.org/maitretarot/">client for the french tarot game maitretarot</uri></li>
<li>games-board/mt_ncurses_client: <uri link="http://www.nongnu.org/maitretarot/">client for the french tarot game maitretarot</uri></li>
<li>games-board/pysol: <uri link="http://www.oberhumer.com/opensource/pysol/">PySol card game</uri></li>
<li>games-board/pysol-sound-server: <uri link="http://www.oberhumer.com/opensource/pysol/">Sound server for PySol</uri></li>
<li>games-board/scid: <uri link="http://scid.sourceforge.net/">a free chess database application</uri></li>
<li>games-board/sirius: <uri link="http://sirius.bitvis.nu/">A program for playing the game of othello</uri></li>
<li>games-board/sjeng: <uri link="http://sjeng.sourceforge.net/">Console based chess interface</uri></li>
<li>games-board/slibo: <uri link="http://slibo.sourceforge.net/">A comfortable replacement for the xboard chess interface</uri></li>
<li>games-board/teg: <uri link="http://teg.sourceforge.net">Gnome Risk Clone</uri></li>
<li>games-board/timestamp.x: <uri link="http://teg.sourceforge.net">Gnome Risk Clone</uri></li>
<li>games-board/xboard: <uri link="http://www.tim-mann.org/xboard.html">GUI for gnuchess and for internet chess servers</uri></li>
<li>games-board/xfrisk: <uri link="http://morphy.iki.fi/xfrisk/">The RISK board game</uri></li>
<li>games-board/xgammon: <uri link="http://fawn.unibw-hamburg.de/steuer/xgammon/xgammon.html">very nice backgammon game for X</uri></li>
<li>games-board/xmahjongg: <uri link="http://www.lcdf.org/xmahjongg/">friendly GUI version of xmahjongg</uri></li>
<li>games-board/xscrabble: <uri link="http://freshmeat.net/projects/xscrabble/?topic_id=80">An X11 clone of the well-known Scrabble</uri></li>
<li>games-board/xskat: <uri link="http://www.gulu.net/xskat">XSkat - famous german card game for X11</uri></li>
<li>games-emulation/advancemame: <uri link="http://advancemame.sourceforge.net/">GNU/Linux port of the MAME emulator, with GUI menu.</uri></li>
<li>games-emulation/atari800: <uri link="http://atari800.sourceforge.net/">Atari 800 emulator</uri></li>
<li>games-emulation/blight-glN64: <uri link="http://deltaanime.ath.cx/~blight/n64/">An audio plugin for the mupen64 N64 emulator</uri></li>
<li>games-emulation/blight-tr64gl: <uri link="http://deltaanime.ath.cx/~blight/n64/">An audio plugin for the mupen64 N64 emulator</uri></li>
<li>games-emulation/blight-uhleaudio: <uri link="http://deltaanime.ath.cx/~blight/n64/">An audio plugin for the mupen64 N64 emulator</uri></li>
<li>games-emulation/blight_input: <uri link="http://mupen64.emulation64.com/">An input plugin for the mupen64 N64 emulator</uri></li>
<li>games-emulation/daphne: <uri link="http://www.daphne-emu.com/">Laserdisc Arcade Game Emulator</uri></li>
<li>games-emulation/darcnes: <uri link="http://www.dridus.com/~nyef/darcnes/">A multi-system emulator</uri></li>
<li>games-emulation/dgen-sdl: <uri link="http://www.pknet.com/~joe/dgen-sdl.html">DGen/SDL is a Linux/SDL-Port of the famous DGen MegaDrive/Genesis-Emulator</uri></li>
<li>games-emulation/dosbox: <uri link="http://dosbox.zophar.net">DOSBox - DOS emulator</uri></li>
<li>games-emulation/dosbox-cvs: <uri link="http://www.dosbox.sf.net">DOS Emulator</uri></li>
<li>games-emulation/epsxe: <uri link="http://www.epsxe.com/">ePSXe Playstation Emulator</uri></li>
<li>games-emulation/fakenes: <uri link="http://fakenes.sourceforge.net/">portable, Open Source NES emulator which is written mostly in C</uri></li>
<li>games-emulation/fceultra: <uri link="http://fceultra.sourceforge.net/">A portable NES/Famicom emulator</uri></li>
<li>games-emulation/game-launcher: <uri link="http://www.dribin.org/dave/game_launcher/">universal front end for emulators ... works with MAME, Nesticle, RockNES, zSNES, snes9x, Callus, Stella, z26, and Genecyst</uri></li>
<li>games-emulation/generator: <uri link="http://www.squish.net/generator/">Sega Genesis / Mega Drive console emulator</uri></li>
<li>games-emulation/gens: <uri link="http://gens.consolemul.com/">A Sega Genesis/CD/32X emulator</uri></li>
<li>games-emulation/gngb: <uri link="http://m.peponas.free.fr/gngb/">gngb - Gameboy / Gameboy Color emulator</uri></li>
<li>games-emulation/gngeo: <uri link="http://m.peponas.free.fr/gngeo/">A NeoGeo emulator</uri></li>
<li>games-emulation/gnomame: <uri link="http://gnomame.sourceforge.net/">GTK+ xmame catalog and frontend</uri></li>
<li>games-emulation/gnomeboyadvance: <uri link="http://www.socialistsoftware.com/gnomeboyadvance.php">A GNOME Python frontend to VisualBoyAdvance</uri></li>
<li>games-emulation/gnuboy: <uri link="http://gnuboy.unix-fu.org/">Gameboy emulator with multiple renderers</uri></li>
<li>games-emulation/goosnes: <uri link="http://bard.sytes.net/goosnes/">A GTK+ frontend for Snes9X</uri></li>
<li>games-emulation/grustibus: <uri link="http://grustibus.sourceforge.net">A GNOME-based front-end for the M.A.M.E. video game emulator</uri></li>
<li>games-emulation/gxmame: <uri link="http://gxmame.sourceforge.net/">frontend for XMame using the GTK library</uri></li>
<li>games-emulation/hatari: <uri link="http://hatari.sourceforge.net/">Atari ST emulator</uri></li>
<li>games-emulation/infones: <uri link="http://www.geocities.co.jp/SiliconValley/5604/infones/">A fast and portable NES emulator</uri></li>
<li>games-emulation/mekanix: <uri link="http://www.smspower.org/meka/">SG-1000, SC-3000, SF-7000, SSC, SMS, GG, COLECO, and OMV emulator</uri></li>
<li>games-emulation/mupen64: <uri link="http://mupen64.emulation64.com/">A Nintendo 64 (N64) emulator</uri></li>
<li>games-emulation/nestra: <uri link="http://nestra.linuxgames.com/">NES emulation for Linux/x86</uri></li>
<li>games-emulation/nwwine: <uri link="http://www.winehq.com/">A special version of wine for the Never Winter Nights toolkit</uri></li>
<li>games-emulation/pcsx: <uri link="http://www.pcsx.net/">Playstation emulator</uri></li>
<li>games-emulation/pcsx2: <uri link="http://www.pcsx2.net/">Playstation2 emulator</uri></li>
<li>games-emulation/ps2emu-cddvdlinuz: <uri link="http://www.pcsx2.net/">PSEmu2 CD/DVD plugin</uri></li>
<li>games-emulation/ps2emu-cdvdiso: <uri link="http://www.pcsx2.net/">PSEmu2 CD/DVD iso plugin</uri></li>
<li>games-emulation/ps2emu-gssoft: <uri link="http://www.pcsx2.net/">PSEmu2 GPU plugin</uri></li>
<li>games-emulation/ps2emu-padxwin: <uri link="http://www.pcsx2.net/">PSEmu2 PAD plugin</uri></li>
<li>games-emulation/ps2emu-spu2null: <uri link="http://www.pcsx2.net/">PSEmu2 NULL Sound plugin</uri></li>
<li>games-emulation/psemu-cdr: <uri link="http://www.pcsx.net/">PSEmu plugin to read from CD-ROM</uri></li>
<li>games-emulation/psemu-cdriso: <uri link="http://www.pcsx.net/">PSEmu plugin to read CD-images</uri></li>
<li>games-emulation/psemu-eternalspu: <uri link="http://www1.odn.ne.jp/psx-alternative/">PSEmu Eternal SPU</uri></li>
<li>games-emulation/psemu-gpupetemesagl: <uri link="http://home.t-online.de/home/PeteBernert/">PSEmu MesaGL GPU</uri></li>
<li>games-emulation/psemu-padjoy: <uri link="http://www.ammoq.com/">PSEmu plugin to use joysticks/gamepads in PSX-emulators</uri></li>
<li>games-emulation/psemu-padxwin: <uri link="http://www.pcsx.net/">PSEmu plugin to use the keyboard as a gamepad</uri></li>
<li>games-emulation/psemu-peopssoftgpu: <uri link="http://sourceforge.net/projects/peops/">P.E.Op.S Software GPU plugin</uri></li>
<li>games-emulation/psemu-peopsspu: <uri link="http://peops.sourceforge.net/">P.E.Op.S Sound Emulation (SPU) PSEmu Plugin</uri></li>
<li>games-emulation/psemu-spunull: <uri link="http://www.pcsx.net/">PSEmu plugin to use a null sound driver</uri></li>
<li>games-emulation/qmamecat: <uri link="http://www.mameworld.net/mamecat/">QT mame catalog and frontend</uri></li>
<li>games-emulation/raine: <uri link="http://www.rainemu.com/">R A I N E  M680x0 Arcade Emulation</uri></li>
<li>games-emulation/snes9x: <uri link="http://www.snes9x.com/">Super Nintendo Entertainment System (SNES) emulator</uri></li>
<li>games-emulation/stella: <uri link="http://stella.sourceforge.net/">Stella Atari 2600 VCS Emulator</uri></li>
<li>games-emulation/timestamp.x: <uri link="http://stella.sourceforge.net/">Stella Atari 2600 VCS Emulator</uri></li>
<li>games-emulation/tuxnes: <uri link="http://tuxnes.sourceforge.net/">emulator for the 8-bit Nintendo Entertainment System</uri></li>
<li>games-emulation/vgba: <uri link="http://www.komkon.org/fms/VGBA/">emulator of the GameBoy Advance</uri></li>
<li>games-emulation/visualboyadvance: <uri link="http://vboy.emuhq.com/">gameboy, gameboy color, and gameboy advance emulator</uri></li>
<li>games-emulation/xmame: <uri link="http://x.mame.net/">Multiple Arcade Machine Emulator for X11</uri></li>
<li>games-emulation/xmess: <uri link="http://x.mame.net/">Multiple Arcade Machine Emulator for X11</uri></li>
<li>games-emulation/zinc: <uri link="http://www.emuhype.com/">ZiNc is an x86 binary-only emulator for the Sony ZN-1, ZN-2, and Namco System 11 arcade systems.</uri></li>
<li>games-emulation/zsnes: <uri link="http://www.zsnes.com/">SNES (Super Nintendo) emulator that uses x86 assembly</uri></li>
<li>games-engines/exult: <uri link="http://exult.sourceforge.net/">an Ultima 7 game engine that runs on modern operating systems</uri></li>
<li>games-engines/freesci: <uri link="http://freesci.linuxgames.com/">Sierra script interpreter for your old Sierra adventures</uri></li>
<li>games-engines/frotz: <uri link="http://www.cs.csubak.edu/~dgriffi/proj/frotz/">Curses based interpreter for Z-code based text games</uri></li>
<li>games-engines/kwest: <uri link="http://users.pandora.be/peter.bienstman/kwest/">An Inform interactive fiction interpreter for KDE</uri></li>
<li>games-engines/scummvm: <uri link="http://scummvm.sourceforge.net/">Reimplementation of the SCUMM game engine used in Lucasarts adventures</uri></li>
<li>games-engines/timestamp.x: <uri link="http://scummvm.sourceforge.net/">Reimplementation of the SCUMM game engine used in Lucasarts adventures</uri></li>
<li>games-engines/xzip: <uri link="http://www.eblong.com/zarf/xzip.html">X interface to Z-code based text games</uri></li>
<li>games-engines/zoom: <uri link="http://www.logicalshift.demon.co.uk/unix/zoom/">A fast, clean, modern Z-code interpreter for X</uri></li>
<li>games-fps/aaquake2: <uri link="http://www.jfedor.org/aaquake2/">text mode Quake II</uri></li>
<li>games-fps/aaut: <uri link="http://icculus.org/~chunky/ut/aaut/">ascii mode unreal tournament</uri></li>
<li>games-fps/americas-army: <uri link="http://www.americasarmy.com/">America's Army: Operations - military simulations by the U.S. Army to provide civilians with insights on soldiering</uri></li>
<li>games-fps/anaglyph-stereo-quake: <uri link="http://home.iprimus.com.au/crbean/">play Quake in 3D with red - blue glasses</uri></li>
<li>games-fps/avp-cvs: <uri link="http://www.icculus.org/avp/">Linux port of Aliens vs Predator</uri></li>
<li>games-fps/blackshades-cvs: <uri link="http://www.wolfire.com/blackshades.html http://www.icculus.org/blackshades/">you control a psychic bodyguard, and try to protect the VIP</uri></li>
<li>games-fps/cube: <uri link="http://wouter.fov120.com/cube/">Landscape-style engine that pretends to be an indoor first person shooter engine</uri></li>
<li>games-fps/doomlegacy: <uri link="http://legacy.newdoom.com/">Doom legacy, THE doom port</uri></li>
<li>games-fps/duke3d: <uri link="http://icculus.org/projects/duke3d/">port of the original DukeNukem 3D</uri></li>
<li>games-fps/enemy-territory: <uri link="http://www.idsoftware.com/">Return to Castle Wolfenstein: Enemy Territory - standalone multi-player game based on Return to Castle Wolfenstein</uri></li>
<li>games-fps/freedoom: <uri link="http://freedoom.sourceforge.net/">Freedoom - Open Source Doom resources</uri></li>
<li>games-fps/lsdldoom: <uri link="http://firehead.org/~jessh/lsdldoom/">Port of ID's doom to SDL</uri></li>
<li>games-fps/mtavc: <uri link="http://www.multitheftauto.com/">A server for a multi-player mod for GTA3</uri>	einfo "${HOMEPAGE} and put it in ${DISTDIR}"</li>
<li>games-fps/nprquake-sdl: <uri link="http://www.cs.wisc.edu/graphics/Gallery/NPRQuake/ http://www.tempestgames.com/ryan/">quake1 utilizing a hand drawn engine</uri></li>
<li>games-fps/prboom: <uri link="http://prboom.sourceforge.net/">Port of ID's doom to SDL and OpenGL</uri></li>
<li>games-fps/quake1: <uri link="http://www.idsoftware.com/games/quake/quake/">The original Quake engine straight from id !</uri></li>
<li>games-fps/quake2-data: <uri link="http://www.idsoftware.com/">iD Software's Quake 2 ... the data files</uri></li>
<li>games-fps/quake2-relnev: <uri link="http://icculus.org/quake2/">The Icculus linux port of ID's quake2 engine</uri></li>
<li>games-fps/quake3: <uri link="http://www.idsoftware.com/">Quake III Arena - 3rd installment of the classic id 3D first-person shooter</uri></li>
<li>games-fps/quake3-demo: <uri link="http://www.idsoftware.com/games/quake/quake3-arena/">Quake III Arena - Demo version</uri></li>
<li>games-fps/quakeforge: <uri link="http://www.quakeforge.org/">A new 3d engine based off of id Softwares's legendary Quake and QuakeWorld game engine</uri></li>
<li>games-fps/red-blue-quake2: <uri link="http://www.jfedor.org/red-blue-quake2/">red-blue Quake II !  play quake2 w/3d glasses !</uri></li>
<li>games-fps/rott: <uri link="http://www.icculus.org/rott/">Rise of the Triad for Linux!</uri></li>
<li>games-fps/rtcw: <uri link="http://games.activision.com/games/wolfenstein/">Return to Castle Wolfenstein - Long awaited sequel to Wolfenstein 3D</uri></li>
<li>games-fps/soldieroffortune: <uri link="http://www.lokigames.com/products/sof/">Soldier of Fortune - First-person shooter based on the mercinary trade</uri></li>
<li>games-fps/tenebrae: <uri link="http://tenebrae.sourceforge.net/">adds stencil shadows and per pixel lights to quake</uri></li>
<li>games-fps/timestamp.x: <uri link="http://tenebrae.sourceforge.net/">adds stencil shadows and per pixel lights to quake</uri></li>
<li>games-fps/transfusion-bin: <uri link="http://www.planetblood.com/qblood/">Blood remake</uri></li>
<li>games-fps/ttyquake: <uri link="http://webpages.mr.net/bobz/ttyquake/">Play Quake at a text terminal, in an xterm, or over a telnet session</uri></li>
<li>games-fps/unreal: <uri link="http://www.unreal.com/">Futuristic FPS (a hack that runs on top of Unreal Tournament)</uri></li>
<li>games-fps/unreal-tournament: <uri link="http://www.unrealtournament.com/">Futuristic FPS</uri></li>
<li>games-fps/unreal-tournament-bonuspacks: <uri link="http://www.unrealtournament.com/">Futuristic FPS (bonus packs)</uri></li>
<li>games-fps/unreal-tournament-goty: <uri link="http://www.unrealtournament.com/">Futuristic FPS (Game Of The Year edition)</uri></li>
<li>games-fps/unreal-tournament-infiltration: <uri link="http://infiltration.sentrystudios.net/">Realistic mod for Unreal Tournament</uri></li>
<li>games-fps/unreal-tournament-strikeforce: <uri link="http://www.strikeforcecenter.com/">A UT addon where you fight terrorists as part of an elite strikeforce</uri></li>
<li>games-fps/ut2003: <uri link="http://www.unrealtournament2003.com/">Unreal Tournament 2003 - Sequel to the 1999 Game of the Year multi-player first-person shooter</uri></li>
<li>games-fps/ut2003-demo: <uri link="http://www.ut2003.com/">Unreal Tournament 2003 Demo</uri></li>
<li>games-fps/vendetta-test: <uri link="http://www.guildsoftware.com/test.html">A testbed for a space-based MMORPG with amazing graphics</uri></li>
<li>games-fps/wolfgl: <uri link="http://wolfgl.sourceforge.net/">Wolfenstein and Spear of Destiny port using OpenGL</uri></li>
<li>games-kids/childsplay: <uri link="http://childsplay.sourceforge.net">A suite of educational games for young children</uri></li>
<li>games-kids/gcompris: <uri link="http://ofset.sourceforge.net/gcompris/">full featured educational application for children from 3 to 10</uri></li>
<li>games-kids/lletters: <uri link="http://lln.sourceforge.net/">Game that helps young kids learn their letters and numbers</uri></li>
<li>games-kids/matritsa: <uri link="http://imagic.weizmann.ac.il/~dov/freesw/matritsa.html">Kids card/puzzle game</uri></li>
<li>games-kids/stickers: <uri link="http://users.powernet.co.uk/kienzle/stickers/">Stickers Book for small children</uri></li>
<li>games-kids/timestamp.x: <uri link="http://users.powernet.co.uk/kienzle/stickers/">Stickers Book for small children</uri></li>
<li>games-kids/tuxmath: <uri link="http://www.newbreedsoftware.com/tuxmath/">Educational arcade game where you have to solve math problems</uri></li>
<li>games-kids/tuxmathscrabble: <uri link="http://sourceforge.net/projects/tuxmathscrabble/">math-version of the popular board game for children 4-10</uri></li>
<li>games-kids/tuxtype: <uri link="http://www.geekcomix.com/dm/tuxtype/">Typing tutorial with lots of eye-candy</uri></li>
<li>games-misc/asr-manpages: <uri link="http://debian.org/">set of humorous manual pages developed on alt.sysadmin.recovery</uri></li>
<li>games-misc/bsd-games: <uri link="http://www.advogato.org/proj/bsd-games/">collection of games from NetBSD</uri></li>
<li>games-misc/bsd-games-non-free: <uri link="http://www.advogato.org/proj/bsd-games/">collection of games from NetBSD</uri></li>
<li>games-misc/c++robots: <uri link="http://www.gamerz.net/c++robots/">ongoing 'King of the Hill' (KotH) tournament</uri></li>
<li>games-misc/cowsay: <uri link="http://www.nog.net/~tony/warez/cowsay.shtml">configurable talking ASCII cow (and other characters)</uri></li>
<li>games-misc/fortune-mod: <uri link="ftp://sunsite.unc.edu/pub/Linux/games/amusements/fortune/">The notorious fortune program</uri></li>
<li>games-misc/fortune-mod-bofh-excuses: <uri link="http://www.stlim.net/staticpages/index.php?page=20020814005536450">Excuses from Bastard Operator from Hell</uri></li>
<li>games-misc/fortune-mod-calvin: <uri link="http://www.netmeister.org/misc.html">Quotes from Calvin and Hobbes Comic Books</uri></li>
<li>games-misc/fortune-mod-dubya: <uri link="http://dubya.seiler.us">Quotes from George W. Bush</uri></li>
<li>games-misc/fortune-mod-futurama: <uri link="http://www.netmeister.org/misc.html">Quotes from the TV-Series -Futurama-</uri></li>
<li>games-misc/fortune-mod-gentoo-dev: <uri link="http://oppresses.us/~avenj/index.html">Fortune database of #gentoo-dev quotes</uri></li>
<li>games-misc/fortune-mod-hitchhiker: <uri link="http://www.splitbrain.org/index.php?x=.%2FFortunes%2Fhitchhiker">Quotes from Hitchhikers Guide to the Galaxy</uri></li>
<li>games-misc/fortune-mod-homer: <uri link="http://www.cs.indiana.edu/~crcarter/homer/homer.html">Quotes from Homer Simpson</uri></li>
<li>games-misc/fortune-mod-humorixfortunes: <uri link="http://i-want-a-website.com/about-linux/downloads.shtml">Extra fortune cookies for fortune</uri></li>
<li>games-misc/fortune-mod-kernelcookies: <uri link="http://unattached.i-no.de/software-misc.shtml">A collection of funny lines from the Linux kernel</uri></li>
<li>games-misc/fortune-mod-osfortune: <uri link="http://www.dibona.com/opensources/index.shtml">Open sources fortune file</uri></li>
<li>games-misc/fortune-mod-simpsons-chalkboard: <uri link="http://www.splitbrain.org/index.php?x=.%2FFortunes%2Fsimpsons">Quotes from Bart Simpson's Chalkboard, shown at the opening of each Simpsons episode</uri></li>
<li>games-misc/fortune-mod-smac: <uri link="http://homepages.ihug.com.au/~alana/">Quotes from the Alpha Centauri: Alien Crossfire tech tree</uri></li>
<li>games-misc/fortune-mod-sp-fortunes: <uri link="http://eol.init1.nl/pub/linux/index.php">South Park Fortunes</uri></li>
<li>games-misc/fortune-mod-starwars: <uri link="http://www.splitbrain.org/index.php?x=.%2FFortunes%2Fstarwars">Quotes from StarWars, The Empire Strikes Back, and Return of the Jedi</uri></li>
<li>games-misc/fortune-mod-tao: <uri link="http://aboleo.net/software/">set of fortunes based on the Tao-Teh-Ching</uri></li>
<li>games-misc/funny-manpages: <uri link="http://debian.org/">funny manpages collected from various sources</uri></li>
<li>games-misc/gnurobots: <uri link="http://www.gnu.org/directory/games/gnurobots.html">Game/diversion where you construct a program for a little robot then set him loose and watch him explore a world on his own</uri></li>
<li>games-misc/groach: <uri link="http://home.catv.ne.jp/pp/ginoue/software/groach/">all-time best the xroach returns to GNOME</uri></li>
<li>games-misc/sex: <uri link="http://spatula.net/software/sex/">Spouts silly mad-lib-style porn-like text</uri></li>
<li>games-misc/timestamp.x: <uri link="http://spatula.net/software/sex/">Spouts silly mad-lib-style porn-like text</uri></li>
<li>games-misc/wtf: <uri link="http://www.mu.org/~mux/wtf/">translates acronyms for you</uri></li>
<li>games-misc/wumpus: <uri link="http://cvsweb.netbsd.org/bsdweb.cgi/src/games/wump/">Classic Hunt the Wumpus Adventure Game</uri></li>
<li>games-misc/xcruise: <uri link="http://tanaka-www.cs.titech.ac.jp/%7Eeuske/prog/">Fly about 3D-formed file system</uri></li>
<li>games-misc/xpenguins: <uri link="http://xpenguins.seul.org/">Cute little penguins invading your desktop</uri></li>
<li>games-mud/gMOO: <uri link="http://www.nowmoo.demon.nl/">GTK+ Based MOO client</uri></li>
<li>games-mud/gmudix: <uri link="http://dw.nl.eu.org/mudix.html">An improved version of MUDix, a MUD client for the Linux console.  It is designed to run as an X application, and was developed with GTK+ 2.0.  gMUDix has all the features of MUDix and more, including ANSI color mapping, aliasing, macros, paths, tab completions, timers, triggers, variables, and an easy-to-use script language.</uri></li>
<li>games-mud/gnome-mud: <uri link="http://amcl.sourceforge.net/">GNOME MUD client</uri></li>
<li>games-mud/kmuddy: <uri link="http://www.kmuddy.org/index.php">MUD client for KDE</uri></li>
<li>games-mud/mcl: <uri link="http://www.andreasen.org/mcl/">A console MUD client scriptable in Perl and Python</uri></li>
<li>games-mud/mudix: <uri link="http://dwizardry.dhs.org/mudix.html">A small, stable MUD client for the console</uri></li>
<li>games-mud/panache: <uri link="http://panache.sourceforge.net/">Gnome TinyFugue port</uri></li>
<li>games-mud/tf: <uri link="http://tf.tcp.com/~hawkeye/tf/">A small full-featured MUD client</uri></li>
<li>games-mud/timestamp.x: <uri link="http://tf.tcp.com/~hawkeye/tf/">A small full-featured MUD client</uri></li>
<li>games-mud/tintin: <uri link="http://mail.newclear.net/tintin/">(T)he k(I)cki(N) (T)ickin d(I)kumud clie(N)t</uri></li>
<li>games-mud/tkMOO-light: <uri link="http://www.awns.com/tkMOO-light/">MOO Client written in TK</uri></li>
<li>games-mud/ytin: <uri link="http://ytin.sourceforge.net/">yet another TinTin++</uri></li>
<li>games-puzzle/4stattack: <uri link="http://forcedattack.sourceforge.net/">Connect-4 game, single or network multiplayer</uri></li>
<li>games-puzzle/atomix: <uri link="http://triq.net/~pearl/atomix.php">a little mind game for GNOME2</uri></li>
<li>games-puzzle/codebreaker: <uri link="http://packages.debian.org/codebreaker">mastermind style game</uri></li>
<li>games-puzzle/construo: <uri link="http://www.nongnu.org/construo/">2d construction toy with objects that react on physical forces</uri></li>
<li>games-puzzle/cuyo: <uri link="http://www.karimmi.de/cuyo/">highly addictive and remotely related to tetris</uri></li>
<li>games-puzzle/enigma: <uri link="http://www.freesoftware.fsf.org/enigma/">puzzle game similar to Oxyd</uri></li>
<li>games-puzzle/fbg: <uri link="http://home.attbi.com/~furiousjay/code/fbg.html">A tetris-clone written in OpenGL</uri></li>
<li>games-puzzle/gemdropx: <uri link="http://www.newbreedsoftware.com/gemdropx/">A puzzle game where it's your job to clear the screen of gems</uri></li>
<li>games-puzzle/greedy: <uri link="http://www.kotinet.com/juhamattin/linux/index.html">fun little ncurses puzzle game</uri></li>
<li>games-puzzle/groundhog: <uri link="http://home-2.consunet.nl/~cb007736/groundhog.html">Kids card/puzzle game</uri></li>
<li>games-puzzle/gtetrinet: <uri link="http://gtetrinet.sourceforge.net/">Tetrinet Clone for GNOME 2</uri></li>
<li>games-puzzle/gtkballs: <uri link="http://gtkballs.antex.ru/">An entertaining game based on the old DOS game lines</uri></li>
<li>games-puzzle/icebreaker: <uri link="http://www.mattdm.org/icebreaker/">Trap and capture penguins on Antarctica</uri></li>
<li>games-puzzle/kiki: <uri link="http://kiki.sourceforge.net/">Fun 3D puzzle game using SDL/OpenGL</uri></li>
<li>games-puzzle/lpairs: <uri link="http://lgames.sourceforge.net/index.php?project=LPairs">Kids card/puzzle game</uri></li>
<li>games-puzzle/ltris: <uri link="http://lgames.sourceforge.net/">very polished Tetris clone</uri></li>
<li>games-puzzle/magiccube4d: <uri link="http://www.superliminal.com/cube/cube.htm">four-dimensional analog of Rubik's cube</uri></li>
<li>games-puzzle/marbles: <uri link="http://lgames.sourceforge.net/index.php?project=Marbles">puzzle game inspired by Atomix and written in SDL</uri></li>
<li>games-puzzle/mindless: <uri link="http://mindless.sourceforge.net/">play collectable/trading card games (Magic: the Gathering and possibly others) against other people</uri></li>
<li>games-puzzle/mirrormagic: <uri link="http://www.artsoft.org/mirrormagic/">a game like Deflektor (C 64) or Mindbender (Amiga)</uri></li>
<li>games-puzzle/neverball: <uri link="http://aoeu.snth.net/neverball/">Clone of Super Monkey Ball using SDL/OpenGL</uri></li>
<li>games-puzzle/pathological: <uri link="http://pathological.sourceforge.net/">An enriched clone of the game 'Logical' by Rainbow Arts</uri></li>
<li>games-puzzle/penguzzle: <uri link="http://www.naskita.com/linux/penguzzle/penguzzle.shtml">Tcl/Tk variant of the well-known 15-puzzle game</uri></li>
<li>games-puzzle/pingus: <uri link="http://pingus.seul.org/">free Lemmings clone</uri></li>
<li>games-puzzle/quadra: <uri link="http://quadra.sourceforge.net/">A tetris clone with multiplayer support</uri></li>
<li>games-puzzle/quintalign: <uri link="http://www.heni-online.de/linux/">A one player boardgame - similar to Tetris</uri></li>
<li>games-puzzle/tetrix: <uri link="http://tetrinetx.sourceforge.net/">A GNU TetriNET server</uri></li>
<li>games-puzzle/timestamp.x: <uri link="http://tetrinetx.sourceforge.net/">A GNU TetriNET server</uri></li>
<li>games-puzzle/toppler: <uri link="http://toppler.sourceforge.net/">Reimplemention of Nebulous using SDL</uri></li>
<li>games-puzzle/wakkabox: <uri link="http://kenn.frap.net/wakkabox/">A simple block-pushing game</uri></li>
<li>games-puzzle/xblockout: <uri link="http://www710.univ-lyon1.fr/ftp/xbl/xbl.html">XBlockOut: X Window block dropping game in 3 Dimension</uri></li>
<li>games-puzzle/xbomb: <uri link="http://www.gedanken.demon.co.uk/xbomb/">Minesweeper clone with hexagonal, rectangular and triangular grid</uri></li>
<li>games-puzzle/xwelltris: <uri link="http://xnc.dubna.su/xwelltris/">tetris like popular game</uri></li>
<li>games-roguelike/adom: <uri link="http://www.adom.de/">Ancient Domains Of Mystery rogue-like game</uri></li>
<li>games-roguelike/angband: <uri link="http://thangorodrim.net/">A Roguelike adventure game</uri></li>
<li>games-roguelike/crossfire-client: <uri link="http://crossfire.real-time.com/">Client for the nethack-style but more in the line of UO</uri></li>
<li>games-roguelike/falconseye: <uri link="http://falconseye.sourceforge.net/">A graphical version of nethack</uri></li>
<li>games-roguelike/ivan: <uri link="http://ivan.sourceforge.net/">Rogue-like game with SDL graphics</uri></li>
<li>games-roguelike/nethack: <uri link="http://www.nethack.org/">The ultimate old-school single player dungeon exploration game</uri></li>
<li>games-roguelike/noegnud-data: <uri link="http://noegnud.sourceforge.net/">ultimate User Interface for nethack</uri></li>
<li>games-roguelike/noegnud-nethack: <uri link="http://noegnud.sourceforge.net/">an alternate 2D/3D graphical user interface for NetHack</uri></li>
<li>games-roguelike/noegnud-slashem: <uri link="http://noegnud.sourceforge.net/">an alternate 2D/3D graphical user interface for SLASH'EM</uri></li>
<li>games-roguelike/slashem: <uri link="http://www.slashem.org/">Super Lotsa Added Stuff Hack - Extended Magic. A Nethack Variant.</uri></li>
<li>games-roguelike/timestamp.x: <uri link="http://www.slashem.org/">Super Lotsa Added Stuff Hack - Extended Magic. A Nethack Variant.</uri></li>
<li>games-roguelike/tome: <uri link="http://t-o-m-e.net/">A roguelike game, where you can save the world from Morgoth and battle evil (or become evil ;])</uri></li>
<li>games-roguelike/zangband: <uri link="http://www.zangband.org/">An enhanced version of the Roguelike game Angband</uri></li>
<li>games-rpg/adonthell: <uri link="http://adonthell.linuxgames.com/">roleplaying game engine</uri></li>
<li>games-rpg/egoboo: <uri link="http://egoboo.sourceforge.net/">egoboo: a 3d dungeon crawling adventure in the spirit of NetHack</uri></li>
<li>games-rpg/freedroid: <uri link="http://freedroid.sourceforge.net/">Freedroid - a Paradroid clone</uri></li>
<li>games-rpg/freedroidrpg: <uri link="http://freedroid.sourceforge.net/">Freedroid - a Paradroid clone</uri></li>
<li>games-rpg/gwiz: <uri link="http://icculus.org/gwiz/">clone of old-school Wizardry(tm) games by SirTech</uri></li>
<li>games-rpg/nwn: <uri link="http://nwn.bioware.com/downloads/linuxclient.html">Never Winter Nights</uri></li>
<li>games-rpg/openglad: <uri link="http://snowstorm.sf.net/">An SDL clone of Gladiator, a classic RPG game</uri></li>
<li>games-rpg/openrpg: <uri link="http://www.openrpg.com/">Open RPG Client</uri></li>
<li>games-rpg/pcgen: <uri link="http://pcgen.sourceforge.net">D&amp;D character generator</uri></li>
<li>games-rpg/planeshift: <uri link="http://www.planeshift.it/">virtual fantasy world MMORPG</uri></li>
<li>games-rpg/timestamp.x: <uri link="http://www.planeshift.it/">virtual fantasy world MMORPG</uri></li>
<li>games-rpg/vegastrike: <uri link="http://vegastrike.sourceforge.net/">3d OpenGL Action RPG space sim</uri></li>
<li>games-rpg/wastesedge: <uri link="http://adonthell.linuxgames.com/">role playing game to showcase the adonthell engine</uri></li>
<li>games-server/halfd: <uri link="http://halfd.org/">Half-Life server management tool</uri></li>
<li>games-server/halflife-adminmod: <uri link="http://www.adminmod.org/">give people admin access (and a looooooot more)</uri></li>
<li>games-server/halflife-clanmod: <uri link="http://www.unitedadmins.com/clanmod.php">tool for Half-Life mods which helps ease admining a server</uri></li>
<li>games-server/halflife-cstrike: <uri link="http://www.counter-strike.net/">Halflife Counterstrike mod (server only, client only works in wine)</uri></li>
<li>games-server/halflife-dpb: <uri link="http://www.digitalpaintball.net/">Halflife Digital Paintball mod</uri></li>
<li>games-server/halflife-entmod: <uri link="http://www.adminop.net/">adds real-time entity control for admins</uri></li>
<li>games-server/halflife-hlguard: <uri link="http://www.unitedadmins.com/hlguard.php">server-side anti-cheat solution for Half-Life and it's many MODs</uri></li>
<li>games-server/halflife-hookmod: <uri link="http://www.adminop.net/">add a hook feature to any Half-Life mod</uri></li>
<li>games-server/halflife-metamod: <uri link="http://www.metamod.org/">plugin manager for Half-Life server</uri></li>
<li>games-server/halflife-modsetup: <uri link="http://wh0rd.org/">script to assist in setting up your server</uri></li>
<li>games-server/halflife-ns: <uri link="http://www.natural-selection.org/">Halflife Natural Selection mod ... kill aliens or marines</uri></li>
<li>games-server/halflife-server: <uri link="http://www.valve.com/">Halflife Linux Server</uri></li>
<li>games-server/halflife-statsme: <uri link="http://www.unitedadmins.com/statsme.php">plugin for metamod to track in game statistics in real time</uri></li>
<li>games-server/halflife-steam: <uri link="http://www.steampowered.com/">client for Valve Software's Steam content delivery program</uri></li>
<li>games-server/hlstats: <uri link="http://www.hlstats.org/">real-time player rankings/statistics for half-life</uri></li>
<li>games-server/monopd: <uri link="http://unixcode.org/monopd/">server for atlantik games</uri></li>
<li>games-server/nwn-ded: <uri link="http://nwn.bioware.com/downloads/standaloneserver.html">Neverwinter Nights Dedicated server</uri></li>
<li>games-server/timestamp.x: <uri link="http://nwn.bioware.com/downloads/standaloneserver.html">Neverwinter Nights Dedicated server</uri></li>
<li>games-server/ut2003-ded: <uri link="http://www.ut2003.com/">Unreal Tournament 2003 Linux Dedicated Server</uri></li>
<li>games-simulation/cannonsmash: <uri link="http://cannonsmash.sourceforge.net/">3D tabletennis game</uri></li>
<li>games-simulation/corewars: <uri link="http://corewars.sourceforge.net/">Simulation game involving virtual machine code</uri></li>
<li>games-simulation/flightgear: <uri link="http://www.flightgear.org/">Open Source Flight Simulator</uri></li>
<li>games-simulation/gl117: <uri link="http://home.t-online.de/home/primetime./gl-117/">An action flight simulator</uri></li>
<li>games-simulation/lincity: <uri link="http://www.floot.demon.co.uk/lincity.html">city/country simulation game for X and Linux SVGALib</uri></li>
<li>games-simulation/planets: <uri link="http://planets.homedns.org/">a simple interactive planetary system simulator</uri></li>
<li>games-simulation/searchandrescue: <uri link="http://wolfpack.twu.net/SearchAndRescue/">aircraft based rescue simulator</uri></li>
<li>games-simulation/senken: <uri link="http://www.contrib.andrew.cmu.edu/~tmartin/senken/">city simulation game</uri></li>
<li>games-simulation/simutrans: <uri link="http://www.simutrans.de/">A free Transport Tycoon clone</uri></li>
<li>games-simulation/stoned: <uri link="http://www.webhome.de/stoned/">3D curling simulation</uri></li>
<li>games-simulation/timestamp.x: <uri link="http://www.webhome.de/stoned/">3D curling simulation</uri></li>
<li>games-sports/billardgl: <uri link="http://www.billardgl.de/">A OpenGL billards game</uri></li>
<li>games-sports/foobillard: <uri link="http://foobillard.sunsite.dk/">8ball, 9ball, snooker and carambol game</uri></li>
<li>games-sports/gracer: <uri link="http://gracer.sourceforge.net/">3D motor sports simulator</uri></li>
<li>games-sports/race: <uri link="http://projectz.org/?id=70">OpenGL Racing Game</uri></li>
<li>games-sports/racer-bin: <uri link="http://www.racer.nl/">A car simulation game focusing on realism, in the style of Grand Prix Legends</uri></li>
<li>games-sports/soccar: <uri link="http://soccar.sourceforge.net/">Soccer with Cars</uri></li>
<li>games-sports/timestamp.x: <uri link="http://soccar.sourceforge.net/">Soccer with Cars</uri></li>
<li>games-sports/torcs: <uri link="http://torcs.org/">The Open Racing Car Simulator</uri></li>
<li>games-sports/trophy: <uri link="http://trophy.sourceforge.net/">2D Racing Game</uri></li>
<li>games-strategy/asc: <uri link="http://www.asc-hq.org/">turn based strategy game designed in the tradition of the Battle Isle series</uri></li>
<li>games-strategy/attal: <uri link="http://www.attal-thegame.org/">turn-based strategy game project</uri></li>
<li>games-strategy/boson: <uri link="http://boson.eu.org/">real-time strategy game, with the feeling of Command&amp;Conquer(tm) (needs at least 2 ppl to play)</uri></li>
<li>games-strategy/castle-combat: <uri link="http://www.linux-games.com/castle-combat/">A clone of the old arcade game Rampart</uri></li>
<li>games-strategy/crimson: <uri link="http://crimson.seul.org/">tactical war game in the tradition of Battle Isle</uri></li>
<li>games-strategy/dopewars: <uri link="http://dopewars.sourceforge.net/">Re-Write of the game Drug Wars</uri></li>
<li>games-strategy/freeciv: <uri link="http://www.freeciv.org/">multiplayer strategy game (Civilization Clone)</uri></li>
<li>games-strategy/freecnc: <uri link="http://freecnc-sf.holarse.net/">SDL-rewrite of the classical real time strategy hit Command &amp; Conquer</uri></li>
<li>games-strategy/freecraft: <uri link="http://freecraft.sourceforge.net/">realtime strategy game engine for games like Warcraft/Starcraft/etc.</uri></li>
<li>games-strategy/freecraft-fcmp: <uri link="http://freecraft.sourceforge.org/">A collection of graphic/sound files to replace the data files from a real WarCraft CD</uri></li>
<li>games-strategy/freelords: <uri link="http://www.freelords.org/">Free Warlords clone</uri></li>
<li>games-strategy/lgeneral: <uri link="http://lgames.sourceforge.net/index.php?project=LGeneral">A Panzer General clone written in SDL</uri></li>
<li>games-strategy/liquidwar: <uri link="http://www.ufoot.org/liquidwar/">unique multiplayer wargame</uri></li>
<li>games-strategy/scorched3d: <uri link="http://www.scorched3d.co.uk/">Multi-player tank battle in 3D (OpenGL)</uri></li>
<li>games-strategy/spacehulk: <uri link="http://perso.enst.fr/~vinot/spacehulk/">A boardgame in the world of Warhammer 40k</uri></li>
<li>games-strategy/timestamp.x: <uri link="http://perso.enst.fr/~vinot/spacehulk/">A boardgame in the world of Warhammer 40k</uri></li>
<li>games-strategy/tornado: <uri link="http://home.kcore.de/~kiza/linux/tornado/">Clone of a C64 game -  destroy the opponent's house</uri></li>
<li>games-strategy/uqm: <uri link="http://sc2.sourceforge.net/">Port of Star Control 2</uri></li>
<li>games-strategy/xarchon: <uri link="http://xarchon.seul.org/">modelled after the golden oldie Archon game</uri></li>
<li>games-strategy/xscorch: <uri link="http://chaos2.org/xscorch/">clone of the classic DOS game, 'Scorched Earth'</uri></li>
<li>games-util/atlas: <uri link="http://atlas.sourceforge.net/">Chart Program to use with Flightgear Flight Simulator</uri></li>
<li>games-util/qstat: <uri link="http://www.qstat.org/">Server statics collector supporting many FPS games</uri></li>
<li>games-util/searchtool: <uri link="http://searchtool.sourceforge.net/">server browser for Internet games</uri></li>
<li>games-util/timestamp.x: <uri link="http://searchtool.sourceforge.net/">server browser for Internet games</uri></li>
<li>games-util/uglygs: <uri link="http://uglygs.uglypunk.com/">quickly searches the network for game servers</uri></li>
<li>games-util/umodpack: <uri link="http://umodpack.sourceforge.net/">portable and useful [un]packer for Unreal Tournament's Umod files</uri></li>
<li>games-util/xboxgw: <uri link="http://www.xboxgw.com/">Tunnels XBox system link games over the net</uri></li>
<li>games-util/xqf: <uri link="http://www.linuxgames.com/xqf/">A server browser for many FPS games.  It's a frontend for qstat.</uri></li>
<li>gnome-base/control-center: <uri link="http://www.gnome.org/">the gnome2 Desktop configuration tool</uri></li>
<li>gnome-base/eel: <uri link="http://www.gnome.org/">EEL is the Eazel Extentions Library</uri></li>
<li>gnome-base/gconf: <uri link="http://www.gnome.org/">Gconf</uri></li>
<li>gnome-base/gnome: <uri link="http://www.gnome.org/">Meta package for the GNOME desktop.</uri></li>
<li>gnome-base/gnome-applets: <uri link="http://www.gnome.org/">gnome-applets</uri></li>
<li>gnome-base/gnome-common: <uri link="http://www.gnome.org/">Some Common files for Gnome2 applications</uri></li>
<li>gnome-base/gnome-core: <uri link="http://www.gnome.org/">Core components of the GNOME desktop environment</uri></li>
<li>gnome-base/gnome-desktop: <uri link="http://www.gnome.org/">Libraries for the gnome desktop that is not part of the UI</uri></li>
<li>gnome-base/gnome-panel: <uri link="http://www.gnome.org/">The Panel for Gnome2</uri></li>
<li>gnome-base/gnome-print: <uri link="http://www.gnome.org/">GNOME printing library</uri></li>
<li>gnome-base/gnome-vfs: <uri link="http://www.gnome.org/">Gnome Virtual Filesystem</uri></li>
<li>gnome-base/libglade: <uri link="http://www.gnome.org/">GLADE is a interface builder</uri></li>
<li>gnome-base/libgtop: <uri link="http://www.gnome.org/">library that proivdes top functionality to applications</uri></li>
<li>gnome-base/librsvg: <uri link="http://www.gnome.org/">rendering svg library</uri></li>
<li>gnome-base/nautilus: <uri link="http://www.gnome.org/projects/nautilus/">A filemanager for the Gnome2 desktop</uri></li>
<li>gnome-extra/acme: <uri link="http://www.hadess.net/misc-code.php3">GNOME tool to make use of the multimedia buttons present on most laptops and internet keyboards.</uri></li>
<li>gnome-extra/battstat: <uri link="http://battstat.sourceforge.net">Battstat Applet, GNOME battery status applet.</uri></li>
<li>gnome-extra/bug-buddy: <uri link="http://www.gnome.org/">Bug report tool for GNOME</uri></li>
<li>gnome-extra/gal: <uri link="http://www.gnome.org/">The Gnome Application Libraries</uri></li>
<li>gnome-extra/gnobog: <uri link="http://www.nongnu.org/gnobog/">Gnome Bookmarks Organizer</uri></li>
<li>gnome-extra/gnome-games: <uri link="http://www.gnome.org/">gnome-utils</uri></li>
<li>gnome-extra/gnome-media: <uri link="http://www.prettypeople.org/~iain/gnome-media/">Multimedia related programs for the Gnome2 desktop</uri></li>
<li>gnome-extra/gnome-vfs-extras: <uri link="http://www.gnome.org/">the Gnome Virtual Filesystem extra libraries</uri></li>
<li>gnome-extra/gnome2-user-docs: <uri link="http://www.gnome.org">end user documentation for Gnome2 </uri></li>
<li>gnome-extra/gtkhtml: <uri link="http://www.gnome.org/">Lightweight HTML rendering/printing/editing engine.</uri></li>
<li>gnome-extra/gtop: <uri link="http://www.gnome.org/">gtop</uri></li>
<li>gnome-extra/libgda: <uri link="http://www.gnome.org/gnome-db">gda lib</uri></li>
<li>gnome-extra/libgnomedb: <uri link="http://www.gnome-db.org/">Library for writing gnome database programs</uri></li>
<li>gnome-extra/libgtkhtml: <uri link="http://www.gnome.org/">Lightweight HTML Rendering/Printing/Editing Engine</uri></li>
<li>gnome-extra/power-applet: <uri link="http://www.eskil.org/power-applet/">GNOME Panel applet that shows the battery state on notebooks</uri></li>
<li>kde-base/arts: <uri link="http://multimedia.kde.org">aRts, the KDE sound (and all-around multimedia) server/output manager</uri></li>
<li>kde-base/kde: <uri link="http://www.kde.org/">KDE 3.1 - merge this to pull in all non-developer kde-base/* packages</uri></li>
<li>kde-base/kde-env: <uri link="http://www.gentoo.org/">Sets up some env.d files for kde</uri></li>
<li>kde-base/kdeaddons: KDE addons - applets, plugins...</li>
<li>kde-base/kdeadmin: KDE administration tools (user manager, etc.)</li>
<li>kde-base/kdeartwork: KDE artwork package</li>
<li>kde-base/kdebase: KDE base packages: the desktop, panel, window manager, konqueror...</li>
<li>kde-base/kdebindings: KDE library bindings for languages other than c++</li>
<li>kde-base/kdeedu: KDE educational apps</li>
<li>kde-base/kdegames: KDE games (solitaire :-)</li>
<li>kde-base/kdegraphics: KDE graphics-related apps</li>
<li>kde-base/kdelibs: <uri link="http//www.kde.org/">KDE libraries needed by all kde programs</uri></li>
<li>kde-base/kdemultimedia: KDE multimedia apps: noatun, kscd, artsbuilder...</li>
<li>kde-base/kdenetwork: KDE network apps: kmail, kppp, knode...</li>
<li>kde-base/kdepim: KDE PIM (Personal Information Management) apps: korganizer...</li>
<li>kde-base/kdesdk: KDE SDK: kbabel, ...</li>
<li>kde-base/kdetoys: KDE toys</li>
<li>kde-base/kdeutils: KDE utilities</li>
<li>kde-base/timestamp.x: KDE utilities</li>
<li>media-fonts/arphicfonts: <uri link="http://www.arphic.com.tw/">Arphic Fonts</uri></li>
<li>media-fonts/artwiz-fonts: <uri link="http://fluxbox.sourceforge.net/docs/artwiz-fonts.php">Artwiz Fonts</uri></li>
<li>media-fonts/baekmuk-fonts: <uri link="ftp://ftp.nnongae.com/pub/gentoo/">Korean Baekmuk Font</uri></li>
<li>media-fonts/freefonts: <uri link="http://www.gimp.org">A Collection of Free True Type Fonts</uri></li>
<li>media-fonts/monafont: <uri link="http://monafont.sourceforge.net">Japanese bitmap fonts suitable for browsing 2ch</uri></li>
<li>media-fonts/mplus-fonts: <uri link="http://mplus-fonts.sourceforge.jp/">mplus Japanese BDF FONTS</uri></li>
<li>media-fonts/ttf-bitstream-vera: <uri link="http://www.gnome.org/fonts/">Bitstream Vera font family</uri></li>
<li>media-fonts/urw-fonts: free good quality fonts gpl'd by URW++</li>
<li>media-gfx/album: <uri link="http://MarginalHacks.com/Hacks/album/">HTML photo album generator</uri></li>
<li>media-gfx/eog: <uri link="http://www.gnome.org/">the Eye Of Gnome - Image Viewer and Cataloger for Gnome2</uri></li>
<li>media-gfx/exiftags: <uri link="http://johnst.org/sw/exiftags/">Extracts JPEG EXIF headers from digital camera photos</uri></li>
<li>media-gfx/grace: <uri link="http://plasma-gate.weizmann.ac.il/Grace/">WYSIWYG 2D plotting tool for the X Window System</uri></li>
<li>media-gfx/gthumb: <uri link="http://gthumb.sourceforge.net/">Image viewer and browser for Gnome</uri></li>
<li>media-gfx/k3studio: <uri link="http://k3studio.sourceforge.net">KDE universal workbench for 2D/3D modeling, visualization and simulation.</uri></li>
<li>media-gfx/kpovmodeler: <uri link="http://www.kpovmodeler.org">Graphical KDE POVRay modeler</uri></li>
<li>media-gfx/pornview: <uri link="http://pornview.sourceforge.net">Image viewer/manager with optional support for MPEG movies.</uri></li>
<li>media-gfx/povray: <uri link="http://www.povray.org/">The Persistance Of Vision Ray Tracer</uri></li>
<li>media-gfx/quat: <uri link="http://www.physcip.uni-stuttgart.de/phy11733/quat_e.html">A 3D quaternionic fractal generator</uri></li>
<li>media-gfx/sodipodi: <uri link="http://sodipodi.sourceforge.net/">Vector illustration application for GNOME</uri></li>
<li>media-gfx/timestamp.x: <uri link="http://sodipodi.sourceforge.net/">Vector illustration application for GNOME</uri></li>
<li>media-gfx/xv: <uri link="http://www.trilon.com/xv/index.html">An interactive image manipulation program for X which can deal with a wide variety of image formats</uri></li>
<li>media-libs/allegttf: <uri link="http://huizen.dds.nl/~deleveld/allegttf.htm">Anti-aliased text output and font loading routines for Allegro</uri></li>
<li>media-libs/alsa-lib: <uri link="http://www.alsa-project.org/">Advanced Linux Sound Architecture / Library</uri></li>
<li>media-libs/esdl: <uri link="http://esdl.sourceforge.net/">Erlang bindings for the SDL library</uri></li>
<li>media-libs/freetype: <uri link="http://www.freetype.org/">TTF-Library</uri></li>
<li>media-libs/gle: <uri link="http://www.linas.org/gle">GL extrusion library</uri></li>
<li>media-libs/gst-plugins: <uri link="http://gstreamer.sourceforge.net">Additional plugins for gstreamer - streaming media framework</uri></li>
<li>media-libs/gstreamer: <uri link="http://gstreamer.sourceforge.net">Streaming media framework</uri></li>
<li>media-libs/imlib2: <uri link="http://www.enlightenment.org/pages/imlib2.html">Version 2 of an advanced replacement library for libraries like libXpm</uri></li>
<li>media-libs/jpgalleg: <uri link="http://orbflux.com/jpgalleg/">The jpeg loading routines are able to load almost any JPG image file with Allegro.</uri></li>
<li>media-libs/kyra: <uri link="http://www.grinninglizard.com/kyra/index.html">Kyra Sprite Engine</uri></li>
<li>media-libs/ladcca: <uri link="http://pkl.net/~node/ladcca.html">Linux Audio Developer's Configuration and Connection API (LADCCA)</uri></li>
<li>media-libs/ladspa-cmt: <uri link="http://www.ladspa.org/">CMT (computer music toolkit) Lasdpa library plugins</uri></li>
<li>media-libs/libexif: <uri link="http://libexif.sf.net/">Library for parsing, editing, and saving EXIF data</uri></li>
<li>media-libs/libgphoto2: <uri link="http://www.gphoto.org/">free, redistributable digital camera software application</uri></li>
<li>media-libs/libhydrogen: <uri link="http://hydrogen.sourceforge.net">Linux Drum Machine - Libary</uri></li>
<li>media-libs/libid3tag: <uri link="http://mad.sourceforge.net">The MAD id3tag library</uri></li>
<li>media-libs/libjackasyn: <uri link="http://gige.xdv.org/soft/libjackasyn">An application/library for connecting OSS apps to Jackit.</uri></li>
<li>media-libs/libmad: <uri link="http://mad.sourceforge.net">\</uri>M\"peg \"A\"udio \"D\"ecoder library"</li>
<li>media-libs/libmustux: <uri link="http://www.nognu.org/protux">Protux - Libary</uri></li>
<li>media-libs/libsdl: <uri link="http://www.libsdl.org/">Simple Direct Media Layer</uri></li>
<li>media-libs/libungif: <uri link="http://prtr-13.ucsc.edu/~badger/software/libungif/index.shtml">A library for reading and writing gif images without LZW compression</uri></li>
<li>media-libs/libvorbis: <uri link="http://www.xiph.org/ogg/vorbis/index.html">the Ogg Vorbis sound file format library</uri></li>
<li>media-libs/libwmf: <uri link="http://www.wvware.com/libwmf.html">library for converting WMF files</uri></li>
<li>media-libs/loadpng: <uri link="http://www.alphalink.com.au/~tjaden/loadpng/">load and save PNG files in Allegro programs</uri></li>
<li>media-libs/sdl-net: <uri link="http://www.libsdl.org/projects/SDL_net/index.html">Simple Direct Media Layer Network Support Library</uri></li>
<li>media-libs/sdl-ttf: <uri link="http://www.libsdl.org/projects/SDL_ttf/">library that allows you to use TrueType fonts in SDL applications</uri></li>
<li>media-libs/xpm: <uri link="http://www.gentoo.org/">xpm is provided by xfree</uri></li>
<li>media-libs/yiff: <uri link="http://wolfpack.twu.net/YIFF/">high performance and stable sound server for UNIX games and apps</uri></li>
<li>media-plugins/alsa-xmms: <uri link="http://savannah.gnu.org/download/alsa-xmms/">XMMS output plugin for ALSA 0.9*.  Supports surround 4.0 output with conversion.</uri></li>
<li>media-plugins/rmxmms: REALSDK_<uri link="http://proforma.real.com/rnforms/resources/server/realsystemsdk/index.html">HOMEPAGE="http://www.xmms.org http://forms.real.com/rnforms/resources/server/realsystemsdk/index.html#download"RealAudio plugin for xmms</uri>		einfo "${REALSDK_HOMEPAGE}"</li>
<li>media-plugins/scribus-scripting: <uri link="http://web2.altmuehlnet.de/fschmid">Python-scripting plugin for Scribus</uri></li>
<li>media-plugins/xmms-dscope: <uri link="http://www.shell.linux.se/bm/index.php?page=xmmsplugin">Dual Scope visualization plugin for XMMS</uri></li>
<li>media-plugins/xmms-dspectogram: <uri link="http://www.shell.linux.se/bm/index.php?page=xmmsplugin">Dual spectral histogram visualization plugin for xmms</uri></li>
<li>media-plugins/xmms-fc: <uri link="http://xmms-fc.sourceforge.net/">Amiga Future Composer plug-in for XMMS</uri></li>
<li>media-plugins/xmms-goom: <uri link="http://ios.free.fr/?page=projet&amp;quoi=1&amp;lg=AN">Trippy Vis for XMMS using SDL.</uri></li>
<li>media-plugins/xmms-midi: <uri link="http://ban.joh.cam.ac.uk/~cr212/xmms-midi/">Timidity++ Dependent MIDI Plugun for XMMS</uri></li>
<li>media-plugins/xmms-musepack: <uri link="http://sourceforge.net/projects/mpegplus/">XMMS plugin to play audio files encoded with Andree Buschmann's encoder Musepack (mpc, mp+, mpp)</uri></li>
<li>media-plugins/xmms-spc: <uri link="http://www.self-core.org/~kaoru-k/">SPC Plugun for XMMS</uri></li>
<li>media-sound/abcde: <uri link="http://www.hispalinux.es/~data/abcde.php">a better cd encoder</uri></li>
<li>media-sound/alsa-tools: <uri link="http://www.alsa-project.org">Advanced Linux Sound Architecture tools</uri></li>
<li>media-sound/audacity: <uri link="http://audacity.sourceforge.net/">A free, crossplatform audio editor.</uri></li>
<li>media-sound/bplay: <uri link="http://www.amberdata.demon.co.uk/bplay/">No-frills command-line buffered player and recorder.</uri></li>
<li>media-sound/cd-discid: <uri link="http://lly.org/~rcw/abcde/page/">returns the disc id for the cd in the cd-rom drive</uri></li>
<li>media-sound/cdtool: A package of command-line utilities to play and catalog cdroms.</li>
<li>media-sound/cm: <uri link="http://www-ccrma.stanford.edu/software/cm/doc/cm.html">Common Music: An object oriented music composition environment in LISP/scheme</uri></li>
<li>media-sound/cmix: <uri link="http://cmix.sourceforge.net/">command line audio mixer</uri></li>
<li>media-sound/darkice: <uri link="http://darkice.sourceforge.net/">IceCast live streamer delivering Ogg and mp3 streams simulatenously to multiple hosts.</uri></li>
<li>media-sound/denemo: <uri link="http://denemo.sourceforge.net/">GTK+ graphical music notation editor</uri></li>
<li>media-sound/ecasound: <uri link="http://eca.cx/">A package for multitrack audio processing</uri></li>
<li>media-sound/esound: <uri link="http://www.tux.org/~ricdude/EsounD.html">The Enlightened Sound Daemon</uri></li>
<li>media-sound/festival: <uri link="http://www.cstr.ed.ac.uk/">Festival Text to Speech engine</uri></li>
<li>media-sound/fluidsynth: <uri link="http://www.fluidsynth.org/">IIWU Synth is a software real-time synthesizer based on the</uri></li>
<li>media-sound/freeamp: <uri link="http://www.freeamp.org/">An extremely full-featured mp3/vorbis/cd player with ALSA support -> renamed to zinf</uri></li>
<li>media-sound/freqtweak: <uri link="http://freqtweak.sourceforge.net">tool for FFT-based realtime audio spectral manipulation and display</uri></li>
<li>media-sound/galan: <uri link="http://galan.sourceforge.net/">gAlan - Graphical Audio Language</uri></li>
<li>media-sound/gnome-alsamixer: <uri link="http://www.paw.co.za/projects/gnome-alsamixer">Gnome 2 based ALSA Mixer</uri></li>
<li>media-sound/gnump3d: <uri link="http://gnump3d.sourceforge.net/">A streaming server for MP3, OGG vorbis and other streamable files</uri></li>
<li>media-sound/gqradio: <uri link="http://gqmpeg.sourceforge.net/radio.html">GQradio is an FM radio tuner app from the people who brought you GQrmpeg.</uri></li>
<li>media-sound/gramofile: <uri link="http://panic.et.tudelft.nl/~costar/gramofile/">Gramofile</uri></li>
<li>media-sound/horgand: <uri link="http://personal.telefonica.terra.es/web/soudfontcombi/">horgand is an opensource software organ.</uri></li>
<li>media-sound/hydrogen: <uri link="http://hydrogen.sourceforge.net">Linux Drum Machine</uri></li>
<li>media-sound/imp3sh: <uri link="http://www.geocities.com/kman_can/">flexible playlist manipulation shell and song player/streamer</uri></li>
<li>media-sound/jack-audio-connection-kit: <uri link="http://jackit.sourceforge.net/">A low-latency audio server</uri></li>
<li>media-sound/jack-rack: <uri link="http://pkl.net/~node/jack-rack.html">JACK Rack is an effects </uri>rack" for the JACK low latency audio API."</li>
<li>media-sound/krecord: <uri link="http://bytesex.org/krecord.html">KDE sound recorder app</uri></li>
<li>media-sound/mp3asm: <uri link="http://sourceforge.net/projects/mp3asm/">A command line tool to clean and edit mp3 files.</uri></li>
<li>media-sound/mp3wrap: <uri link="http://${PN}.sourceforge.net/">Command-line utility that wraps quickly two or more mp3 files in one single large playable mp3.</uri></li>
<li>media-sound/mpg123: <uri link="http://www.mpg123.de/">Real Time mp3 player</uri></li>
<li>media-sound/muse: <uri link="http://muse.dyne.org/">Multiple Streaming Engine, an icecast source streamer</uri></li>
<li>media-sound/musescore: <uri link="http://muse.seh.de/mscore/index.php">Music Score Typesetter</uri></li>
<li>media-sound/opmixer: <uri link="http://optronic.sourceforge.net/">An oss mixer written in c++ using the gtkmm gui-toolkit. Supports saving, loading and muting of volumes for channels and autoloading via a consoleapp</uri></li>
<li>media-sound/positron: <uri link="http://www.xiph.org/positron">Synchronization manager for the Neuros Audio Computer (www.neurosaudio.com) portable music player.</uri></li>
<li>media-sound/protux: <uri link="http://www.nongnu.org/protux">Professional Audio Tools for GNU/Linux</uri></li>
<li>media-sound/rezound: <uri link="http://rezound.sourceforge.net">Sound editor and recorder</uri></li>
<li>media-sound/rosegarden: <uri link="http://www.all-day-breakfast.com/rosegarden/">MIDI and audio sequencer and notation editor.</uri></li>
<li>media-sound/saydate: <uri link="http://unihedron.com/projects/saydate/saydate.php">A Linux shell program that talks the date and system uptime.</uri></li>
<li>media-sound/shntool: <uri link="http://shnutils.freeshell.org/shntool/">shntool is a multi-purpose WAVE data processing and reporting utility</uri></li>
<li>media-sound/spiralmodular: <uri link="http://www.pawfal.org/Software/SSM/">SSM is a object oriented modular softsynth/ sequencer/ sampler.</uri></li>
<li>media-sound/timidity++: <uri link="http://www.goice.co.jp/member/mo/timidity/">A handy MIDI to WAV converter with OSS and ALSA output support</uri></li>
<li>media-sound/toolame: <uri link="http://www.planckenergy.com">tooLAME - an optimized mpeg 1/2 layer 2 audio encoder</uri></li>
<li>media-sound/vorbisgain: <uri link="http://sjeng.sourceforge.net/ftp/vorbis/">vorbisgain calculates a percieved sound level of an Ogg Vorbis file using the ReplayGain algorithm and stores it in the file header</uri></li>
<li>media-sound/xmms: <uri link="http://www.xmms.org/">X MultiMedia System</uri></li>
<li>media-sound/zinf: <uri link="http://www.zinf.org/">An extremely full-featured mp3/vorbis/cd player with ALSA support, previously called FreeAmp</uri></li>
<li>media-sound/zynaddsubfx: <uri link="http://zynaddsubfx.sourceforge.net/">ZynAddSubFX is a opensource software synthesizer.</uri></li>
<li>media-tv/linuxtv-dvb: <uri link="http://www.linuxtv.org">Standalone DVB driver for Linux kernel 2.4.x</uri></li>
<li>media-tv/nxtvepg: <uri link="http://nxtvepg.sourceforge.net/">receive and browse free TV programme listings via bttv for tv networks in Europe</uri></li>
<li>media-tv/tvtime: <uri link="http://tvtime.sourceforge.net/">High quality television application for use with video capture cards.</uri>	einfo "found at ${HOMEPAGE}help.html"</li>
<li>media-tv/xawdecode: <uri link="http://xawdecode.sourceforge.net/">TV viewer with support for AVI recording and plugins</uri></li>
<li>media-tv/xawtv: <uri link="http://bytesex.org/xawtv/">TV application for the bttv driver</uri></li>
<li>media-video/SDLcam: <uri link="http://raph.darktech.org/SDLcam/">Webcam application that uses the SDL library</uri></li>
<li>media-video/ati-drivers: <uri link="http://www.ati.com">Ati precompiled drivers for r300, r250 and r200 chipsets</uri></li>
<li>media-video/avidemux: <uri link="http://fixounet.free.fr/avidemux/">Great Video editing/encoding tool</uri></li>
<li>media-video/bcast: <uri link="http://heroines.sourceforge.net/">Realtime audio and video editor</uri></li>
<li>media-video/camserv: <uri link="http://cserv.sourceforge.net/">A streaming video server.</uri></li>
<li>media-video/dvb-mpegtools: <uri link="http://www.metzlerbros.org/dvb/">mpegtools package for manipulation of various MPEG file formats</uri></li>
<li>media-video/ffmpeg: <uri link="http://ffmpeg.sourceforge.net/">Complete solution to record, convert and stream audio and video. Includes libavcodec.</uri></li>
<li>media-video/matroxset: <uri link="ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/">Matrox Utility</uri></li>
<li>media-video/mjpegtools: <uri link="http://mjpeg.sourceforge.net/">Tools for MJPEG video.</uri></li>
<li>media-video/mpeg2vidcodec: <uri link="http://www.mpeg.org">MPEG Library</uri></li>
<li>media-video/mplayer: <uri link="http://www.mplayerhq.hu/">Media Player for Linux</uri></li>
<li>media-video/mtxdrivers: <uri link="http://www.matrox.com/mga/products/parhelia/home.cfm">Drviers for the Matrox Parhelia and Millenium P650/P750 cards.</uri></li>
<li>media-video/nvidia-kernel: <uri link="http://www.nvidia.com/">Linux kernel module for the NVIDIA's X driver</uri></li>
<li>media-video/ogle-gui: <uri link="http://www.dtek.chalmers.se/groups/dvd/">GUI interface for the Ogle DVD player</uri></li>
<li>media-video/realone: <uri link="http://realforum.real.com/cgi-bin/unixplayer/wwwthreads.pl">RealOne player is a streaming media player, AKA RealPlayer9</uri></li>
<li>media-video/realplayer: <uri link="http://forms.real.com/real/player/unix/unix.html">Real Player 8 basic</uri></li>
<li>media-video/xanim: <uri link="http://smurfland.cit.buffalo.edu/xanim/home.html">XAnim</uri></li>
<li>media-video/xanim-export: <uri link="http://heroin.linuxave.net/toys.html">XAnim with Quicktime and RAW Audio export functions</uri></li>
<li>media-video/xmovie: <uri link="http://heroines.sourceforge.net/">A Player for MPEG and Quicktime movies</uri></li>
<li>media-video/xvattr: <uri link="http://www.dtek.chalmers.se/groups/dvd/">X11 XVideo Querying/Setting Tool from Ogle project</uri></li>
<li>net-analyzer/nagios-plugins: <uri link="http://www.nagios.org/">Nagios $PV plugins - Pack of plugins to make Nagios work properly</uri></li>
<li>net-analyzer/nessus-plugins: <uri link="http://www.nessus.org/">A remote security scanner for Linux (nessus-plugins)</uri></li>
<li>net-analyzer/nmap: <uri link="http://www.insecure.org/nmap/">utility for network exploration or security auditing</uri></li>
<li>net-analyzer/prelude-nessus: <uri link="http://www.rstack.org/oudot/prelude/correlation/">Nessus Correlation support for Prelude-IDS</uri></li>
<li>net-analyzer/rrdtool: <uri link="http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/">A system to store and display time-series data</uri></li>
<li>net-dialup/fcpci: <uri link="http://www.avm.de/">CAPI4Linux drivers for AVM Fritz!Card PCI</uri></li>
<li>net-dialup/gnokii: <uri link="http://www.gnokii.org">a client that plugs into your handphone</uri></li>
<li>net-dialup/isdn4k-utils: <uri link="http://www.isdn4linux.de/">ISDN-4-Linux Utils</uri></li>
<li>net-dialup/kmasqdialer: <uri link="http://www.stephan.co.uk/kmasqdialer/download.html">KMasqdialer - A KDE Client for MasqDialer</uri></li>
<li>net-dialup/mgetty: <uri link="http://alpha.greenie.net/mgetty/">Fax and Voice modem programs.</uri></li>
<li>net-dialup/ppp: <uri link="http://www.samba.org/ppp">Point-to-point protocol - patched for pppoe</uri></li>
<li>net-dialup/pptpd: <uri link="http://sourceforge.net/projects/poptop/">Linux Point-to-Point Tunnelling Protocol Server</uri></li>
<li>net-dialup/qtwvdialer: <uri link="http://www.mtoussaint.de/qtwvdialer.html">QT Frontend for wvdial</uri></li>
<li>net-dialup/rp-pppoe: <uri link="http://www.roaringpenguin.com/">A user-mode PPPoE client and server suite for Linux</uri></li>
<li>net-dialup/wvdial: <uri link="http://open.nit.ca/">Excellent program which automatically configures your PPP session</uri></li>
<li>net-dns/dns2go: <uri link="http://www.dns2go.com/">Dns2Go Linux Client v1.1</uri></li>
<li>net-dns/hesiod: <uri link="ftp://athena-dist.mit.edu/pub/ATHENA/hesiod">Hesiod is a system which uses existing DNS functionality to provide access to databases of information that changes infrequently.</uri></li>
<li>net-dns/ldapdns: <uri link="http://www.nimh.org/code/ldapdns/">A tiny, fast authoritative nameserver that queries LDAP and can be updated instantly</uri></li>
<li>net-dns/pdns: <uri link="http://www.powerdns.com/">The PowerDNS Daemon.</uri></li>
<li>net-firewall/firestarter: <uri link="http://firestarter.sf.net">Gui for firewalls (iptables &amp; ipchains), and a firewall monitor.</uri></li>
<li>net-firewall/iptables: <uri link="http://www.iptables.org/">Kernel 2.4 firewall, NAT and packet mangling tools</uri></li>
<li>net-firewall/knetfilter: <uri link="http://expansa.sns.it:8080/knetfilter/">Manage Iptables firewalls with this KDE app</uri></li>
<li>net-firewall/shorewall: <uri link="http://www.shorewall.net/">Full state iptables firewall</uri></li>
<li>net-firewall/timestamp.x: <uri link="http://www.shorewall.net/">Full state iptables firewall</uri></li>
<li>net-fs/am-utils: <uri link="http://www.am-utils.org">amd automounter and utilities</uri></li>
<li>net-fs/autofs: <uri link="http://www.linux-consulting.com/Amd_AutoFS/autofs.html">Kernel based automounter</uri></li>
<li>net-fs/ncpfs: <uri link="ftp://platan.vc.cvut.cz/pub/linux/ncpfs/latest/">Provides Access to Netware services using the NCP protocol (Kernel support must be activated!)</uri></li>
<li>net-fs/openafs: <uri link="http://www.openafs.org/">The AFS 3 distributed file system  targets the issues  critical to</uri></li>
<li>net-fs/samba: <uri link="http://www.samba.org/">SAMBA is a suite of SMB and CIFS client/server programs for UNIX</uri></li>
<li>net-fs/sfs: <uri link="http://www.fs.net/">SFS (Self-certifying File System) client and server daemons</uri></li>
<li>net-ftp/glftpd-tls: <uri link="http://pftp.suxx.sk/glftpd-TLS/">allows you to use SSLv3 encryption with glftpd connections</uri></li>
<li>net-ftp/vsftpd: <uri link="http://vsftpd.beasts.org/">Very Secure FTP Daemon written with speed, size and security in mind</uri></li>
<li>net-im/bitlbee: <uri link="http://www.lintux.cx/bitlbee.html">Bitlbee is an irc to IM gateway that support mutliple IM protocols</uri></li>
<li>net-im/gossip: <uri link="http://www.imendio.com/projects/gossip/">Lightweight Jabber client for GNOME</uri></li>
<li>net-im/tkabber: <uri link="http://tkabber.jabber.ru/en/">Featurefull Jabber client for tcl/tk.</uri></li>
<li>net-irc/bnc: <uri link="http://gotbnc.com/">BNC (BouNCe) is used as a gateway to an IRC Server</uri></li>
<li>net-irc/dircproxy: <uri link="http://www.dircproxy.net/">an IRC proxy server</uri></li>
<li>net-irc/epic4: <uri link="http://epicsol.org">Epic4 IRC Client</uri></li>
<li>net-irc/ircmap: <uri link="http://pasky.ji.cz/~pasky/irc/">This script connects to the specified IRC server and creates a</uri></li>
<li>net-irc/irssi-cvs: <uri link="http://irssi.org/">A modular textUI IRC client with IPv6 support.</uri></li>
<li>net-irc/kvirc: <uri link="http://www.kvirc.net">An advanced IRC Client</uri></li>
<li>net-irc/lostirc: <uri link="http://lostirc.sourceforge.net/">A simple but functional graphical IRC client</uri></li>
<li>net-irc/xchat: <uri link="http://www.xchat.org/">X-Chat is a graphical IRC client for UNIX operating systems.</uri></li>
<li>net-irc/xchat-systray: <uri link="http://blight.altervista.org/">KDE/GNOME system tray plugin for X-Chat.</uri></li>
<li>net-libs/libfwbuilder: <uri link="http://www.fwbuilder.org/">A firewall GUI (library functions)</uri></li>
<li>net-libs/libnet: <uri link="http://www.packetfactory.net/${PN}/">library to provide an API for commonly used low-level network</uri></li>
<li>net-libs/libnids: <uri link="http://www.packetfactory.net/Projects/libnids/">Libnids is an implementation of an E-component of Network Intrusion Detection System. It emulates the IP stack of Linux 2.0.x. Libnids offers IP defragmentation, TCP stream assembly and TCP port scan detection.</uri></li>
<li>net-libs/libsoup: <uri link="http://www.gnome.org/">Soup is a SOAP implementation</uri></li>
<li>net-libs/linc: <uri link="http://www.gnome.org/">A library to ease the writing of networked applications</uri></li>
<li>net-libs/loudmouth: <uri link="http://www.imendio.com/projects/loudmouth/">Lightweight C Jabber library</uri></li>
<li>net-libs/soup: <uri link="http://www.gnome.org/">Soup is a SOAP implementation</uri></li>
<li>net-libs/timestamp.x: <uri link="http://www.gnome.org/">Soup is a SOAP implementation</uri></li>
<li>net-libs/wvstreams: <uri link="http://open.nit.ca/wvstreams">A network programming library in C++</uri></li>
<li>net-mail/amavis: <uri link="http://www.amavis.org/">Virus Scanner</uri></li>
<li>net-mail/cyrus-imap-admin: <uri link="http://asg.web.cmu.edu/cyrus/imapd/">Utilities to administer a Cyrus IMAP Server (includes Perl modules)</uri></li>
<li>net-mail/evolution: <uri link="http://www.ximian.com">A GNOME groupware application, a Microsoft Outlook workalike</uri></li>
<li>net-mail/hotwayd: <uri link="http://hotwayd.sourceforge.net/">Hotail to pop3 deamon</uri></li>
<li>net-mail/mozilla-thunderbird: <uri link="http://www.mozilla.org/projects/thunderbird/">Thunderbird Mail Client</uri></li>
<li>net-mail/mutt: <uri link="http://www.mutt.org">a small but very powerful text-based mail client</uri></li>
<li>net-mail/popa3d: <uri link="http://www.openwall.com/popa3d/">A security oriented POP3 server.</uri></li>
<li>net-mail/serialmail: <uri link="http://cr.yp.to/serialmail.html">A serialmail is a collection of tools for passing mail</uri></li>
<li>net-mail/uw-imap: <uri link="http://www.washington.edu/imap/">UW server daemons for IMAP and POP network mail protocols.</uri></li>
<li>net-mail/ximian-connector: <uri link="http://www.ximian.com">Ximian Connector (An Evolution Plugin to talk to Exchange Servers)</uri></li>
<li>net-misc/cfengine: <uri link="http://www.iu.hio.no/cfengine/">agent/software robot and a high level policy language for building expert systems to administrate and configure large computer networks</uri></li>
<li>net-misc/cidr: <uri link="http://home.netcom.com/~naym/cidr/">command line util to assist in calculating subnets</uri></li>
<li>net-misc/etherwake: <uri link="http://www.scyld.com/expert/wake-on-lan.html">This program generates and transmits a Wake-On-LAN (WOL) \</uri>Magic Packet\", used for restarting machines that have been soft-powered-down (ACPI D3-warm state)."</li>
<li>net-misc/freeswan: <uri link="http://www.freeswan.org">FreeS/WAN IPSec Userspace Utilities with X.509 Patches</uri></li>
<li>net-misc/lrzsz: <uri link="http://www.ohse.de/uwe/software/lrzsz.html">communication package providing the X, Y, and ZMODEM file transfer protocols</uri></li>
<li>net-misc/netkit-talk: <uri link="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/">Netkit - talkd</uri></li>
<li>net-misc/ntp: <uri link="http://www.ntp.org/">Network Time Protocol suite/programs</uri></li>
<li>net-misc/nxclient: <uri link="www.nomachine.com">NXClient is a X11/VNC/NXServer client especially tuned for using remote desktops over low-bandwidth links such as the Internet</uri></li>
<li>net-misc/nxcomp: <uri link="http://www.nomachine.com/">X11 protocol compression library</uri></li>
<li>net-misc/nxproxy: <uri link="http://www.nomachine.com/">X11 protocol compression library wrapper</uri></li>
<li>net-misc/nxssh: <uri link="http://www.nomachine.com/">Modified openssh client, used by nxclient</uri></li>
<li>net-misc/pimpd: <uri link="http://cats.meow.at/~peter/pimpd.html">RFC1413-compliant identd server supporting masqueraded connections</uri></li>
<li>net-misc/putty: <uri link="http://www.chiark.greenend.org.uk/~sgtatham/putty/">UNIX port of the famous Windows Telnet and SSH client</uri></li>
<li>net-misc/rdist: <uri link="http://www.magnicomp.com/rdist/rdist.shtml">Remote software distribution system</uri></li>
<li>net-misc/slirp: <uri link="http://slirp.sourceforge.net/">Emulates a PPP or SLIP connection over a terminal</uri></li>
<li>net-misc/stunnel: <uri link="http://www.stunnel.org/">TLS/SSL - Port Wrapper</uri></li>
<li>net-misc/telnet-bsd: <uri link="ftp://ftp.suse.com/pub/people/kukuk/ipv6/">Telnet and telnetd ported from OpenBSD with IPv6 support</uri></li>
<li>net-misc/tsocks: <uri link="http://tsocks.sourceforge.net/">Transparent SOCKS v4 proxying library</uri></li>
<li>net-misc/whatmask: <uri link="http://www.laffeycomputer.com/whatmask.html">little C program to compute different subnet mask notations</uri></li>
<li>net-misc/x11-ssh-askpass: <uri link="http://www.liquidmeme.net/software/x11-ssh-askpass/">X11-based passphrase dialog for use with OpenSSH</uri></li>
<li>net-nds/directoryadministrator: <uri link="http://diradmin.open-it.org">GUI to manage users and groups in a LDAP directory</uri></li>
<li>net-nds/gq: <uri link="http://www.biot.com/gq/">GTK-based LDAP client</uri></li>
<li>net-nds/openldap: <uri link="http://www.OpenLDAP.org/">LDAP suite of application and development tools</uri></li>
<li>net-nds/ypserv: <uri link="http://www.linux-nis.org/nis/">Network Information Service server</uri></li>
<li>net-news/inn: <uri link="http://www.isc.org/products/INN">The Internet News daemon, fully featured NNTP server</uri></li>
<li>net-news/leafnode: <uri link="http://www.leafnode.org">leafnode - A USENET software package designed for small sites</uri></li>
<li>net-news/newspost: <uri link="http://newspost.unixcab.org/">a usenet binary autoposter for unix</uri></li>
<li>net-news/slrn: <uri link="http://slrn.sourceforge.net/">s-lang Newsreader</uri></li>
<li>net-news/yydecode: <uri link="http://yydecode.sf.net/">A decoder for yENC format, popular on Usenet.</uri></li>
<li>net-p2p/bittorrent: <uri link="http://bitconjurer.org/BitTorrent">BitTorrent is a tool for distributing files via a distributed network of nodes</uri></li>
<li>net-p2p/bittorrent-theshadow: <uri link="http://bt.degreez.net/">BitTorrent is a tool for distributing files via a distributed network of nodes</uri></li>
<li>net-p2p/dclib: <uri link="http://dc.ketelhot.de/">Library for the Qt client for DirectConnect</uri></li>
<li>net-p2p/freenet: <uri link="http://freenetproject.org/">large-scale peer-to-peer network that creates a massive virtual information store open to anyone</uri></li>
<li>net-p2p/gift: <uri link="http://gift.sourceforge.net/">A OpenFT, Gnutella and FastTrack p2p network client</uri></li>
<li>net-p2p/gnunet: <uri link="http://www.ovmj.org/GNUnet/">GNUnet is an anonymous, distributed, reputation based network.</uri></li>
<li>net-p2p/gnut: <uri link="http://www.gnutelliums.com/linux_unix/gnut/">Text-mode gnutella client</uri></li>
<li>net-p2p/kmldonkey: <uri link="http://www.gibreel.net/projects/kmldonkey">Provides integration for the MLDonkey P2P software and KDE 3</uri></li>
<li>net-p2p/knapster2: <uri link="http://knapster.sourceforge.net">Napster Client for Linux</uri></li>
<li>net-p2p/qtella: <uri link="http://www.qtella.net">Excellent QT/KDE Gnutella Client</uri></li>
<li>net-print/apsfilter: <uri link="http://www.apsfilter.org">Apsfilter Prints So Fine, It Leads To Extraordinary Results</uri></li>
<li>net-print/cups: <uri link="http://www.cups.org">The Common Unix Printing System</uri></li>
<li>net-print/hpoj: <uri link="http://hpoj.sourceforge.net/">HP OfficeJet Linux driver</uri></li>
<li>net-print/pnm2ppa: <uri link="http://pnm2ppa.sourceforge.net">Print driver for Hp Deskjet 710, 712, 720, 722, 820, 1000 series</uri></li>
<li>net-print/qtcups: <uri link="http://cups.sourceforge.net">QT Frontend for the Common UNIX printing system</uri></li>
<li>net-print/timestamp.x: <uri link="http://cups.sourceforge.net">QT Frontend for the Common UNIX printing system</uri></li>
<li>net-wireless/kismet: <uri link="http://www.kismetwireless.net/">Kismet is a 802.11b wireless network sniffer.</uri></li>
<li>net-wireless/linux-wlan-ng: <uri link="http://linux-wlan.org">The linux-wlan Project</uri></li>
<li>net-wireless/wavelan-applet: <uri link="http://www.eskil.org/wavelan-applet/">GNOME Panel applet that shows the strength of a wavelan connection</uri></li>
<li>net-www/amphetadesk: <uri link="http://www.disobey.com/amphetadesk/">AmphetaDesk is a free syndicated news aggregator</uri></li>
<li>net-www/cocoon: <uri link="http://xml.apache.org/cocoon/">A Web Publishing Framework for Apache</uri></li>
<li>net-www/cvsweb: <uri link="http://stud.fh-heilbronn.de/~zeller/cgi/cvsweb.cgi">WWW interface to a CVS tree</uri></li>
<li>net-www/konqueror-embedded: <uri link="http://www.konqueror.org/embedded.html">The Konqueror/Embedded project attempts to build up a special version of the web browsing component of the KDE browser Konqueror (in particular its html rendering engine khtml and its io subsystem)</uri></li>
<li>net-www/links: SRC_URI="${HOMEPAGE}/download/${MYP}.tar.bz2"<uri link="http://atrey.karlin.mff.cuni.cz/~clock/twibright/links/">links is a fast lightweight text tand graphic web-browser</uri></li>
<li>net-www/mozilla: <uri link="http://www.mozilla.org">The Mozilla Web Browser</uri></li>
<li>net-www/mozilla-firebird: <uri link="http://www.mozilla.org/projects/firebird/">The Mozilla Firebird Web Browser</uri></li>
<li>net-www/oops: <uri link="http://zipper.paco.net/~igor/oops.eng/">An advanced multithreaded caching web proxy</uri></li>
<li>net-zope/abracadabraobject: SRC_URI="${HOMEPAGE}/AbracadabraObject-${PV}.tar.gz"<uri link="http://www.zope.org/Members/mjablonski/AbracadabraObject">This can add pre-configured ZOPE-objects to folders through ZMI.</uri></li>
<li>net-zope/btreefolder2: <uri link="http://hathaway.freezope.org/Software/BTreeFolder2/">Acts like a Zope folder but can store many more items.</uri></li>
<li>net-zope/cmf: SRC_URI="${HOMEPAGE}/download/CMF-${PV}/CMF-${PV}.tar.gz"<uri link="http://cmf.zope.org/">Content Management Framework. Services for content-oriented portal sites.</uri></li>
<li>net-zope/cmfcollectorng: <uri link="http://www.zope.org/Members/ajung/CMFCollectorNG/Wiki/FrontPage">Zope/CMF-based bugtracking system.</uri></li>
<li>net-zope/cmfforum: <uri link="http://www.sf.net/projects/collective/">#Makes it easy to install cmf/plone products.</uri></li>
<li>net-zope/cmfphoto: <uri link="http://sourceforge.net/projects/collective/">Zope product to have photos.</uri></li>
<li>net-zope/cmfphotoalbum: <uri link="http://sourceforge.net/projects/collective/">Zope/CMF product to organize e-pics into hierarchical photo album.</uri></li>
<li>net-zope/cmfquickinstallertool: <uri link="http://www.sf.net/projects/collective/">Makes it easy to install cmf/plone products.</uri></li>
<li>net-zope/externaleditor: SRC_URI="${HOMEPAGE}/ExternalEditor-${PV}.tgz<uri link="http://www.zope.org/Members/Caseman/ExternalEditor/">Allows you to use your favorite editor(s) from ZMI.</uri>	${HOMEPAGE}/zopeedit-${PV}-src.tgz"</li>
<li>net-zope/extfile: SRC_URI="${HOMEPAGE}/ExtFile-${PV_NEW}.tar.gz"<uri link="http://www.zope.org/Members/shh/ExtFile">Zope proxy objects for files on the filesystem</uri></li>
<li>net-zope/filesystemsite: SRC_URI="${HOMEPAGE}/FileSystemSite-${PV}.tgz"<uri link="http://www.zope.org/Members/k_vertigo/Products/FileSystemSite">Zope proxy objects for files on the filesystem.</uri></li>
<li>net-zope/fle3: SRC_URI="${HOMEPAGE}/download/${P_NEW}.tar.gz"<uri link="http://fle3.uiah.fi/">Furture Learning Environment for collaborative learning</uri></li>
<li>net-zope/formulator: SRC_URI="${HOMEPAGE}/Formulator-${PV}.tgz"<uri link="http://www.zope.org/Members/faassen/Formulator">Extensible framework that eases creation/validation of web-forms.</uri></li>
<li>net-zope/groups: SRC_URI="${HOMEPAGE}/Groups-${PV}.tgz"<uri link="http://www.zope.org/Members/faassen/Groups">Group support (including local roles) for Zope</uri></li>
<li>net-zope/issuetrackerproduct: SRC_URI="${HOMEPAGE}/IssueTrackerProduct-${PV}.tgz"<uri link="http://www.zope.org/Members/peterbe/IssueTrackerProduct">Issue tracking system.</uri></li>
<li>net-zope/ldapuserfolder: SRC_URI="${HOMEPAGE}LDAPUserFolder-${PV_NEW}.tgz"<uri link="http://www.dataflake.org/software/ldapuserfolder/">LDAP User Authentication for Zope.</uri></li>
<li>net-zope/localfs: <uri link="http://sourceforge.net/projects/localfs/">Zope product for accessing the local filesystem</uri></li>
<li>net-zope/neoboard: SRC_URI="${HOMEPAGE}/Downloads/${P_NEW}.tar.gz"<uri link="http://www.zoper.net/">Threaded message boards w/articles, attachments, &amp; i18n.</uri></li>
<li>net-zope/neoportallibrary: SRC_URI="${HOMEPAGE}/Downloads/${P_NEW}.tar.gz"<uri link="http://www.zoper.net/">Collection of modules to build Zope/CMF/Plone products.</uri></li>
<li>net-zope/parsedxml: SRC_URI="${HOMEPAGE}/ParsedXML-${PV}.tgz"<uri link="http://www.zope.org/Members/faassen/ParsedXML">XML objects for Zope.</uri></li>
<li>net-zope/photo: <uri link="http://www.zope.org/Members/rbickers/Photo">Zope product for managing photos and photo albums</uri></li>
<li>net-zope/plone: <uri link="http://plone.org">A Zope Content Management System, based on Zope CMF.</uri></li>
<li>net-zope/propertyfolder: SRC_URI="${HOMEPAGE}/PropertyFolder-${PV}.tar.gz"<uri link="http://www.zope.org/Members/mjablonski/PropertyFolder">Intended mainly for use with PropertyObject and AbracadabraObject.</uri></li>
<li>net-zope/propertyobject: SRC_URI="${HOMEPAGE}/PropertyObject-${PV}.tar.gz"<uri link="http://www.zope.org/Members/mjablonski/PropertyObject/">Intended mainly for use with PropertyFolder and AbracadabraObject.</uri></li>
<li>net-zope/silva: SRC_URI="${HOMEPAGE}/Silva-${PV}.tgz"<uri link="http://www.zope.org/Members/faassen/Silva">XML Publishing and authoring system</uri></li>
<li>net-zope/translationservice: SRC_URI="${HOMEPAGE}/TranslationService-${PV}.tgz"<uri link="http://www.zope.org/Members/efge/TranslationService/">Translation servive for zope. i18n tags in ZPT.</uri></li>
<li>net-zope/ttwtype: SRC_URI="${HOMEPAGE}TTWType-${PV}.tgz"<uri link="http://www.zope.org/Members/comlounge/TTWType/">Create new content types via the ZMI for plone.</uri></li>
<li>net-zope/xmlwidgets: SRC_URI="${HOMEPAGE}/XMLWidgets-${PV}.tgz"<uri link="http://www.zope.org/Members/faassen/XMLWidgets">UI widgets for Zope XML objects.</uri></li>
<li>net-zope/zmysqlda: <uri link="http://sourceforge.net/projects/mysql-python">A MySQL Database Adapter(DA) for zope.</uri></li>
<li>net-zope/zope: <uri link="http://www.zope.org">Zope is web application platform used for building high-performance, dynamic web sites.</uri></li>
<li>net-zope/zpsycopgda: <uri link="http://www.initd.org/software/psycopg.py">PostgreSQL database adapter for Zope.</uri></li>
<li>net-zope/zwiki: SRC_URI="${HOMEPAGE}/releases/ZWiki-${PV}.tgz"<uri link="http://zwiki.org/">A zope wiki-clone for easy-to-edit collaborative websites.</uri></li>
<li>sys-apps/acl: <uri link="http://oss.sgi.com/projects/xfs">XFS dump/restore utilities</uri></li>
<li>sys-apps/baselayout: <uri link="http://www.gentoo.org/">Base layout for Gentoo Linux filesystem (incl. initscripts and sysvinit)</uri></li>
<li>sys-apps/chpax: <uri link="http://pageexec.virtualave.net">Manages various PaX related flags for ELF32, ELF64, and a.out binaries.</uri></li>
<li>sys-apps/coreutils: <uri link="http://www.gnu.org/software/coreutils/">Standard GNU file utilities (chmod, cp, dd, dir, ls...), text utilities (sort, tr, head, wc..), and shell utilities (whoami, who,...)</uri></li>
<li>sys-apps/debianutils: <uri link="http://packages.debian.org/unstable/base/debianutils.html">A selection of tools from Debian</uri></li>
<li>sys-apps/di: <uri link="http://www.gentoo.com/di/">Disk Information Utility</uri></li>
<li>sys-apps/dvhtool: <uri link="http://packages.debian.org/unstable/utils/dvhtool.html">Dvhtool is the tool responsible for writing MIPS kernel(s) into the SGI volume header</uri></li>
<li>sys-apps/fileutils: <uri link="http://www.gnu.org/software/fileutils/fileutils.html">textutils, sh-utils and fileutils are replaced by coreutils</uri></li>
<li>sys-apps/gnumaniak: <uri link="http://www.linalco.com/ragnar/">Up to date man pages for various GNU utils section 1</uri></li>
<li>sys-apps/grep: <uri link="http://www.gnu.org/software/grep/grep.html">GNU regular expression matcher</uri></li>
<li>sys-apps/i2c: <uri link="http://www2.lm-sensors.nu/~lm78">I2C Bus support</uri></li>
<li>sys-apps/irda-utils: <uri link="http://irda.sf.net">IrDA Utilities, tools for IrDA communication</uri></li>
<li>sys-apps/lshw: <uri link="http://ezix.sourceforge.net/">Hardware Lister</uri></li>
<li>sys-apps/mawk: <uri link="not avail -- use SRC_URI">An (often faster than gawk) awk-interpreter.</uri></li>
<li>sys-apps/mii-diag: <uri link="http://www.scyld.com/diag/">MII link status report and diagnostics</uri></li>
<li>sys-apps/ntfsprogs: <uri link="http://linux-ntfs.sourceforge.net/">Utilities and library for accessing NTFS filesystems</uri></li>
<li>sys-apps/pcmcia-cs-drivers: <uri link="http://pcmcia-cs.sourceforge.net">pcmcia-cs drivers</uri></li>
<li>sys-apps/portage: <uri link="http://www.gentoo.org">Portage ports system</uri></li>
<li>sys-apps/qtparted: <uri link="http://qtparted.sourceforge.net">QtParted is a nice Qt partition tool for Linux</uri></li>
<li>sys-apps/quota: <uri link="http://sourceforge.net/projects/linuxquota/">Linux quota tools</uri></li>
<li>sys-apps/selinux-small: <uri link="http://www.nsa.gov/selinux">SELinux libraries and policy compiler</uri></li>
<li>sys-apps/sh-utils: <uri link="http://www.gnu.org/software/shellutils/shellutils.html">textutils, sh-utils and fileutils moved to coreutils</uri></li>
<li>sys-apps/smartmontools: <uri link="http://smartmontools.sourceforge.net/">control and monitor storage systems using the Self-Monitoring, Analysis and Reporting Technology System (S.M.A.R.T.)</uri></li>
<li>sys-apps/supervise-scripts: <uri link="http://untroubled.org/supervise-scripts/">Starting and stopping daemontools managed services.</uri></li>
<li>sys-apps/texinfo: <uri link="http://www.gnu.org/software/texinfo/">The GNU info program and utilities</uri></li>
<li>sys-apps/textutils: <uri link="http://www.gnu.org/software/coreutils/">textutils, sh-utils and fileutils are replaced by coreutils</uri></li>
<li>sys-apps/ucspi-unix: <uri link="http://untroubled.org/ucspi-unix/">A ucspi implementation for unix sockets.</uri></li>
<li>sys-apps/usbutils: <uri link="http://usb.cs.tum.edu/">USB enumeration utilities</uri></li>
<li>sys-apps/x86info: <uri link="http://www.codemonkey.org.uk/x86info/">Dave Jones' handy, informative x86 CPU diagnostic utility</uri></li>
<li>sys-cluster/drbd: <uri link="http://www.drbd.org">mirror/replicate block-devices across a network-connection</uri></li>
<li>sys-cluster/openmosix-user: <uri link="http://www.openmosix.com/">User-land utilities for openMosix process migration (clustering) software</uri></li>
<li>sys-cluster/openpbs: <uri link="http://www.openpbs.org/">The Portable Batch System (PBS) is a flexible batch queueing and workload management system</uri></li>
<li>sys-cluster/pvm-povray: <uri link="http://pvmpov.sourceforge.net/">The Persistance Of Vision Ray Tracer - PVM version</uri></li>
<li>sys-cluster/timestamp.x: <uri link="http://pvmpov.sourceforge.net/">The Persistance Of Vision Ray Tracer - PVM version</uri></li>
<li>sys-devel/binutils: <uri link="http://sources.redhat.com/binutils/">Tools necessary to build programs</uri></li>
<li>sys-devel/bison: <uri link="http://www.gnu.org/software/bison/bison.html">A yacc-compatible parser generator</uri></li>
<li>sys-devel/gcc: <uri link="http://www.gnu.org/software/gcc/gcc.html">The GNU Compiler Collection.  Includes C/C++ and java compilers</uri></li>
<li>sys-devel/hardened-gcc: <uri link="http://www.gentoo.org/proj/en/hardened/etdyn-ssp.xml">transparent gcc compiler supplement for PaX/etdyn ASLR w/ propolice/SSP</uri></li>
<li>sys-devel/m4: <uri link="http://www.gnu.org/software/m4/m4.html">GNU macro processor</uri></li>
<li>sys-kernel/aa-sources: Full sources for Andrea Arcangeli's Linux kernel</li>
<li>sys-kernel/ac-sources: Full sources for Alan Cox's Linux kernel</li>
<li>sys-kernel/alpha-sources: Full sources for the Gentoo Linux Alpha kernel</li>
<li>sys-kernel/arm-headers: <uri link="http://www.arm.linux.org.uk/">Full sources for the ARM/Linux kernel</uri></li>
<li>sys-kernel/arm-sources: <uri link="http://www.arm.linux.org.uk/">Full sources for the ARM/Linux kernel</uri></li>
<li>sys-kernel/ck-sources: <uri link="http://members.optusnet.com.au/ckolivas/kernel/">Full sources for the Stock Linux kernel Con Kolivas's high performance patchset</uri></li>
<li>sys-kernel/development-sources: <uri link="http://www.kernel.org/ http://www.gentoo.org/">Full sources for the Development Branch of the Linux kernel</uri></li>
<li>sys-kernel/genkernel: <uri link="http://www.gentoo.org">Gentoo autokernel script</uri></li>
<li>sys-kernel/gentoo-sources: Full sources for the Gentoo Linux kernel</li>
<li>sys-kernel/gs-sources: This kernel stays up to date with current kernel -pres</li>
<li>sys-kernel/hppa-headers: <uri link="http://www.kernel.org/ http://www.gentoo.org/ http://parisc-linux.org/">Full sources for the Linux kernel patched for hppa</uri></li>
<li>sys-kernel/linux-headers: <uri link="http://www.kernel.org/ http://www.gentoo.org/">Full sources for the Gentoo Linux kernel</uri></li>
<li>sys-kernel/mm-sources: Full sources for the development linux kernel with Andrew Morton's patchset</li>
<li>sys-kernel/openmosix-sources: <uri link="http://www.kernel.org/ http://www.gentoo.org/ http://www.openmosix.org/">Full sources for the Gentoo openMosix Linux kernel</uri></li>
<li>sys-kernel/ppc-sources-crypto: <uri link="http://www.kernel.org/ http://www.kerneli.org/ http://www.gentoo.org/">Full cryptoapi enabled sources for the Gentoo Linux PPC kernel</uri></li>
<li>sys-kernel/ppc-sources-dev: <uri link="http://www.kernel.org/ http://www.gentoo.org/">Full developmental sources for the Gentoo Linux PPC kernel - Experimental!</uri></li>
<li>sys-kernel/vanilla-prepatch-sources: <uri link="http://www.kernel.org/ http://www.gentoo.org/">Full sources for the prerelease vanilla Linux kernel</uri></li>
<li>sys-kernel/xfs-sources: Full sources for the XFS Specialized Gentoo Linux kernel</li>
<li>sys-libs/cracklib: <uri link="http://www.crypticide.org/users/alecm/">Password Checking Library</uri></li>
<li>sys-libs/db: <uri link="http://www.sleepycat.com">Berkeley DB</uri></li>
<li>sys-libs/glibc: <uri link="http://www.gnu.org/software/libc/libc.html">GNU libc6 (also called glibc2) C library</uri></li>
<li>sys-libs/lib-compat: <uri link="http://www.gentoo.org/">Compatibility C++ and libc5 and libc6 libraries for programs new and old</uri></li>
<li>sys-libs/libcap: <uri link="http://linux.kernel.org/pub/linux/libs/security/linux-privs/">POSIX 1003.1e capabilities</uri></li>
<li>sys-libs/nss-db: <uri link="http://www.gnu.org/">Allows important system files to be stored in a fast database file rather than plain text</uri></li>
<li>sys-libs/pwdb: <uri link="http://www.firstlinux.com/cgi-bin/package/content.cgi?ID=6886">Password database</uri></li>
<li>sys-libs/readline: <uri link="http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html">Another cute console display library</uri></li>
<li>x11-base/xfree: <uri link="http://www.xfree.org">Xfree86: famous and free X server</uri></li>
<li>x11-libs/docklib: <uri link="http://www.windowmaker.org">Library for Window Maker dock applications.</uri></li>
<li>x11-libs/fltk: <uri link="http://www.fltk.org">C++ user interface toolkit for X and OpenGL.</uri></li>
<li>x11-libs/gtkglarea: <uri link="http://www.student.oulu.fi/~jlof/gtkglarea/">GL Extentions for gtk+</uri></li>
<li>x11-libs/gtkglextmm: <uri link="http://gtkglext.sourceforge.net/">C++ bindings for gtkglext</uri></li>
<li>x11-libs/libdockapp: <uri link="http://www.minet.uni-jena.de/~topical/sveng/wmail.html">Window Maker Dock Applet Library</uri></li>
<li>x11-libs/openmotif: <uri link="http://www.motifzone.org/">Open Motif</uri></li>
<li>x11-libs/pango: <uri link="http://www.pango.org/">Text rendering and Layout library</uri></li>
<li>x11-libs/qt: <uri link="http://www.trolltech.com/">QT version ${PV}</uri></li>
<li>x11-libs/qt-embedded: <uri link="http://www.trolltech.com/">QT version ${PV}</uri></li>
<li>x11-libs/qwt: <uri link="http://qwt.sourceforge.net/">2D plotting library for Qt</uri></li>
<li>x11-libs/wxGTK: <uri link="http://www.wxwindows.org/">GTK+ version of wxWindows, a cross-platform C++ GUI toolkit.</uri></li>
<li>x11-misc/commonbox-utils: <uri link="http://mkeadle.org/">Common utilities for fluxbox, blackbox, and openbox</uri></li>
<li>x11-misc/login-app: <uri link="http://largo.windowmaker.org/Login.app/">Graphical Login Utility</uri></li>
<li>x11-misc/shared-mime-info: <uri link="http://www.freedesktop.org">The Shared MIME-info Database specification.</uri></li>
<li>x11-misc/xplanet: <uri link="http://xplanet.sourceforge.net/">A program to render images of the earth into the X root window</uri></li>
<li>x11-misc/xrootconsole: <uri link="http://de-fac.to/bob/xrootconsole/">An utillity that displays its input in a text box on your root window</uri></li>
<li>x11-misc/yawmppp: <uri link="http://yawmppp.seul.org/">Yet Another PPP Window Maker dock applet</uri></li>
<li>x11-plugins/gkrellweather: <uri link="http://kmlinux.fjfi.cvut.cz/~makovick/gkrellm/index.html">GKrellM2 Plugin che controola una stazione  METAR e mostra il tempo</uri></li>
<li>x11-terms/hanterm: <uri link="http://www.hanterm.org/">Hanterm -- terminale koreano</uri></li>
<li>x11-terms/kterm: <uri link="http://www.asahi-net.or.jp/~hc3j-tkg/kterm/">Japanese Kanji X Terminal</uri></li>
<li>x11-terms/rxvt: <uri link="http://www.rxvt.org/">rxvt -- Piccolo e veloce terminale per x11 </uri></li>
<li>x11-terms/timestamp.x: <uri link="http://www.rxvt.org/">rxvt -- piccolo e veloce terminale per x11</uri></li>
<li>x11-themes/alloy: <uri link="http://www.kdelook.org/content/show.php?content=6304">A neat KDE 3.1 style based on the Java Alloy Look&amp;Feel from Incors (http://www.incors.com).</uri></li>
<li>x11-themes/blueglass-xcursors: <uri link="http://www.kde-look.org/content/show.php?content=5532"> Un set di cursori animati per Xfree 4.3.0</uri></li>
<li>x11-themes/fvwm_sounds: <uri link="http://www.fvwm.org/">Suoni da usare con FVWM</uri></li>
<li>x11-themes/gentoo-artwork: <uri link="http://www.gentoo.org/index-graphics.html">Una collezione di loghi e immagini su Gentoo Linux</uri></li>
<li>x11-themes/gnome-icon-theme: <uri link="http://www.gnome.org/">Tema di icone di default per Gnome2 </uri></li>
<li>x11-themes/golden-xcursors: <uri link="http://www.kde-look.org/content/show.php?content=5507">Un set di cursori animati per Xfree 4.3.0</uri></li>
<li>x11-themes/silver-xcursors: <uri link="http://www.kde-look.org/content/show.php?content=5533">Un set di cursori animati per of Xfree 4.3.0</uri></li>
<li>x11-themes/wm-icons: <uri link="http://wm-icons.sourceforge.net/">A Large Assortment of Beutiful Themed Icons, Created with FVWM in mind</uri></li>
<li>x11-themes/ximian-artwork: <uri link="http://www.ximian.com/xd2/">Ximian Desktop's GTK, Galeon, GDM, Metacity, Nautilus, XMMS themes, icone e cursori.</uri></li>
<li>x11-wm/fvwm: <uri link="http://www.fvwm.org/">Un window-manager che supporta schermi virtuali multipli  ICCCM-compliant</uri></li>
<li>x11-wm/icewm: <uri link="http://www.icewm.org">Ice Window Manager</uri></li>
<li>x11-wm/metacity: <uri link="http://www.gnome.org/softwaremap/projects/metacity/">leggero  WindowManager sulle gtk2</uri></li>
<li>x11-wm/treewm: <uri link="http://treewm.sourceforge.net/">WindowManager che arrangia le finestre in un alber (non in una lista)</uri></li>
</ul>
<p>Categorie totali: 113</p>
<p>Pacchetti totali: 6026</p>
</body>
</section>
</chapter>
<chapter>
<title>Bugzilla</title>
<section>
<title>Sommario</title>
<body>
     <ul>
          <li><uri link="#doc_chap1_sect2" >Statistiche</uri></li>
          <li><uri link="#doc_chap1_sect3" >Classifica dei bug chiusi</uri></li>
	  <li><uri link="#doc_chap1_sect4" >Classifica dei nuovi bug</uri></li>
     </ul>
</body>
</section>

<section>
<title>Statistics</title>
<body>
     <p>
     La comunità Gentoo usa Bugzilla (<uri link="http://bugs.gentoo.org" >bugs.gentoo.org</uri>) per annotare e tenere traccia di bugs
     notifiche, suggerimenti e altre interazioni con il team di sviluppo. Tra il 05 Settembre 2003 el' 11 Settembre 2003, l'attività
     sul sito è stata:
     </p>
     <ul>
          <li>437 nuovi bug durante questo periodo</li>
	  <li>295bug chiusi durante questo periodo</li>
	  <li>8 bug precedentemente chiusi sono stati riaperti</li>
     </ul>
     <p>
     Degli attuali 3864 bug aperti: 94 sono classificati come 'bloccanti', 200 sono classificati come 'critici', e 285 sono classificiati come 'primari'.
     </p>
</body>
</section>

<section>
<title>Classifica dei bug chiusi</title>
<body>
     <p>
     Gli sviluppatori e i team che hanno chiuso il maggior numero di bug durante questo periodo:
     </p>
     <ul>
<li><mail link="release@gentoo.org" >Gentoo Release Team</mail>, con 19
              <uri link="http://bugs.gentoo.org/buglist.cgi?bug_status=RESOLVED&amp;bug_status=CLOSED&amp;chfield=bug_status&amp;chfieldfrom=2003-09-05&amp;chfieldto=2003-09-11&amp;resolution=FIXED&amp;assigned_to=release@gentoo.org" >bug chiusi</uri>
            </li>
<li><mail link="mirror-admin@gentoo.org" >Mirror Admins</mail>, con 16
              <uri link="http://bugs.gentoo.org/buglist.cgi?bug_status=RESOLVED&amp;bug_status=CLOSED&amp;chfield=bug_status&amp;chfieldfrom=2003-09-05&amp;chfieldto=2003-09-11&amp;resolution=FIXED&amp;assigned_to=mirror-admin@gentoo.org" >bug chiusi</uri>
            </li>
<li><mail link="games@gentoo.org" >Gentoo Games</mail>, con 16
              <uri link="http://bugs.gentoo.org/buglist.cgi?bug_status=RESOLVED&amp;bug_status=CLOSED&amp;chfield=bug_status&amp;chfieldfrom=2003-09-05&amp;chfieldto=2003-09-11&amp;resolution=FIXED&amp;assigned_to=games@gentoo.org" >bug chiusi</uri>
            </li>
<li><mail link="seemant@gentoo.org" >Seemant Kulleen</mail>, con 13
              <uri link="http://bugs.gentoo.org/buglist.cgi?bug_status=RESOLVED&amp;bug_status=CLOSED&amp;chfield=bug_status&amp;chfieldfrom=2003-09-05&amp;chfieldto=2003-09-11&amp;resolution=FIXED&amp;assigned_to=seemant@gentoo.org" >bug chiusi</uri>
            </li>
<li><mail link="kde@gentoo.org" >Gentoo KDE team</mail>, con 10
              <uri link="http://bugs.gentoo.org/buglist.cgi?bug_status=RESOLVED&amp;bug_status=CLOSED&amp;chfield=bug_status&amp;chfieldfrom=2003-09-05&amp;chfieldto=2003-09-11&amp;resolution=FIXED&amp;assigned_to=kde@gentoo.org" >bug chiusi</uri>
            </li>
<li><mail link="azarah@gentoo.org" >Martin Schlemmer</mail>, con 10
              <uri link="http://bugs.gentoo.org/buglist.cgi?bug_status=RESOLVED&amp;bug_status=CLOSED&amp;chfield=bug_status&amp;chfieldfrom=2003-09-05&amp;chfieldto=2003-09-11&amp;resolution=FIXED&amp;assigned_to=azarah@gentoo.org" >bug chiusi</uri>
            </li>
</ul>
</body>
</section>

<section>
<title>Classifica dei nuovi bug</title>
<body>
     <p>
     Gli sviluppatori e i team a cui sono stati assegnati il maggior numero di nuovi bug durante questo periodo sono:
     </p>
     <ul>
<li><mail link="dev-portage@gentoo.org" >Portage Team</mail>, con 45
              <uri link="http://bugs.gentoo.org/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;chfield=assigned_to&amp;chfieldfrom=2003-09-05&amp;chfieldto=2003-09-11&amp;assigned_to=dev-portage@gentoo.org" >nuovi bug</uri>
            </li>
<li><mail link="azarah@gentoo.org" >Martin Schlemmer</mail>, con 24
              <uri link="http://bugs.gentoo.org/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;chfield=assigned_to&amp;chfieldfrom=2003-09-05&amp;chfieldto=2003-09-11&amp;assigned_to=azarah@gentoo.org" >nuovi bug</uri>
            </li>
<li><mail link="net-mail@gentoo.org" >Net-Mail Packages</mail>, con 23
              <uri link="http://bugs.gentoo.org/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;chfield=assigned_to&amp;chfieldfrom=2003-09-05&amp;chfieldto=2003-09-11&amp;assigned_to=net-mail@gentoo.org" >nuovi bug</uri>
            </li>
<li><mail link="sound@gentoo.org" >Gentoo Sound Team</mail>, con 16
              <uri link="http://bugs.gentoo.org/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;chfield=assigned_to&amp;chfieldfrom=2003-09-05&amp;chfieldto=2003-09-11&amp;assigned_to=sound@gentoo.org">nuovi bug</uri>
            </li>
<li><mail link="drobbins@gentoo.org" >Daniel Robbins</mail>, con 15
              <uri link="http://bugs.gentoo.org/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;chfield=assigned_to&amp;chfieldfrom=2003-09-05&amp;chfieldto=2003-09-11&amp;assigned_to=drobbins@gentoo.org" >nuovi bug</uri>
            </li>
</ul>
</body>
</section>
</chapter>
<chapter>
<title>Tips and Tricks</title>
  
<body>

  <p class="secthead">Un'introduzione a sudo</p>

  <p>
    Il trucco di questa settimana dimostra alcuni usi comuni di <c>sudo</c> che permette
    ai normali utenti di eseguire comandi con privilegi elevati. Questa settimana
    vediamo come usare <c>sudo</c> per vedere i file di log e eseguire una amministrazione di base
    da utente.
  </p>

  <pre caption="Installare sudo">
% <i>emerge app-admin/sudo</i>
  </pre>

  <p>
    La prima cosa da fare è configurare il file <path>/etc/sudoers</path> che
    controlla tutti i privilegi gestiti da <c>sudo</c>. Invece di modificare il file direttamente
    , usate il comando <c>visudo</c>. Per una lista completa
    delle opzioni di configurazione, guardate la pagina man di sudoers (<c>man 5 sudoers</c>).
  </p>
  <p>
    Questo file è un esempio e una dimostrazione di come creare comandi e user aliases.
  </p>
  <pre caption="/etc/sudoers">
# sudoers file.
#
# This file MUST be edited with the 'visudo' command as root.
#
# See the sudoers man page for the details on how to write a sudoers file.
#

# User alias specification
<i>User_Alias      HELPDESK  = jfox, helpdesk</i>
<i>User_Alias      SYSADMINS = david, jc</i>

# Cmnd alias specification
# Create aliases for all commands used in viewing files
<i>Cmnd_Alias      VIEW = /bin/cat, /bin/grep, /bin/more, /usr/bin/head, \
                       /usr/bin/tail, /usr/bin/less </i>

# commands for user administration
<i>Cmnd_Alias  USERADMIN = /usr/sbin/useradd, /usr/sbin/userdel, \
                        /usr/sbin/usermod</i>

# User privilege specification
# Allow SYSADMINS to run any command as any user
<i>SYSADMINS   ALL = ALL</i>

# Allow  users in HELPDESK to use the user administration commands and
# to use the VIEW commands without a password
<i>HELPDESK    ALL = USERADMIN, NOPASSWD:VIEW</i>

# Allow users in the %users group to use the VIEW commands
<i>%users      ALL = VIEW</i>
  </pre>

  <p>
    Ora che il vostro file <path>/etc/sudoers</path> è stato creato, potete
    eseguire comandi usando <c>sudo command</c>.
  </p>

  <pre caption="Esempi">
<codenote>Guardare /var/log/critical/current come utente helpdesk</codenote>
helpdesk@mybox% <i>sudo tail /var/log/critical/current</i>

<codenote>Aggiungere un nuovo utente come utente jfox</codenote>
jfox@mybox% <i>sudo useradd marcus</i>
Password: <i>password for jfox</i>
  </pre>

  <p>
    Anche se questo potrebbe non significare nulla, dovrebbe introdurvi ad alcune delle
    possibilità di <c>sudo</c>. Per maggiori esempi ed opzioni guardate
    le pagine man o la pagina web a <uri>http://www.courtesan.com/sudo/</uri>.
  </p>

</body>
</chapter>
<chapter>
<title>Frase/Firma della settimana</title>
<body>
<p>
La frase/firma della settimana ha preso una pausa questa settimana.
</p>
</body>
</chapter>
<chapter>
<title>Partenze, arrivi e cambiamenti</title>
	<section>
		<title>Partenze</title>
		<body>
		<p>I seguenti sviluppatori hanno recentemente lasciato il team Gentoo:
			<ul>
				<li><e>nessuno questa settimana</e></li>
			</ul>
		</p>
		</body>
	</section>
	<section>
		<title>Arrivi</title>
		<body>
		<p>I seguenti sviluppatori si sono recentemente uniti al team Gentoo Linux:</p>
		<ul>
				<li><e>nessuno questa settimana</e></li>
		</ul>
		</body>
	</section>
	<section>
		<title>Cambiamenti</title>
		<body>
		<p>I seguenti sviluppatori hanno recentemente cambiato ruolo all'interno del progetto Gentoo Linux.</p>
			<ul>
				<li><e>nessuno questa settimana</e></li>
			</ul>
		</body>
	</section>
</chapter>
<chapter>
<title>Contribuite alla GWN</title>
	<body>
	<p>Vi interessa contribuire alla Gentoo Weekly Newsletter? Mandateci una <mail link="gwn-feedback@gentoo.org">email</mail>.</p>
	</body>
</chapter>
<chapter>
	<title>Commenti alla GWN</title>
	<body>
	<p>Mandateci i vostri <mail link="gwn-feedback@gentoo.org">commenti</mail>e aiutateci a rendere la GWN migliore.</p>
	</body>
</chapter>
<chapter>
	<title>Informazioni per l'Iscrizione alla GWN</title>
	<body>
	<p>Per iscrivervi alla Gentoo Weekly Newsletter, mandate un email vuoto a <email>gentoo-gwn-subscribe@gentoo.org</email>.</p>
	<p>Per annullare l'iscrizione alla Gentoo Weekly Newsletter, mandate un email vuoto a <email>gentoo-gwn-unsubscribe@gentoo.org</email>dall'indirizzo email con il quale siete iscritti.</p>
	</body>
</chapter>
<chapter>
	<title>Altre lingue</title>
	<body>
	<p>La Gentoo Weekly Newsletter è anche disponibile nei seguenti linguaggi:</p>
	<ul>
		<li><uri link="http://www.gentoo.org/news/be/gwn/gwn.xml">Olandese</uri></li>
		<li><uri link="http://www.gentoo.org/news/en/gwn/gwn.xml">Inglese</uri></li>
		<li><uri link="http://www.gentoo.org/news/de/gwn/gwn.xml">Tedesco</uri></li>
		<li><uri link="http://www.gentoo.org/news/fr/gwn/gwn.xml">Francese</uri></li>
		<li><uri link="http://www.gentoo.org/news/ja/gwn/gwn.xml">Giapponese</uri></li>
		<li><uri link="http://www.gentoo.org/news/it/gwn/gwn.xml">Italiano</uri></li>
		<li><uri link="http://www.gentoo.org/news/pl/gwn/gwn.xml">Polacco</uri></li>
		<li><uri link="http://www.gentoo.org/news/br/gwn/gwn.xml">Portoghese (Brasile)</uri></li>
		<li><uri link="http://www.gentoo.org/news/pt/gwn/gwn.xml">Portoghese (Portogallo)</uri></li>
		<li><uri link="http://www.gentoo.org/news/ru/gwn/gwn.xml">Russo</uri></li>
		<li><uri link="http://www.gentoo.org/news/es/gwn/gwn.xml">Spagnolo</uri></li>
		<li><uri link="http://www.gentoo.org/news/tr/gwn/gwn.xml">Turco</uri></li>
	</ul>
	</body>
</chapter>
</guide>