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
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
|
Tue Jun 19 06:13:22 UTC 2007
Okay, guys, this is (hopefully) the last of the additions to our 11.0
repository. There are two more still in the pending queue, but
there's a good chance that they won't make the cut this time.
As we mentioned on the mailing list last week, we are putting the
vast majority of our time and effort into getting everything ready
for Slackware 12.0's release. That being the case, if you have
submitted something that did not get included and you haven't heard
from us about it, please resubmit it after we are back to normal
(whatever that is) around here after 12.0 releases.
Thanks to *everyone* for your submissions, public relations help,
and anything else you did to support the project this past year.
On a personal note, I (rworkman) would like to extend a big thanks
to all of the other SlackBuilds.org team members - I greatly
appreciate everything you guys have done to help make this project
a success! Anyway, enough chatter - on to the good stuff:
libraries/libgphoto2: Fixed and/or noted a few issues with hal compatibility.
Big thanks to Michael Wagner for the help with this. --rworkman
libraries/wxGTK: Fixed (again?) the symlink creation for wx/config.
Thanks to Iskar Enev for the report and fix. --rworkman
multimedia/speex: Added - Speex is an Open Source/Free Software patent-free
audio compression format designed for speech.
Thanks to Alex Lysenka. --rworkman
network/irda-utils: Added - IrDA-Utils is a set of utilities to manage and
control infrared devices. Thanks to Michael Wagner.
network/sphinx: Added - Sphinx is a full-text search engine.
Thanks to Michael Johnson. --rworkman
system/xarchiver: Added a symlink in the script so that xarchiver's internal
help feature will work properly. Thanks to Helo Athena for the report.
system/moto4lin: Added - Moto4lin is software intended to be used with Motorola
telephones based on the P2K Platform. Thanks to Mark Walling. --BP{k}
system/unrar: Updated for version 3.7.6. Thanks to Andrew Brouwers for the
updated script. --rworkman
system/watchdog: Added - Linux watchdog timer daemon.
Thanks to Menno Duursma. --rworkman
+--------------------------+
Tue Jun 12 21:30:35 UTC 2007
office/openoffice.org: Updated for version 2.2.1. This includes a security
update to the bundled freetype libraries. For further information, see:
http://development.openoffice.org/releases/2.2.1.html
+--------------------------+
Tue Jun 12 18:50:02 UTC 2007
development/scons: Updated for version 0.97. Thanks to Kyle Guinn. --rworkman
libraries/lzo: Fixed a missing newline escape in the doc copying line.
Thanks to Patrick Volkerding for the heads-up. :-) --rworkman
libraries/vte: Updated for vte-0.16.5. Thanks to Robby Workman. --BP{k}
multimedia/MPlayer: Updated to fix the most recent security advisory:
http://secunia.com/advisories/24302/
This will also increment the VERSION string to 1.0rc1try3 as directed
by the MPlayer homepage. --rworkman
multimedia/kaffeine: Updated for version 0.8.4. Thanks to dadexter. --rworkman
multimedia/mpc: Added - mpc is a client for the MPD Music Player Daemon.
Thanks to Meckafett. --rworkman
multimedia/mpd: Updated to version 0.13.0. Thanks to Andrew Brouwers. --rworkman
multimedia/streamripper: Updated for version 1.62.1. Thanks to Frank Caraballo
(formerly known as MagicMan around these parts) ;-) --rworkman
multimedia/xawtv: Added - xawtv is a TV application for X11 which supports
video4linux devices and the Xvideo extension.
Thanks to Manuel Reimer. --rworkman
network/gnubiff: Added - gnubiff is a GTK+2 mail notification program which does
not need a running daemon like biff. Thanks to Michael Wagner. --rworkman
network/nicotine-plus: Updated for version 1.2.8. Thanks to Iskar Enev.
network/urlview: Added - urlview is a curses program for extracting URLs from
text files; it was originally part of mutt and integrates with it quite well.
Thanks to Michael Wagner. --rworkman
system/multitail: Updated for version 5.0.5. Thanks to Erik Hanson. --rworkman
+--------------------------+
Tue Jun 5 22:10:07 UTC 2007
desktop/clearlooks: Added - Clearlooks is a simple, elegant GTK theme.
Thanks to Brian Muramatsu. --BP{k}
desktop/crystal: Updated for version 1.0.4. Thanks to BP{k}. --rworkman
desktop/QtCurve-KDE3: Updated for version 0.50. Thanks to BP{k}. --rworkman
development/geany: Updated for version 0.11. Thanks to BP{k} for the
update. --rworkman
development/scons: Fixed some hardcoding of paths in the resulting package.
Invert314 reported a problem with xmms2 building that *appeared* to be
caused by the --prefix=$PKG/usr in the old build script, but it turned out
to be something else (which is still unknown at this time). Even so, the
changes made (with the condition below) are good even if there's no known
breakage without them.
Kyle Guinn, look over the changes, and if I omitted something that is
needed as part of the fix, please advise. --rworkman
graphics/gwenview: Added - Gwenview is a fast and easy to use image
viewer for KDE. Thanks to Michael Wagner. --BP{k}
graphics/gwenview-i18n: Added - Internationalisation files for the
gwenview image viewer Thanks to Michael Wagner. --BP{k}
graphics/tripod: Added - Tripod is a QT application allowing you to
display, create, remove, and/or rename your iPod photo album.
Thanks to Michael Wagner. --BP{k}
graphics/vbetool: Added - Vbetool is a tool to run real-mode video BIOS
code to alter the hardware state. Thanks to Alex Lysenka. --BP{k}
multimedia/eyeD3: Added - eyeD3 is a Python module and program for processing
ID3 tags. Thanks to Andrew Lindberg. --rworkman
network/kazehakase: Added - kazehakase is a lightweight GTK+2 web browser
using the Gecko html rendering engine. Thanks to Michael Wagner. --rworkman
network/knemo: Updated for version 0.4.8. Thanks to BP{k}. --rworkman
system/htop: Updated for version 0.6.6; fixed path to icon in htop.desktop
so that the icon will display in kde. Thanks to BP{k}. --rworkman
system/rxvt-unicode: Added - rxvt-unicode is a VT102 emulator for the
X window system with support for unicode. Thanks to Meckafett. --BP{k}
system/wine: Updated for version 0.9.38. Thanks to Robby Workman. --BP{k}
system/xautolock: Miscellaneous script cleanup. Thanks to Jick Nan for
the updates on this. --rworkman
+--------------------------+
Mon May 28 21:08:12 UTC 2007
desktop/gtk-chtheme: Added - gtk-chtheme allows you to change your
gtk+2.0 themes easily. Thanks to Andrew Brouwers. --BP{k}
desktop/icewm: Edited the script to install the manpage; sorry for the
glaring omission... Thanks to Selkfoster for the report. --rworkman
desktop/lxpanel: Added - LXpanel is a NETWM/EWMH compliant lightweight x11
desktop panel. Thanks to Michael Wagner. --rworkman
desktop/ubuntulooks: Added - ubuntulooks is a polished brown GTK+2.0
theme. Thanks to Andrew Brouwers. --BP{k}
games/wormux: Added - War is declared! Thanks to Adnan Hodzic. --BP{k}
libraries/libevent: Miscellaneous script cleanup. --rworkman
libraries/ncurses-ruby: Added - ncurses-ruby is an extension to the Ruby
programming language. Thanks to Lehman Black. --BP{k}
libraries/SDL_gfx: Added - SDL_gfx is a library that implements graphics
primitives. Thanks to BP{k}. --alien
network/centerim: Added - CenterIM is a multi-protocol command-line instant
messenger. Thanks to dadexter. --BP{k}
network/snort: Updated for version 2.6.1.5. Thanks to Alan Hicks. --rworkman
network/privoxy: Added - Privoxy is a web proxy with advanced filtering
capabilities. Thanks to Alex Lysenka. --BP{k}
network/raggle: Added - Raggle is a console RSS aggregator, written in Ruby.
Thanks to LeLehman Black. --BP{k}
network/tor: Updated for version 0.1.2.14. Added rc.tor init script, and
added lines to the post-install script to keep the existing permissions on
that script if one is already installed. Thanks to Erik Hanson. --rworkman
system/ntfs-3g: Fixed missing APPROVED line in the ntfs-3g.info.
Thanks to eroc for noticing this. --BP{k}
+--------------------------+
Sun May 27 17:49:14 UTC 2007
desktop/QtCurve-KDE3: Updated for version 0.49. Thanks to BP{k}. --rworkman
desktop/domino: Added - Domino is a style for KDE with a soft look.
Thanks to eroc. --BP{k}
desktop/slim: Updated. Build was modified to include an xinitrc.slim.
Thanks to dadexter. --BP{k}
libraries/dbus: Edited rc.messagebus to add a "reload" option (useful for
when additions are made to the plugdev, power, or video group in /etc/group
so that HAL will recognize them. Thanks to Eric Hameleers for the changes.
Edited doinst.sh to keep the existing permissions on rc.messagebus.new if
rc.messagebus already exists on the system. --rworkman
libraries/g-wrap: Added - g-wrap is a tool for exporting C libraries into
Scheme interpreters. Thanks to dadexter. --BP{k}
libraries/libsamplerate: Fixed typing error for the chmod line and added
the missing $TAG line. Thanks to "sevens" for spotting this. --BP{k}
libraries/mcs: Added - mcs is a library for managing configuration settings.
Thanks to Meckafett. --BP{k}
libraries/nss-mysql: Added - NSS-MySQL is a NSS library for MySQL, featuring
full group, passwd and shadow support. Thanks to Menno Duursma. --BP{k}
games/freeciv: Added - freeciv is a free turnbased multiplayer strategy game,
based on the popular game Civilization. Thanks to Iskar Enev. --BP{k}
multimedia/GoogleEarth: Updated for version 4.1.7076.4458 - weird versioning,
but whatever... :-) Thanks to Michiel van Wessem. --rworkman
multimedia/audacious: Added - Audacious is a small and powerful media player.
Thanks to Meckafett. --BP{k}
multimedia/audacious-plugins: Added - audacious-plugins are plugins needed by
the audacious media player. Thanks to Meckafett. --BP{k}
multimedia/cmus: Added - cmus is a small and fast music player written in
ncurses. Thanks to eroc. --BP{k}
multimedia/museek-plus: Added - Museek+ is a file-sharing application for the
Soulseek p2p network. Thanks to Iskar Enev. --BP{k}
network/dovecot: Updated for version 1.0.0. Thanks to Alan Hicks. --rworkman
network/elinks: Added - ELinks is an advanced and well-established feature-rich
text mode web browser. Thanks to Brian Muramatsu (fhobia) and dadexter for
the build script. --rworkman
network/lighttpd: Updated for version 1.4.15 and updated the rc.lighttpd
script. Thanks to dadexter. --BP{k}
network/opera: Updated for version 9.21. Thanks to dadexter. --BP{k}
network/postfix: Updated for version 2.4.1. Thanks to Alan Hicks. --rworkman
network/sylpheed: Updated for version 2.4.1. Thanks to dadexter. --BP{k}
network/wireshark: Updated for version 0.99.5. Thanks to BP{k}. --rworkman
office/tellico: Updated for version 1.2.11. Thanks to BP{k}. --rworkman
system/ivman: Added - Ivman is a generic handler for HAL events; it can be used
for automounting or running arbitrary commands in response to HAL events.
Thanks to Menno Duursma. --rworkman
system/ntfs-3g: : Updated for version 1.516. Thanks to eroc. --BP{k}
system/pmount: Added - pmount is a wrapper around the standard mount program
which permits normal users to mount removable devices without a matching
/etc/fstab entry. This can be very useful in conjunction with ivman.
Thanks to Menno Duursma. --rworkman
system/powertop: Added - PowerTOP is a Linux tool that finds the software
component(s) that make your laptop use more power than necessary while it
is idle. Thanks to Kyle Guinn. --rworkman
system/sshfs: Added - Sshfs is a filesystem client based on the SSH File
Transfer protocol. Thanks to Alan Hicks. --BP{k}
system/tiger: Added - The 'tiger' scripts are a set of programs used to
perform security audits of Unix systems. Thanks to Menno Duursma. --BP{k}
+--------------------------+
Sun May 20 04:44:28 UTC 2007
system/hal: Removed --enable-docbook-docs from configure; this caused a build
failure due to requiring newer linuxdoc-tools. I've been playing with this
on Slackware -current and forgot to remove that before pushing the updates.
Sorry for the inconvenience, and thanks to Old_Fogie for bringing it to my
attention. --rworkman
+--------------------------+
Sun May 20 01:22:12 UTC 2007
system/hal-info: Updated for hal-info-20070516. --rworkman
system/hal: Fixed pid file location. Two new groups are required: the plugdev
group (which was added to Slackware -current recently) is now used to mount
removable devices, and the power group is now used for Power Management
(shutdown, reboot, hibernate/suspend). Be sure to move .new files over after
upgrading the resulting package.
Thanks to everyone who contributed to the discussion of this and related
topics on the -users mailing list. --rworkman
+--------------------------+
Sat May 19 02:30:22 UTC 2007
desktop/recoll: Added - Recoll is a personal full text search program with a
Qt GUI. Requires xapian-core to be installed. Thanks to titopoquito. --alien
libraries/xapian-core: Added - a search engine library. Thanks to titopoquito.
--alien
system/antiword: Added - antiword is a MS Word reader and converter, and can
optionally be used by the Recoll search program. Thanks to titopoquito.
--alien
system/unrtf: Added - unrtf is a RTF file converter which can optionally be
used by the Recoll search program. Thanks to titopoquito. --alien
+--------------------------+
Thu May 17 02:19:10 UTC 2007
network/snort: Fixed. The download link so it still points to the correct
download and no longer shows as not available. Thanks to Ference Deak and
byleth for reporting this. --BP{k}
network/dovecot: Fixed. $OUTPUT was pointing to the wrong dir, and was
declared but not used. Thanks to dadexter for reporting this. --BP{k}
+--------------------------+
Mon May 14 03:23:15 UTC 2007
network/pidgin: Removed. This is now available on the Slackware mirrors as an
unsupported package. Thanks to Eric Hameleers for being stubborn about this
and getting it to build against mozilla-nss. Here is a link to the package;
be sure to read the README.TXT in the directory:
http://slackware.osuosl.org/unsupported/pidgin/stable/ --rworkman
+--------------------------+
Sun May 13 04:49:10 UTC 2007
development/vic: Added - vic is a perl wrapper to integrate RCS into the
editor of your choice; essentially, it automatically checks the selected
file out, edits it normally, and then checks the file back in with RCS.
Thanks to Menno Duursma. --rworkman
network/centericq: Fixed spelling error in the slack-desc. Thanks to Iskar
Enev for pointing this out. --BP{k}
+--------------------------+
Wed May 9 22:07:00 UTC 2007
First of all, it's probably a good idea to clarify a couple of things from the
batch of updates on 20070508. We credited Volkerding in the gnutls, poppler,
and poppler-data scripts; in case it's not obvious, he didn't submit them to
us - we simply pulled them from the Slackware -current sources and modified
them as needed to build on 11.0. In other words, if you experience a problem
with one of those scripts, don't bother Pat - they're ours. Now, with all of
that said, let's get on to the good stuff... --rworkman
network/wireshark: Fixed download location in wireshark.info and on the site.
Thanks to Mark Walling for pointing this out. --BP{k}
development/cssed: Added - cssed is a GTK2 application to help create and
maintain CSS style sheets. It also has some functionality for working
with html and a few other languages. Thanks to Michiel van Wessem. --rworkman
system/chkrootkit: Added - chkrootkit (Check Rootkit) is a common unix-based
program intended to help system administrators check their system for known
rootkits. Thanks to Michiel van Wessem and alphageek. --rworkman
+--------------------------+
Wed May 9 02:32:18 UTC 2007
libraries/gnutls: Fixed $OUTPUT at the end of the script, that placed the pkg
in /tmp/SBO instead of what $OUTPUT was set to. Thanks to eroc for spotting
this. --BP{k}
+--------------------------+
Tue May 8 15:54:28 UTC 2007
development/sbcl: Added - SBCL is an open source compiler and runtime system
for ANSI Common Lisp. Thanks to Paul Wisehart. --BP{k}
network/pidgin: Added - pidgin is a GTK+ instant messaging program and the
successor of Gaim. Thanks to Patrick Volkerding and Robby Workman. --BP{k}
network/claws-mail: Updated for version 2.9.2. Thanks to Erik Hanson. --BP{k}
libraries/gnutls: Added - gnutls is a TLS (Transport Layer Security) 1.0 and
SSL (Secure Sockets Layer) 3.0 implementation for the GNU project.
Thanks to Robby Workman and Patrick Volkerding. --BP{k}
libraries/libxml++: Added - libxml++ is a C++ wrapper for the libxml XML
parser library. Thanks to Iskar Enev. --BP{k}
libraries/poppler: Added - Poppler is a PDF rendering library based on the
xpdf-3.0 code base. Thanks to Patrick Volkderding for the script from
Slackware -current and Andrew Brouwers for the modifications. --BP{k}
libraries/poppler-data: Added - poppler-data consists of encoding files to be
used with poppler. Thanks to Patrick Volkerding for the script from -current
and to Andrew Brouwers for the modifications. --BP{k}
office/epdfview: Added - ePDFView is a lightweight, GTK+ based PDF viewer
for X. Thanks to Andrew Brouwers. --BP{k}
system/hal: Fixed an oversight on my part that allowed all members of the "video"
group to shutdown/restart the computer. This now defaults to group "wheel"
Note that this is configurable - see the README. --rworkman
system/wine: Updated for version 0.9.36. Thanks to Robby Workman. --BP{k}
+--------------------------+
Mon May 7 15:03:09 UTC 2007
desktop/crystal: Updated for version 1.0.2. Thanks to BP{k}. --rworkman
desktop/icon-naming-utils: Fixed location of pkgconfig directory in the
resulting package; like gnome-icon-theme in 11.0, someone decided that
$(datadir)/pkgconfig was appropriate, so it lands in /usr/share instead
of /usr/lib. --rworkman
desktop/kdmtheme: Updated for version 1.1.3. Thanks to BP{k}. --rworkman
desktop/QtCurve-KDE3: Updated for version 0.48.4. Thanks to BP{k}. -rworkman
desktop/tango-icon-theme: Added - the Tango Icon Theme is a desktop environment
independent set of icons following the new icon name specification from
FreeDesktop.org. Thanks to Michael Wagner. --rworkman
development/jam: Added - Jam is a program construction tool, like make(1).
Thanks to Erik Hanson (elohim). --rworkman
network/esmtp: Added - ESMTP is a user-configurable relay-only MTA with a
sendmail-compatible syntax. Thanks to Vasilis Papavasileiou. --rworkman
network/vnstat: Added - vnStat is a network traffic monitor for Linux.
Thanks to Michiel van Wessem (BP{k}). --rworkman
network/vpnc: Added - vpnc is a VPN client compatible with Cisco's EasyVPN
equipment. Thanks to Alex Lysenka. --BP{k}
office/basket: Updated for version 1.0.2. Thanks to BP{k}. --rworkman
office/tellico: Updated for version 1.2.10. Thanks to BP{k}. --rworkman
system/hal-info: Added - the hal-info package is an architecture-independent
package containing the hardware device information needed by HAL.
Thanks to Robby Workman. --elohim
system/hal: Added - HAL is a hardware abstraction layer.
Thanks to Ole Andre Rodlie for the original script and for giving us the
"push" needed to do something with this. :) --rworkman/elohim
system/multitail: Updated to version 5.0.2. Thanks to Erik Hanson. --BP{k}
system/mybashburn: Added - mybashburn is a CLI frontend using ncurses for the
various cd/dvd burning utilities. Thanks to Michael Wagner. --BP{k}
system/sakura: Added - sakura is a lightweight terminal emulator based on GTK
and VTE. Thanks to Erik Hanson (elohim). --rworkman
+--------------------------+
Tue May 1 22:00:46 UTC 2007
desktop/dmenu: Updated for version 3.0. Thanks to eroc. --BP{k}
desktop/icon-naming-utils: Added - : Icon-naming-utils provides a script for
maintaining backwards compatibility with current desktop icon themes, while
migrating to the names specified in the Icon Naming Specification. Thanks
to Michael Wagner. --BP{k}
development/cupsddk: Added - The Cups Driver Developmentkit (cupsddk) provides
the tooling needed to develop drivers for CUPS and other printing
enviroment. Thanks to Iskar Enev. --BP{k}
development/nano: Updated for version 2.0.6. Thanks to Erik Hanson. --BP{k}
development/xml-simple: Added - XML::Simple is a perl module for reading and
writing XML. Thanks to Michael Wagner. --BP{k}
graphics/gtkam; Added - Gtkam is a GTK2 front-end to libgphoto. Thanks to
Michael Wagner. --BP{k}
libraries/dbus-qt3: Added - QT3 bindings for the dbus IPC library.
Thanks to Ole Andre Rodlie. --BP{k}
libraries/glibmm: Removed lots of API reference docs from the resulting package.
Thanks to Selk Foster. --rworkman
libraries/gtkmm: Removed lots of API reference docs from the resulting package.
Thanks to Selk Foster. --rworkman
libraries/libexif-gtk: Added - libexif-gtk provides GTK+ widgets to diplay and
edit EXIF tags. Thanks to Michael Wagner. --BP{k}
libraries/libsigcxx: Removed lots of API reference docs from the resulting package.
Thanks to Selk Foster. --rworkman
libraries/libdvdread: Updated for version 0.9.7. Thanks to eroc for the update.
--BP{k}
libraries/libsamplerate: Added - libsamplerate is a sample rate converter for
audio. Thanks to Paul Wisehart. --BP{k}
multimedia/gtkpod: Added - gtkpod is a platform independent Graphical User
Interface for Apple's iPod using GTK2. Thanks to Alex Lysenka. --BP{k}
network/gajim: Added - Gajim is a GTK+ jabber client written in Python.
Thanks to dadexter. --BP{k}
network/mozplugger: Added - Mozplugger allows you to intergrate external apps
to view that Mozilla can't handle itself. Thanks to Michael Wagner. --BP{k}
network/tor: Updated for version 0.1.2.13. Thanks to Erik Hanson. --BP{k}
system/apcupsd: Updated for version Update to 3.14.0. Thanks to rworkman. --BP{k}
system/iscan: Updated for version 2.6.0. Please note - due to the fact that
I don't have access to the relevant hardware, I cannot verify that this
actually works; all I can guarantee is that it builds a compliant package.
Thanks to MagicMan. --BP{k}
system/fuse: Updated for version 2.6.5. Thanks to eroc. --BP{k}
system/multitail: Updated for version 5.0.1. Thanks to Erik Hanson. --BP{k}
system/postgresql: Updated for version 8.2.4. Thanks to Adis Nezirovic. --BP{k}
system/pygresql: Added - PyGreSQL is an open-source Python module that
interfaces to a PostgreSQL database. Thaks to Vasilis Papavasileiou. --BP{k}
system/set_rlimits: Added - set_rlimits gives non-root users the ability to
run programs with realtime scheduling. Thanks to Paul Wisehart. --BP{k}
system/splix: Added. - SpliX is a set of CUPS printer drivers for SPL (Samsung
Printer Language) printers. Thanks to Iskar Enev. --BP{k}
+--------------------------+
Sun Apr 22 13:16:50 UTC 2007
desktop/ksmoothdock: Added - ksmoothdock is a KDE panel (like KDE's kicker)
with some cool graphical effects. Thanks to Allen Coleman. --alien
development/Amaya: Added - Amaya is the W3C editor and browser. Thanks
to Alex Lysenka. --BP{k}
games/qgo: Added - Qgo is a QT client for the ancient board game Go.
Thanks to Mark Saiia. --BP{k}
games/wesnoth: Updated for version 1.2.4. Thanks to BP{k}. --elohim
graphics/dia: Updated for version 0.96. Thanks to Matt Hayes. --BP{k}
graphics/exif: Added - exif is a small command-line utility to show EXIF
information hidden in JPEG files. Thanks to Kyle Guinn. --BP{k}
graphics/jhead: Added - jhead is a JPEG exif header manipulation tool.
Thanks to Peter Drauden. --BP{k}
libraries/libmp4v2: Added - libmp4vs provides functions to read, create,
write and modify mp4 files. Thanks to Alex Lysenka. --BP{k}
multimedia/easytag: Updated to version 2.0. Thanks to Alex Lysenka and
Yalla-One. --BP{k}
multimedia/mpd: Added --mandir switch to configure so that manpages will be
compressed properly. Thanks to Vasilis Papavasileiou. --rworkman
network/claws-mail: Updated for version 2.9.1. Thanks to Erik Hanson. --BP{k}
system/dstat: Added - Dstat is a versatile replacement for vmstat, iostat,
netstat, nfsstat and ifstat. Thanks to Erik Hanson. --BP{k}
system/multitail: Added - MultiTail lets you view one or multiple files like
the original tail program. Thanks to Erik Hanson. --BP{k}
system/ntfs-3g: Updated to ntfs-3g 1.417. Thanks to eroc. --BP{k}
system/wine: Updated for version 0.9.35. Thanks to Rob Workman. --BP{k}
+--------------------------+
Tue Apr 17 20:28:42 UTC 2007
desktop/ion-3ds: Added - Ion is a tiling tabbed window manager designed with
keyboard users in mind. Thanks to Vasilis Papavasileiou. --rworkman
desktop/pekwm: Added - pekwm is a small and flexible window manager.
Thanks to Vasilis Papavasileiou. --rworkman
desktop/wmctrl: Added - the wmctrl program is a command line tool to interact
with an EWMH/NetWM compatible X Window Manager.
Thanks to Vasilis Papavasileiou. --rworkman
development/flup: Updated for version 0.5.r2311. Thanks to danieldk. --rworkman
development/jasspa: Added - Jasspa's MicroEmacs is an Emacs editor.
Thanks to Ferenc Deak. -- BP{k}
development/medit: Added - medit is a programming text editor.
Thanks to Erik Hanson. --rworkman
development/lua: Updated for version 5.1.2. Thanks to Robby Workman, Vasilis
Papavasileiou, and Menno E. Duursma. --elohim
development/nano: Updated for version 2.0.4. Thanks to elohim. --rworkman
games/pengupop: Updated for version 2.2.4. Thanks to MagicMan. --elohim
libraries/fox-toolkit: Updated for version 1.6.25. Added OpenGL variable.
Thanks to Robby Workman. --elohim
libraries/libesmtp: Added - libesmtp is a library to manage posting or
submission of email via SMTP. Thanks to Vasilis Papavasileiou. --rworkman
multimedia/xmms2: Added - XMMS2 is the next generation of XMMS.
Thanks to Kyle Guinn. --rworkman
network/bogofilter: Added - Bogofilter is a Bayesian spam filter.
Thanks to Vasilis Papavasileiou. --rworkman
network/claws-mail: Updated for version 2.9.0. Thanks to Erik Hanson
for the update. --alien
network/ctorrent: Added - CTorrent is a BitTorrent client implemented in C++
to be lightweight and quick. Thanks to Eric Hameleers. --rworkman
network/knemo: Updated for version 0.4.7. Thanks to BP{k}. --rworkman
network/opera: Updated for version 9.20. Thanks to Robby Workman. --elohim
network/transmission: Added - Transmission is a lightweight BitTorrent client.
Thanks to Vasilis Papavasileiou. --rworkman
office/tth: Added - tth is a TeX to HTML translator and includes a few extra
conversion scripts. Thanks to Peter Drauden. --rworkman
system/cfengine: Added - cfengine is a "software robot" to manage system
configuration. Thanks to Menno Duursma. --rworkman
system/wine: Updated for version 0.9.34. Thanks to rworkman. --elohim
system/xbindkeys: Updated for version 1.8.1. Thanks to Erik Hanson. --rworkman
system/xfe: Updated for version 0.99. Thanks to Robby Workman. --elohim
+--------------------------+
Fri Apr 6 18:46:52 UTC 2007
office/abiword: Added - AbiWord is a word processor application that is
relatively lightweight yet feature-rich. Thanks to dadexter. --rworkman
libraries/ORBit2: Fixed slack-desc file. Thanks to dadexter. --rworkman
system/cdcopy: Added - cdcopy is a dialog / shellscript program to easily
copy CDs from the console. Thanks to Mennu Duursma. --rworkman
+--------------------------+
Thu Apr 5 21:40:47 UTC 2007
desktop/pypanel: Added - PyPanel is a lightweight panel/taskbar written in
Python and C for X11 window managers. Thanks to Vasilis Papavasileiou.
desktop/QtCurve-KDE3: Updated for version 0.48.3. Thanks to BP{k}. --rworkman
games/wesnoth: Updated for version 1.2.3. Thanks to BP{k}. --rworkman
libraries/bluez-libs: Added - bluez-libs contains the libraries implementing
the Bluetooth protocol stack in userspace. Thanks to Ralph Moritz.
libraries/libgnomecanvas: Minor changes to build script. --rworkman
libraries/libgnomecups: Added - libgnomecups is a library for accessing CUPS
from GTK/Gnome applications. Thanks to dadexter. --rworkman
libraries/python-xlib: Added - python-xlib is an X Library module for Python.
Thanks again to Vasilis Papavasileiou. --rworkman
libraries/sqlite: Updated for version 3.3.14. --rworkman
libraries/libgnomeprint: Added - libgnomeprint is the GNOME print architecture.
Thanks to dadexter. --rworkman
libraries/libgnomeprintui: Added - libgnomeprintui is the user interface portion
of the GNOME print architecture. Thanks again to dadexter. --rworkman
libraries/yaz: Updated for version 2.1.54. Thanks to BP{k}. --rworkman
multimedia/mplayerplug-in: Modified the README to note that Slackware's SeaMonkey
package must be installed. Thanks to alkos333 for prodding us on this. ;-)
network/nicotine-plus: Updated for version 1.2.7.1. Thanks to Iskar Enev
for the update. --rworkman
office/basket: Updated for version 1.0.1. Thanks to BP{k}. --rworkman
office/kchmviewer: Updated for version 3.0 and moved from the graphics/
category. Thanks to BP{k} for the update. --rworkman
office/tellico: Updated for version 1.2.9. Thanks to BP{k}. --rworkman
system/bluez-utils: Added - bluez_utils contains the Bluetooth utilities.
Thanks again to Ralph Moritz. --rworkman
system/gdm: Added - gdm is the GNOME Display Manager.
Thanks to James Rich. --rworkman
+--------------------------+
Sun Apr 1 23:29:32 UTC 2007
office/openoffice.org: Updated for version 2.2.0. Thanks to rworkman. --BP{k}
+--------------------------+
Tue Mar 27 15:24:04 UTC 2007
office/acroread: Reverted the patch from yesterday, as it causes problems
for those who weren't previously having issues. If you need the patch,
uncomment the line in the script which applies it - otherwise, leave it
alone. Thanks to Martin Ivanov for the quick report. --rworkman
+--------------------------+
Tue Mar 27 00:16:55 UTC 2007
desktop/kkbswitch: Added - KKBSwitch is a keyboard layout indicator for KDE.
Thanks to Audrius Kazukauskas. --BP{k}
desktop/xvkbd: Added - Xvkbd is a virtual keyboard for X.
Thanks to Erik Hanson. --BP{k}
development/geany: Updated for version 0.10.1. Thanks to rworkman. --BP{k}
development/nano: Updated for version 2.0.3. Thanks to elohim. --BP{k}
games/gnugo: Added - Gnugo is a commandline version of the japanese "go"
game. Thanks to Mark Saiia. --BP{k}
games/pengupop: Added - a networked multiplayer Puzzle Bobble clone.
Thanks to MagicMan --elohim
graphics/graphviz: Added - Graphviz is open source graph visualization
software. Thanks to Audrius Kazukauskas. --BP{k}
grapgics/pcb: Updated for version 20070208p1. Thanks to Kyle Guinn. --BP{k}
graphics/scribus: Updated for version 1.3.3.8. Thanks to rworkman. --BP{k}
multimedia/MPlayer: Updated with a major rewrite of the MPlayer script.
Thanks to rworkman. --BP{k}
multimedia/mpd: Updated for version 0.12.2. Thanks to Andrew Brouwers. --BP{k}
office/acroread: Updated to fix a problem that would bite people who might
have upgraded to newer gtk+ - this won't be an issue with stock 11.0, but
it will cause problems later. It should be fixed upstream in the next
release Adobe Reader. --rworkman
system/cddfs: Added - cddfs is a FUSE filesystem that can be used to
mount audio CDs. Thanks to Daniel de Kok. --BP{k}
system/isomaster: Added - ISO Master is an open-source, easy to use,
graphical, CD image editor for Linux and BSD. Thanks to Erik Hanson. --BP{k}
system/pbzip2: Added - pbzip is a parrallel implementation of the bzip2
file compressor. Thanks to Erik Hanson. --BP{k}
system/qemulator: Updated for version 0.4.5. Thanks to Erik Hanson. --BP{k}
+--------------------------+
Wed Mar 14 16:12:56 UTC 2007
desktop/QtCurve-KDE3: Updated for version 0.47. Thanks to BP{k}. --rworkman
desktop/dmenu: Updated for version 2.8. Thanks to eroc. --rworkman
development/ftjam: Added - FT-JAM is a simple derivative of the Jam
build tool. Thanks to Ferenc Deak. --rworkman
games/kobodeluxe: Added - Kobo Deluxe is an enhanced version of Akira
Higuchi's game XKobo. Thanks to Erik Hanson. --rworkman
games/wesnoth: Updated for 1.2.2. Thanks to Michiel van Wessem.
--danieldk
graphics/digikam: Updated for version 0.9.1. Thanks to MagicMan for the
update. --rworkman
graphics/digikamimageplugins: Updated for version 0.9.1. Thanks to MagicMan
for the update. --rworkman
libraries/exiv2: Updated for version 0.13. Thanks to MagicMan for the
update. --rworkman
libraries/jasper: Added - JasPer is a collection of software (a library and
application programs) for the coding and manipulation of images. This is
a new dependency of digikam. Thanks to MagicMan. --rworkman
libraries/libgnomecanvas: Added - The GNOME canvas is an engine for structured
graphics. Thanks to James Rich. --rworkman
libraries/libixp: Minor script cleanup - the man pages are now compressed.
Thanks to eroc. --rworkman
libraries/libkexiv2: Added - Libkexiv2 is a wrapper around Exiv2 library to
manipulate pictures metadata. This is a new dependency of digikam. Thanks
to MagicMan for the submission. --rworkman
libraries/python-levenshtein: Added - python-levenshtein is a C extension
module for Python. Thanks to Daniel de Kok (danieldk). --rworkman
libraries/sqlite: Updated for version 3.3.13. Thanks to MagicMan for
the update. --rworkman
misc/gnome-doc-utils: Added - gnome-doc-utils provides stylesheets
and utilities to build GNOME documentation. Thanks to James Rich.
--danieldk
network/apache2: Updated for version 2.2.4 plus various small script
fixes. Thanks to Adis Nezirovic. --BP{k}
network/claws-mail: Updated for version 2.8.1. Thanks to Erik Hanson
for the update. --rworkman
network/mod_fcgid: Updated for version 2.1 and the submitted apache2
script. Thanks to Adis Nezirovic. --BP{k}
network/suphp: Added - Suphp is a tool for executing PHP scripts with
the permissions of their owners. It is mainly of use in shared hosting
and other multiuser http server environments. Thanks to Menno Duursma.
--BP{k}
office/basket: Added - BasKet Note Pads is a note-taking application that
makes it easy to write down ideas as you think and quickly find them again
later. Thanks to Michiel van Wessem (BP{k}). --rworkman
office/kmymoney2: Updated for version 0.8.6. Thanks to BP{k}. --rworkman
system/cryptsetup-luks: Added - cryptsetup-luks is a utility that is used for
managing encrypted partitions and volumes. Thanks to danieldk. --rworkman
+--------------------------+
Thu Mar 8 21:01:32 UTC 2007
desktop/icewm: Updated for version 1.2.30. Thanks to robw810. --BP{k}
development/LLgen: Added - LLgen is a tool for generating an efficient
recursive descent parser from an ELL(1) grammar.
Thanks to Ferenc Deak. --BP{k}
development/ddd: Added - GNU DDD is a graphical front end for commandline
debuggers. Thanks to Ferenc Deak. --BP{k}
development/ocaml: Added - Ocaml is a general-purpose programming
language,designed with program safety and reliability in mind.
Thanks to Ferenc Deak. --BP{k}
development/tkcvs: Added - tkcvs is Tcl/Tk based graphical interface for
CVS and inversion. Thanks to Ferenc Deak. --BP{k}
games/defcon: Added - DEFCON is a multiplayer simulation of global
thermonuclear war. Thanks to Daniel de Kok. --elohim
libraries/gpgme: Updated for version 1.1.4. Thanks to Erik Hanson.
--danieldk
libraries/lablgtk: Added - lablGTK is an Objective Caml interface to
gtk+/gtk+-2. Thanks to Ferenc Deak. --BP{k}
libraries/libgcrypt: Added - libgcrypt is a general purpose cryptographic
library based on code from GnuPG. Thanks to Audrius Kazukauskas.
--robw810
libraries/rrdtool: Added - rrdtool is a system for storing and displaying
time-series data. Thanks to Michael Johnson. --danieldk
libraries/yaz: Updated for version 2.1.50. Thanks to BP{k}. --robw810
multimedia/GoogleEarth: Added - Google Earth is a virtual globe program.
Thanks to BP{k} for this one. --elohim
network/aMule: Added - aMule is a multiplatform ed2k client - fork of the
eMule client. Thanks to Iskar Enev. --robw810
network/castget: Added - castget is a simple, command-line based RSS
podcast enclosure downloader. Thanks to Jick Nan. --BP{k}
network/knemo: Added - kNemo (KDE Network Monitor) offers a network monitor
similar to the one found in Windows. Thanks to BP{k}. --robw810
network/unfs3: Added - Unfs3 is a user-mode NFSv3 server deamon, mostly
useful where locking isn't needed. Thanks to Menno Duursma. --BP{k}
office/tdl: Added - Tdl is a simple todo list manager written in C.
Thanks to dadexter. --BP{k}
office/tellico: Updated for version 1.2.8. Thanks to BP{k}. --robw810
system/fakeroot: Added - fakeroot runs commands in an environment faking
root privileges. Thanks to Ferenc Deak. --danieldk
system/fuse: Updated for version 2.6.3. Thanks to eroc. --danieldk
system/ntfs-3g: Updated for version 1.0. Thanks to eroc. --danieldk
system/unison: Added - Unison is a file-synchronization tool.
Thanks to Ferenc Deak. --BP{k}
system/wine: Updated for version 0.9.32. Thanks to robw810. --BP{k}
+--------------------------+
Fri Mar 2 15:27:51 UTC 2007
games/ltris: Added - ltris is a tetris clone.
Thanks to Bill Kirkpatrick. --BP{k}
graphics/fontforge: Updated for version 20061220. Thanks to robw810. --BP{K}
libraries/libsigcxx: Minor fix with the copying of libsigcxx.SlackBuild into
the documentation directory. --robw810
libraries/vte: Updated for version 0.15.1. Thanks to robw810. --BP{k}
libraries/wxGTK: Fixed a problem with the upstream source that causes the
/usr/bin/wx-config symlink to point at the $PKG directory. In doing so,
the capability to build without unicode support was added, and this should
handle the two different symlinks needed depending on whether unicode is
enabled or not. Thanks to Niki Kovacs for the report. --robw810
network/nicotine-plus: Minor fix of the line which copies the SlackBuild
script into the documentation directory. Thanks to Audrius Kazukauskas
for the report. --robw810
system/ncdu: Added - ncdu is an NCurses version of the famous old 'du'
Unix command. Thanks to elohim. --BP{k}
+--------------------------+
Tue Feb 27 22:20:39 UTC 2007
development/django: Added - Django is a high-level Python web framework
that encourages rapid development and clean, pragmatic design.
Submitted by Daniel de Kok. --robw810
development/flup: Added - flup provides three sets of WSGI servers/gateways
which speak AJP, FastCGI, and SCGI. Thanks to Daniel de Kok. --robw810
development/pil: Added - The Python Imaging Library (PIL) provides image
processing facilities to Python programs.
Thanks to Daniel de Kok. --robw810
development/psycopg: Added - psycopg is a PostgreSQL database adapter for
Python. Thanks to Daniel de Kok. --robw810
development/pysqlite2: Added - pysqlite is a Python DB-API 2.0 interface for
the SQLite embedded relational database engine.
Thanks to Daniel de Kok. --robw810
development/webpy: Added - web.py is a simple and powerful web framework for
Python. It provides a simple database abstraction, a template engine, and
abstractions for HTTP requests. Thanks to Daniel de Kok. --robw810
libraries/libsigcxx: Renamed from libsigc++ to work around an issue with our
php parsing. We've tried str_replace() on the "+" characters, but it seems
that the solution is not obvious... --robw810
libraries/ORBit2: Added - ORBit is a high-performance CORBA (Common Object
Request Broker Architecture) ORB (object request broker).
Thanks to Daniel Liljeqvist. --robw810
libraries/wxGTK: Updated for version 2.6.3. Thanks to Marc-Andre Moreau for
the updated script, and thanks to Chess Griffin for all the work he's done
in ironing out the wrinkles associated with us wanting to maintain only
one version of wxGTK in the repository. --robw810
multimedia/audacity: Updated for version 1.3.2 (1.4 beta) to build against
the newer wxGTK-2.6.x. Thanks again to Chess Griffin for doing the work
on the wxGTK/audacity combination. --robw810
network/nicotine-plus: Added - Nicotine-plus (nicotine+) is a client for the
SoulSeek filesharing network. Thanks to Iskar Enev for the script (and for
his patience while we were working out the wrinkles in wxGTK). --robw810
+--------------------------+
Mon Feb 26 01:50:06 UTC 2007
academic/xdrawchem: Removed pushd/popd usage.
multimedia/MPlayer: Removed pushd/popd usage and added skins and
font back to the package. --BP{k}
multimedia/mp3blaster: Removed pushd/popd usage.
multimedia/streamtuner: Removed pushd/popd usage.
multimedia/tvtime: Removed pushd/popd usage.
libraries/yaz: Removed pushd/popd usage.
libraries/sqlite: Removed pushd/popd usage.
network/lighttpd: Removed pushd/popd usage.
office/devtodo: Removed pushd/popd usage.
+--------------------------+
Sun Feb 25 21:15:43 UTC 2007
system/kqemu: Regenerated the install.sh patch so it would apply
in the newest kqemu release. Thanks to Bill Kirkpatrick for the
report. --robw810
+--------------------------+
Sun Feb 25 20:24:23 UTC 2007
desktop/dmenu: Removed pushd/popd usage.
development/lua: Removed pushd/popd usage.
development/mono: Removed pushd/popd usage.
development/scons: Removed pushd/popd usage.
games/crack-attack: Removed pushd/popd usage.
games/foobilliard: Removed pushd/popd usage.
graphics/digikam: Removed pushd/popd usage.
graphics/gphoto2: Removed pushd/popd usage.
graphics/pcb: Removed pushd/popd usage.
libraries/clearsilver: Removed pushd/popd usage.
libraries/exiv2: Removed pushd/popd usage.
libraries/gtk-qt-engine: Removed pushd/popd usage. Also removed the
duplicate entry in kcontrol. Thanks to Iskar Enev for the bug report
and to dadexter for the updated script. --robw810
libraries/id3lib: Removed pushd/popd usage.
libraries/libevent: Updated for version 1.3a and removed pushd/popd
usage. Thanks to eroc for the updated script. --robw810
libraries/libgphoto2: Removed pushd/popd usage.
libraries/libnotify: Removed pushd/popd usage.
libraries/librsync: Removed pushd/popd usage.
libraries/openbabel: Removed pushd/popd usage.
libraries/pygobject: Removed pushd/popd usage.
multimedia/pmidi: Removed pushd/popd usage.
multimedia/streamripper: Removed pushd/popd usage.
network/claws-mail: Removed pushd/popd usage.
network/sylpheed: Removed pushd/popd usage.
system/htop: Removed pushd/popd usage.
system/kqemu: Updated for version 1.3.0pre11. Thanks to Ferenc Deak for
the heads-up on the new version. --alien
system/rdiff-backup: Removed pushd/popd usage.
+--------------------------+
Sat Feb 24 00:17:35 UTC 2007
academic/calcoo: Removed pushd/popd in favor of Bourne-compatible syntax.
Thanks to Lehman Black for the reminder to move this up on the TODO list.
Same for the others with this cleanup :) --robw810
academic/chemtool: Removed pushd/popd usage.
desktop/wmii: Minor fixes in the build script and xinitrc.wmii.
Thanks to eroc. --robw810
development/bluefish: Removed pushd/popd usage.
development/valgrind: Updated for version 3.2.3. Thanks to Jick Nan for
the updated script. --robw810
multimedia/abcde: Removed pushd/popd usage.
office/acroread: Removed pushd/popd usage.
system/apcupsd: Removed pushd/popd usage.
system/atol: Removed pushd/popd usage.
system/cdrkit: Removed pushd/popd usage.
system/hsflinmodem: Added - these are the last free hsflinmodem drivers for
many of the "winmodems" using Conexant chipsets. Nobody on the admin team
actually has this hardware, so we are unable to make any promises that this
will actually work. Also, note that they will probably not work anyway on
a 2.6.x kernel. Thanks to Kyle Guinn for the submission. --robw810
+--------------------------+
Tue Feb 20 21:49:29 UTC 2007
academic/stellarium: Added - Stellarium is a virtual planetarium, showing
a realistic sky in 3D, just like what you see with the naked eye.
Thanks to Michael Bueker (mtu). --BP{k}
desktop/fbpanel: Added - fbpanel is a lightweight GTK2-based panel for
*nix desktops. Submitted by Lehman Black. --robw810
desktop/oroborus: Added - Oroborus is a small yet fully featured GNOME
compliant window manager for the X Window System.
Submitted by Lehman Black. --robw810
development/motor: Added - Motor is a text mode based programming environment
for Linux. Submitted by dadexter. --robw810
games/frozen-bubble: Updated - Fixed small bug in script to remove
perllocal.pod from the package. --BP{k}
graphics/grap: Added - Grap is a language for typesetting graphs.
Submitted by Daniel de Kok. --robw810
libraries/SDL_perl: Updated - Fixed small bug in script to remove
perllocal.pod from the package. --BP{k}
network/Limewire: Updated for version 4.12.11. Thanks to robw810. --BP{k}
network/centericq: Updated to fix the MSN messaging protocol.
Thanks to Martin Lefebvre. --Alan Hicks
network/sim: Updated for version 0.9.4.2. Thanks to Alexander Brovikov for
the update. --robw810
office/devtodo: Added - Dev Todo is a configurable command-line TODO list
that can automatically list oustanding items when you change directories.
Thanks to Michiel van Wessem. --Alan Hicks
office/magicpoint: Added - Magic Point is an X11-based presentation tool.
Submitted by Daniel de Kok. --robw810
system/gparted: Added - gparted is graphical partition editor.
Thanks to elohim. --BP{k}
system/krusader: Fixed symlinking of documentation (again).
Thanks to Selkfoster for spotting this. --BP{k}
system/postgresql: Updated for version 8.2.3. Thanks to Adis Nezirovic for
the update. --Alan Hicks
system/spambayes: Added - SpamBayes is a spam filter that can be used via
procmail or as a POP3 of IMAP gateway. Thanks to Audrius Kažukauskas.
Sorry if your name isn't properly encoded. :^) --Alan Hicks
+--------------------------+
Sun Feb 18 21:51:33 UTC 2007
academic/tuxtype2: Moved from the Games category. This is indeed a game,
but due to its educational nature, it probably belongs in Academic.
Thanks to MagicMan (the script author) for the pointer. --robw810
desktop/desklaunch: Added - DeskLaunch is a small utility for creating
desktop icons to launch applications. Submitted by Lehman Black.
--robw810
libraries/libixp: Fixed manpage location. Thanks to Selk Foster for the
report. --robw810
multimedia/mplayerplug-in: Added - mplayerplug-in is a browser plugin that
uses MPlayer to play digital media from websites.
Submitted by MagicMan. --robw810
network/lighttpd: Added - lighttpd is a fast, secure, and flexible HTTP
server. Submitted by Daniel de Kok --Alan Hicks
network/pebrot: Added - pebrot is a client for the MSN Messenger protocol
written in Python. Submitted by dadexter. --robw810
network/surfraw: Added - Surfraw provides a fast unix command line interface
to a variety of popular WWW search engines.
Submitted by dadexter. --robw810
system/dosbox: Moved from misc/ category. Added README.video to docs. Added
a dosbox.desktop file and added dosbox.ico to /usr/share/pixmaps. Fixed
the chmod line in the build script. Thanks to Selk Foster for the reports.
--robw810
+--------------------------+
Sun Feb 11 00:26:15 UTC 2007
system/xosd: Fixed some variable definitions in the SlackBuild script.
Mea culpa on this one - I somehow managed to push the wrong directory
into the READY queue; my local copy was correct, so I *did* change
those :) Thanks to Stepan Roh for the report. --robw810
+--------------------------+
Sat Feb 10 17:13:08 UTC 2007
games/gemdropx: Fixed a problem with the icon location being hard-coded in
the Makefile. Thanks to Old_Fogie for the report. --robw810
+--------------------------+
Sat Feb 10 04:15:55 UTC 2007
games/crack-attack: Fixed a missing "$" character in the SlackBuild script.
This caused the icon to not be displayed in kde's menu entries, but otherwise,
it was harmless. Thanks to Old_Fogie for the report. --robw810
+--------------------------+
Sat Feb 10 02:11:54 UTC 2007
Always beware the calm before the storm... Another big set of changes is
here for your viewing pleasure. In addition to the new and updated scripts,
we have an announcement:
As Eric Hameleers announced on the users mailing list, we are now
providing GnuPG signatures for all of our SlackBuild tarballs.
Our GnuPG key can be obtained from a keyserver, or you can find it
on our site at http://slackbuilds.org/GPG-KEY.
Enjoy the new updates and happy Slacking!
desktop/QtCurve-KDE3: Updated for version 0.46.4. Thanks to BP{k}. --robw810
desktop/matchbox-desktop - Added - matchbox-desktop is the Matchbox
desktop manager. Thanks to Daniel de Kok. --BP{k}
desktop/matchbox-panel - Added - matchbox-panel adds a panel to the
Matchbox enviroment. Thanks to Daniel de Kok. --BP{k}
desktop/matchbox-window-manager - Added - matchboxwindow-manager is the
window manager for the Matchbox enviroment.
Thanks to Daniel de Kok. -- BP{k}
development/gc: Added - Boehm-Demers-Weiser garbage collector. It can be used
as a garbage collecting replacement for C malloc or C++ new.
Submitted by robw810. --alien
development/tavrasm - Added - tavrasm is an assembler for the Atmel series
of micro-controllers. --Alan Hicks
development/uisp: Added - UISP is a tool for AVR (and AT89S) microcontrollers
which can interface to many hardware in-system programmers.
Thanks to B. Ton for the submission. --robw810
games/brutalchess: Updated for version 0.5.2 - Brutal Chess is a cross-
platform GPL chess game with 3D graphics powered by OpenGL and SDL.
Thanks to elohim. --BP{k}
games/crack-attack: Added - Crack Attack! is a fast paced puzzle game
inspired bt the classic SNES game Tetris Attack. Thanks to MagicMan. --BP{k}
games/foobillard: Added - FooBillard is an OpenGL-billard game for linux
with realistic physics. Thanks to MagicMan. --BP{k}
games/gemdropx: Added - Gem Drop X is a fast-paced single player puzzle game.
Thanks to MagicMan. --robw810
games/lbreakout2: Added - LBreakout2 is a breakout-style arcade game in the
manner of Arkanoid. Thanks to MagicMan. --robw810
games/neverball: Added - Neverball is a 3D platform game. This package
comes with both Neverball and a miniature Golfgame, Neverputt.
Thanks to MagicMan. --BP{k}
games/tuxtype2: Added - Tuxtype2 is an educational typng tutor for
children. Thanks to MagicMan. --BP{k}
games/wesnoth: Updated for version 1.2.1.
Thanks to Michiel van Wessem. --elohim
games/zsnes: Added - ZSNES is a Super Nintendo emulator.
Thanks to eroc. --robw810
graphics/inkscape: Added - Inkscape is a vector graphics editor, with similar
capabilities as Illustrator, Freehand or CorelDraw, using the W3C standard
Scalable Vector Graphics file format. Thanks to robw810. --BP{k}
graphics/kipi-plugins: Updated for version 0.1.3. Thanks to MagicMan. --robw810
libraries/allegro: Added - The Allegro library provides C/C++ programmers
low level routines commonly needed in game programming.
Thanks to elohim. --robw810
libraries/cairomm: Changed the version string to 0.6.0 since this is the
most recent version of cairomm that will compile against the cairo-1.0.4
package included in Slackware 11. No other changes were made to the
build script, so it can still be used to compile newer versions of cairomm
against the cairo-1.2.4 package from 11.0's /testing repository.
libraries/exo: Added - libexo is the extension library to Xfce.
Thanks to Lehman Black. --robw810
libraries/gpgme: Added - GPGME (GnuPG Made Easy) is a C language library that
allows adding support for cryptography to a program.
Thanks to elohim. --robw810
libraries/libconfuse: Added - libConfuse is a configuration file parser library.
Thanks to elohim. --robw810,elohim
libraries/libgpg-error: Added - libgpg-error contains common error codes and
error handling functions used by GnuPG, Libgcrypt, GPGME.
Thanks to elohim. --robw810,elohim
libraries/libmatchbox: Added - libmatchbox is the Matchbox application
library, that supports functions fo the Matchbox window manager.
Thanks to Daniel de Kok. --BP{k}
libraries/libstroke: Added - LibStroke is a stroke translation library (for
mouse gestures). Thanks to Jick Nan. --robw810
libraries/notify-python: Added - notify-python is a python module to use
libnotify. Submitted by Erik Hanson (elohim). --robw810
libraries/pycairo: Added - Pycairo is set of Python bindings for the cairo
graphics library. Submitted by Eric Hameleers (alien). --robw810
libraries/pygobject: Added - pygobject contains bindings for the GObject to be
used by Python. Thanks to elohim. --robw810
libraries/pygtk: Added - PyGTK provides a convenient wrapper for the GTK+
library for use in Python programs. Submitted by Erik Hanson (elohim).
--robw810
libraries/sqlite: Updated for version 3.3.12. Thanks to MagicMan for the
update. --robw810
libraries/uri-escape: Added - URI::Escape is a perl module. It module provides
functions to escape and unescape URI strings as defined by RFC 2396 (and
updated by RFC 2732). Thanks to Lehman Black. --robw810
libraries/yaz: Updated for version 2.1.46. Thanks to Michiel van Wessem.
--robw810
misc/matchbox-common - Added - matchbox-common, contains common files
that are shared betwee Matchbox applications.
Thanks to Daniel de Kok. --BP{k}
multimedia/abcde: Added - abcde is a frontend command-line utility that grabs
tracks off a CD encodes them to Ogg/Vorbis, MP3, FLAC, OGG/Speex, and/or
MPP/MP+(Musepack) format, and tags them, all in one go.
Thanks to Jim Capozzoli. --robw810
multimedia/cd-discid: Added - cd-discid is a backend utility to get CDDB
information from a CD-ROM disc. Thanks to Jim Capozzoli. --robw810
multimedia/flash-player-plugin: Fixed a variable name error on line 22 of the
SlackBuild script (s/NAME/PRGNAM/). Thanks to Yalla-One. --robw810
multimedia/mt-daapd: Added - mt-daapd is an iTunes server for POSIX systems.
Thanks to Andrew Brouwers. --robw810
multimedia/streamtuner: Updated with an official patch.
Thanks to MagicMan. --robw810
multimedia/tvtime: Added - tvtime is a high quality television application
for use with video capture cards on Linux systems.
Thanks to Kyle Guinn. --robw810
multimedia/xvidcore: Added - Xvid is an ISO MPEG-4 compliant video codec.
Submitted by MagicMan. --robw810
network/apache2: Added - apache2 is a new version, incompatable with the apache
package included with Slackware. Thanks to Adis Nezirovic. --Alan Hicks
network/bitlbee: Added some sed-fu to clarify the documentation as it relates
to installing with a package from our SlackBuild script. Thanks to The-spiki
for the report and to Michiel van Wessem for the cleanup. --robw810
network/claws-mail: Updated for version 2.7.2.
Thanks to elohim. --robw810,elohim
network/ipw3945: Added - driver for Intel 3945 Wireless cards. Submitted by
Yalla-One, thanks mate! --alien
network/postfix: Updated for version 2.3.7.
Thanks to Alan Hicks. --robw810,Alan_Hicks
office/homebank: Added - Homebank is free and easy personal accounting
package. Thanks to elohim. --BP{k}
office/kdissert: Added - Kdissert is a mindmapping-like tool to help students
to produce complicated documents very quickly and efficiently.
Thanks to Michiel van Wessem. --robw810
office/ledger: Added - Ledger is a commandline accounting program. Thanks
to dadexter. --BP{k}
system/bashdb: Added - bashdb is a debugger for bash scripts, with a similar
command interface as gdb. Thanks to elohim --BP{k},robw810
system/emelfm2: Updated for version 0.3.2. Thanks to Chess Griffin. --robw810
system/Esetroot: Added - Esetroot is used to set wallpaper for window managers
which support translucency. Thanks to Jick Nan. --robw810
system/gpa: Added - The GNU Privacy Assistant (GPA) is a graphical user
interface for GnuPG (GNU Privacy Guard). Thanks to elohim. --robw810,elohim
system/iscan: Added - "Image Scan! for Linux" is a scanner utility that makes
it easy to obtain high quality images on Linux with your EPSON scanner or
all-in-one unit. Please note - due to the fact that I don't have access to
the relevant hardware, I cannot verify that this actually works; all I can
guarantee is that it builds a compliant package.
Thanks to MagicMan for the submission. --robw810.
system/krusader - Updated. Fixed bug in script that stopped documentation
to be seen under KDE. Thanks to Old_Fogie. --BP{k}
system/htop: Added - htop is an interactive process viewer for Linux.
Thanks to Michiel van Wessem. --robw810
system/numlockx: Added - NumLockX is a command-line tool that enables you to
start X with NumLock enabled. Thanks to MagicMan. --robw810
system/par2cmdline: Added - par2cmdline is a GPL-licensed commandline tool for
creating and using PAR2 parity sets to detect damage in files and repair them
if necessary. Thanks to maldoror. --robw810
system/postgresql: Updated for version 8.2.1. Thanks to Adis Nezirovic.
--robw810
system/qemulator: Added - a Python/GTK frontend to QEMU.
Submitted by Erik Hanson (elohim). --alien
system/tilda: Added - Tilda is a Linux terminal taking after the likeness of
many classic terminals from first person shooter games, Quake, Doom, and
Half-Life (to name a few), where the terminal has no border and is hidden
from the desktop until a key is pressed. Thanks to elohim. --robw810
system/ttf-sil-gentium: Added - Gentium is a typeface family designed to enable
the diverse ethnic groups around the world who use the Latin script to produce
readable, high-quality publications. Thanks to Kyle Guinn for the submission
and to Peter Martin at sil.org for his assistance in working on the download
issue with wget. --robw810
system/xarchiver: Added - xarchiver is a window manager independent archive
manager (depends only on GTK+2). Thanks to MagicMan. --robw810
system/xbindkeys: Updated for version 1.8.0. Thanks to elohim. --robw810
system/xosd: Added - XOSD is an 'on screen display' tool for text.
Thanks to Jick Nan. --robw810
+--------------------------+
Sat Jan 20 01:26:51 UTC 2007
Just when you thought we had gone silent, we go and release fifty (yes,
that's right, 50) updates. Enjoy, Slackers! :)
academic/calcoo: Miscellaneous script cleanup. --robw810
academic/chemtool: Miscellaneous script cleanup. --robw810
academic/xdrawchem: Miscellaneous script cleanup. --robw810
desktop/alltray: Added - AllTray allows you to dock any application
with no native tray icon (like Evolution, Thunderbird, Terminals)
into the system tray. Thanks to eroc. --robw810
desktop/dmenu: Added - dmenu is a generic and efficient menu for X.
Thanks to eroc. --robw810
desktop/wmii: Updated for version 3.5.1. Thanks to eroc. --robw810
development/bluefish: Miscellaneous script cleanup. --robw810
development/mono: Updated for version 1.2.2.1.
Thanks to dadexter. --robw810
development/scons: Added - SCons is an Open Source software construction
tool - that is, a next-generation build tool.
Thanks to Kyle Guinn. --robw810
games/brutalchess: Added - Brutal Chess is a cross-platform GPL chess game
with 3D graphics powered by OpenGL and SDL. Thanks to elohim. --robw810
games/nethack: Added - nethack is a rogue-like dungeon game with tty, X11,
and QT FLAVORs. Thanks to hollywoodb. --Alan_Hicks
graphics/digikam: Added - digiKam is a simple digital photo management
application for KDE. Thanks to MagicMan. --robw810
graphics/digikamimageplugins: Added - DigikamImagePlugins are a collection
of plugins for digiKam Image Editor and ShowFoto.
Thanks to MagicMan. --robw810
graphics/gqview: Miscellaneous script cleanup. --robw810
graphics/gphoto2: Updated for version 2.3.1. Thanks to MagicMan. --robw810
graphics/kipi-plugins: Added - Kipi Plugins are additional functions for the
KDE Images Managment Host Programs (digiKam, KimDaBa, ShowImg, and Gwenview).
Thanks to MagicMan. --robw810
libraries/cairomm: Added - cairomm is a C++ wrapper for the cairo
graphics library. Thanks to Paul Wisehart. --robw810
libraries/exiv2: Added - Exiv2 is a C++ library and a command line utility
to read and write Exif and IPTC image metadata.
Thanks to MagicMan. --robw810
libraries/gamin: Miscellaneous script cleanup. --robw810
libraries/glibmm: Added - glibmm is a set of C++ bindings for glib.
Thanks to Paul Wisehart. --robw810
libraries/gtkmm: Added - gtkmm is the official C++ interface for the popular
GUI library GTK+. Thanks to Paul Wisehart. --robw810
libraries/libetpan: Added - libetpan is a general purpose mail library.
Thanks to elohim. --robw810
libraries/libgdiplus: Updated for version 1.2.2.
Thanks to dadexter. --robw810
libraries/libgphoto2: Updated for version 2.3.1. Thanks to MagicMan for the
original script, and *big* thanks to Eric Hameleers and PiterPUNK for their
assistance getting the hotplug and udev integration just right (hopefully).
If you find any bugs with this, please advise on the users mailing list,
but take note of the README file included in the script tarball. --robw810
libraries/libixp: Added - libixp is a standalone client/server 9P library.
Thanks to eroc. --robw810
libraries/libkipi: Added - Kipi is an effort to develop a common plugin
structure for digiKam, KimDaBa, ShowImg, and Gwenview.
Thanks to MagicMan. --robw810
libraries/librsync: Added - librsync is a rsync synchronization algorithm
library. Submitted by Lyle Sigurdson. --alien
libraries/libsigc++: Added - libsigc++ implements a typesafe callback
system for standard C++. Thanks to Paul Wisehart. --robw810
libraries/openbabel: Miscellaneous script cleanup. --robw810
libraries/sqlite: Updated for version 3.3.8. Thanks to MagicMan. --Alan_Hicks
multimedia/amsynth: Added - amsynth is an Analogue Modeling SYNTHesizer.
Thanks to Paul Wisehart. --robw810
multimedia/flash-player-plugin: Updated for version 9.0.31.0. --robw810/BP{k}
multimedia/MPlayer: Miscellaneous script cleanup. --robw810
multimedia/mp3blaster: Miscellaneous script cleanup. --robw810
multimedia/pmidi: Added - pmidi is a command line midi player for ALSA.
Thanks to Paul Wisehart. --robw810
multimedia/streamripper: Added - Streamripper records SHOUTcast and Icecast
compatible streams. Thanks to MagicMan. --robw810
multimedia/streamtuner: Added - streamtuner is a stream directory browser.
Thanks to MagicMan. --robw810
network/claws-mail: Added - Claws Mail is an email client and news reader
based on GTK+. Thanks to elohim. --robw810
network/sylpheed: Added - Sylpheed is an e-mail client based on the GTK+ GUI
toolkit. Thanks to dadexter. --robw810/Alan_Hicks
office/acroread: Miscellaneous script cleanup. --robw810
office/oooqs2: Added - oooqs2 (OpenOffice.org Quickstarter 2) is a small
systray applet for KDE to preload OpenOffice.org into memory to make it
start faster. Thanks to eroc. --robw810
office/scribus: Miscellaneous script cleanup. --robw810
system/apcupsd: Miscellaneous script cleanup; fixed a bug in the install.diff
patch. --robw810
system/cdrkit: Updated for version 1.1.2. Thanks to Motoko-chan. --Alan_Hicks
system/conky: Added - conky is a light-weight system monitor under active
development. Thanks to eroc. --Alan_Hicks
system/fuse: Added - FUSE is a File-System in User-Space application and kernel
module. Thanks to eroc. --Alan_Hicks
system/ntfs-3g: Added - ntfs-3g is an implementation of the Windows NTFS file
system for FUSE. Thanks to eroc. --Alan_Hicks
system/rdiff-backup: Added - rdiff-backup backs up one directory to another,
possibly over a network. Thanks to Paul Wisehart. --robw810
system/ulogd: Miscellaneous script cleanup. --robw810
system/xbindkeys: Updated for version 1.7.4. Thanks to elohim. --robw810
+--------------------------+
Fri Jan 5 19:00:17 UTC 2007
system/atol: Fixed a typo in the SlackBuild script; doinst.sh was mistyped
as doisnt.sh - how appropriate, huh? ;-) Thanks to Bill Kirkpatrick for
the report. --robw810
+--------------------------+
Thu Jan 4 20:36:13 UTC 2007
Happy New Year, Slackers! Here's another big set of changes. We've got a
few more on the short-term TODO list, but they seem to need a bit more
involvement. In particular, libgphoto2 and gphoto2 updates should be in
the next batch, but we're working on getting the udev and old hotplug
integration done correctly, and it's requiring a bit of testing to make
sure - be patient :) Anyway, here's the current batch:
desktop/pcmanfm: Added - PCManFM is an extremely fast and lightweight GTK+
based file manager which features tabbed browsing and a user-friendly
interface. Thanks to Chess Griffin. --robw810
desktop/QtCurve-KDE3: Updated for version 0.46.2. Thanks to BP{k}. --robw810
development/lua: Miscellaneous script cleanup. --robw810
development/valgrind: Added - Valgrind is an award-winning suite of tools for
debugging and profiling Linux programs. Thanks to Kyle Guinn. --robw810
games/crossfire-client: Added - Crossfire is an open source, cooperative
multiplayer graphical RPG and adventure game. Thanks to hollywoodb. --robw810
games/frozen-bubble: Updated for version 2.1.0. --elohim
games/moria: Added - Moria is a single player roguelike game with a
regenerating dungeon. Thanks to hollywoodb. --robw810
games/tuxpuck: Added - Tuxpuck is a clone of the Amiga/AtariST game
"Shufflepuck Cafe." Thanks to elohim. --robw810
games/wesnoth: Updated for version 1.2. Thanks to Michiel van Wessem. --elohim
games/xmoto: Added - X-Moto is a challenging 2D motocross platform game.
Thanks to hollywoodb. --robw810
graphics/dia: Added - Dia is a GTK+ based diagram creation program.
Thanks to Kyle Guinn. --robw810,rob0
graphics/gerbv: Added - Gerber Viewer (gerbv) is a viewer for Gerber files.
Gerber files are generated from PCB CAD systems and sent to PCB manufacturers
as a basis for the manufacturing process. Thanks to Kyle Guinn. --robw810
graphics/pcb: Added - PCB is an interactive printed circuit board editor for
the X11 window system. Thanks to Kyle Guinn. --robw810
graphics/potrace: Added - Potrace is a utility for tracing a bitmap, which
means, transforming a bitmap into a smooth, scalable image.
Thanks to Kyle Guinn. --robw810
graphics/wpclipart: Updated for version 2.4. Thanks to Robby Workman. --elohim
libraries/libevent: Added - the libevent API provides a mechanism to execute
a callback function when a specific event occurs on a file descriptor or
after a timeout has been reached. Thanks to elohim. --robw810
libraries/libghttp: Added - libghttp is the GNOME HTTP client library.
Thanks to eroc. --robw810
libraries/ode: Added - The Open Dynamics Engine (ODE) is a free, industrial
quality library for simulating articulated rigid body dynamics. Proven
applications include simulating ground vehicles, legged creatures, and
moving objects in VR environments. Thanks to hollywoodb. --robw810
multimedia/orpheus: Added - Orpheus is a light-weight text mode menu and window
driven audio player. Thanks to eroc. --robw810
multimedia/schismtracker: Added - Schism Tracker is a music editor that aims
to match the look and feel of Impulse Tracker as much as possible.
Thanks to elohim. --robw810
network/amsn: Added - aMSN is a free open source MSN Messenger clone.
Thanks to aghaster. --alien
network/sim: Added - SIM Instant Messenger is a simple ICQ client.
Thanks to Alexander Brovikov. --robw810
network/skype: Added - Skype is a free Voice Over IP program for Linux that
allows users to communicate with other Skype users as well as receiving
and placing calls from and to normal land lines as well as mobile phones.
Thanks to dadexter. --BP{k}
network/tor: Added - Tor is a toolset for a wide range of organizations and
people that want to improve their safety and security on the Internet.
Thanks to elohim. --robw810
system/atol: Added - Atol is a dual panel file manager written using the GTK+
toolkit and C++ programming language. For whatever reason, the menu entry
is created in the Office category, and we don't necessarily understand it,
but we're not going to change the wishes of the upstream maintainer.
Thanks to elohim. --robw810
system/kqemu: Added - The QEMU Accelerator Module increases the speed of QEMU
when a PC is emulated on a PC. Thanks to hollywoodb. --alien
system/mftrace: Added - mftrace is a small Python program that lets you trace
a TeX bitmap font into a PFA or PFB font (A PostScript Type1 Scalable Font)
or TTF (TrueType) font. Thanks to Kyle Guinn. --robw810
system/t1utils: Added - t1utils is a collection of simple type-1 font
manipulation programs. Thanks to Kyle Guinn. --robw810
system/wine: Updated for version 0.9.28. Noted the 2.6.x kernel requirement in
both the README and slack-desc files.
Moved to System category. --robw810,elohim
+--------------------------+
Fri Dec 22 21:45:26 UTC 2006
development/nano: Updated for version 2.0.2; thanks to elohim. --robw810
desktop/ratpoison: Updated for version 1.4.1; thanks to dadexter. --robw810
libraries/imlib2: Fixed missing DESTDIR in the "make install-strip" line.
I have no idea how this happened - it's probably my fault, as I made a last
minute change to "make install-strip" from "make install" - sorry.
Thanks to Bill Kirkpatrick for the report. --robw810
network/kssh: Added - KSSH is a ssh/openssh frontend for KDE.
Thanks to Ricardson Williams --BP{k}
network/wireshark: Added - Wireshark is a free software protocol analyzer, or
"packet sniffer" application, used for network troubleshooting, analysis,
software and protocol development. Thanks to Jick Nan. --BP{k}
system/postgresql: Added - PostgreSQL is an advanced object-relational database
management system (ORDBMS) based on POSTGRES. Thanks to Adis Nezirovic.
--Alan_Hicks,robw810
+--------------------------+
Wed Dec 20 04:25:38 UTC 2006
Okay, folks, here's a big batch for the holidays - here's wishing everyone
safe and happy times from the entire team at SlackBuilds.org. Thanks to
everyone who's helped make this project a success thus far, and thanks to
Patrick Volkerding and the Slackware Linux project for providing us with
the base on which to build! :-)
desktop/QtCurve-KDE3: Added - QtCurve is a set of widget styles for KDE3 based
apps. Thanks to BP{k}. --robw810
development/swig: Added - SWIG is a software development tool that connects
programs written in C and C++ with a variety of high-level programming
languages. Thanks to hollywoodb. --robw810
games/blobAndConquer: Added - blobAndConquer (Blob Wars Episode 2) is a mission
and objective based 3D action game.
Contributed by hollywoodb. --robw810,alien
games/ivan: Added - Iter Vehemens ad Necem (IVAN) is a graphical roguelike
game. Thanks to hollywoodb. --elohim
graphics/feh: Added - feh is an image viewer. Thanks to Chess Griffin.
--robw810
graphics/gphoto2: Added - gPhoto2 is a free, redistributable, ready to use set
of digital camera software applications. Thanks to MagicMan. --robw810
graphics/picasa: Added - Picasa is software that helps you instantly find,
edit and share all the pictures on your PC. Thanks to robw810. --BP{k}
libraries/dbus: Added - dbus is a messagebus system for interprocess
communication D-Bus provides both a system daemon and a per user login
session daemon. Thanks to Martin Lefebvre (dadexter). --BP{k}
libraries/dbus-glib: Added - dbus-glib contains glib bindings for the dbus IPC
library. Thanks to robw810. --BP{k}
libraries/gamin: Added - gamin is a file and directory monitoring system and a
a minimalist FAM (File Alteration Monitor) system. Thanks to rowb810. --BP{k}
libraries/giblib: Added - giblib is a utility library which incorporates doubly
linked lists, string functions, and a wrapper for imlib2.
Thanks to Chess Griffin. --robw810
libraries/imlib2: Added - imlib2 is a fast image manipulation library.
Thanks to Chess Griffin. --alien,robw810
libraries/libgphoto2: Added - libgphoto2 is a library that can be used by
applications to access various digital cameras. Thanks to MagicMan.
--robw810
libraries/libnotify: Added - libnotify is a general library for event
notification. It is part of the Galago project, a desktop presence
framework. Thanks to elohim. --robw810
libraries/sqlite: Fixed permissions on some files in the documentation and
made a few other minor OCD changes to the script. Thanks to Lyle Sigurdson
for the report. --robw810
libraries/yaz: Added - YAZ is a programmers toolkit supporting the development
of Z39.50/SRW/SRU clients and servers. Thanks to BP{k}. --robw810
network/opera: Updated for version 9.10. --robw810
network/snort: Added - Snort is an open source network intrusion detection and
prevention system. Thanks to Alan_Hicks. --alien
office/tellico: Added - Tellico is an KDE application for keeping track of your
collections (such as books, bibliographies, videos, music, coins, stamps,
trading cards, comic books, and wines). Thanks to BP{k}. --robw810
system/qemu: Added - QEMU is a generic and open source processor emulator which
achieves a good emulation speed by using dynamic translation.
Thanks to hollywoodb. --alien
+--------------------------+
Mon Dec 18 05:15:14 UTC 2006
graphics/fontforge: Added - fontforge is an outline font editor, it can also
convert between fonts.
Thanks to robw810. --alien
system/worker: Fixed several instances of an incorrectly defined variable as
well as a bad line for copying the SlackBuild script into the documentation
directory. Thanks to B. Kirkpatrick for the report.
+--------------------------+
Sun Dec 17 21:05:18 UTC 2006
desktop/crystal: Added - crystal is a kwin window decoration theme which
offers you (pseudo) transparent titlebar, buttons, and borders.
Thanks to Michiel van Wessem. --robw810
desktop/kdmtheme: Added - kdmtheme is a theme manager for KDE.
Thanks to Michiel van Wessem. --robw810
development/pysetuptools: Added - pysetuptools (actually called the more generic
"setuptools") is a collection of enhancements to Python distutils that makes
easier to build and distribute Python packages. Thanks to hollywoodb.
development/PyOpenGL: Added - PyOpenGL is the cross platform Python binding to
OpenGL and related APIs. Thanks to hollywoodb. --robw810
games/armagetronad: Added - armagetronad is a tron "light cycles" clone that
offers multipayer and an advanced AI. Thanks to hollywoodb. --BP{k}
libraries/clearsilver: Added - Clearsilver is a fast, powerful, and language
neutral template system meant primarly for html; thanks to Lyle Sigurdson.
libraries/libnet: Added - Libnet is a high-level API (toolkit) allowing the
application programmer to construct and inject network packets.
Thanks to Alan Hicks. --BP{k}
multimedia/flash-player-plugin: Added - flash-player-plugin is the beta of
Adobe's Flash 9 plugin for linux. Thanks to hollywoodb. --BP{k}
network/madwifi-driver: Added - This is the kernel module for Atheros-based
wireless cards. Madwifi tools are split into a separate package.
Thanks to hollywoodb. --alien
network/madwifi-tools: Added - These are control and debug tools for the madwifi
driver supporting Atheros-based wireless cards. Madwifi driver (kernel module)
is split into a separate package. Thanks to hollywoodb. --alien
system/filelight: Added - Filelight is an alternative file manager for KDE.
Thanks to Michiel van Wessem. --robw810
+--------------------------+
Wed Dec 13 22:53:53 UTC 2006
desktop/openbox: Added - openbox is a standards compliant, fast, light-weight,
and extensible window manager. Thanks to Chess Griffin.
desktop/obconf: Added - obconf is a GTK+ tool to assist with the configuration
of the Openbox window manager. Thanks to Chess Griffin.
graphics/kchmviewer: Added - KchmViewer is a chm (MS HTML help file) viewer
written in C++; thanks to Michiel van Wessem of the SlackBuilds admin team.
libraries/vte: Added - vte is an experimental terminal emulator widget for use
with GTK+ 2.0.
misc/wine: Updated for version 0.9.27. The option to add the WoW patch has
been removed, as it is no longer necessary according to the Wow AppDB folks.
If you still need it for whatever reason, let us know.
network/netstat-nat: Added - netstat-nat is a small program which displays NAT
connections managed by netfilter/iptables. Thanks to Ricardson Williams.
office/openoffice.org: Updated for version 2.1.0.
system/915resolution: Added - 915resolution is a tool to modify the video BIOS
of the 800 and 900 series Intel graphics chipsets; thanks to hollywoodb.
+--------------------------+
Mon Dec 11 19:15:40 UTC 2006
games/monsterz: Added - Monsterz is a little arcade puzzle game, similar
to the famous Bejeweled or Zookeeper. Thanks to hollywoodb.
games/wesnoth: Updated for version 1.1.13; thanks to Michiel van Wessem.
libraries/lzo: Added - LZP is a simple compression library often used
for network applications such as openvpn; thanks to Ricardson Williams
libraries/pygame: Added - pygame is a set of Python modules designed for
writing games; thanks to hollywoodb.
multimedia/ncmpc: Added - ncmpc is a curses client for the Music Player
Daemon (MPD); thanks to thrice`.
+--------------------------+
Sun Dec 10 07:28:28 UTC 2006
academic/gtypist: Added - gtypist is a "typing tutor" application;
thanks to dadexter.
libraries/gtk-qt-engine: Minor script cleanup; thanks to dadexter.
multimedia/mpd: Updated for version 0.12.1; thanks to thrice`.
office/kile: Added - Kile is a user friendly TeX/LaTeX editor for KDE;
thanks to hollywoodb.
system/emelfm2: Updated for version 0.3.1; thanks to Chess Griffin.
system/synaptics: Added - this is a dedicated driver for the Synaptics
TouchPad used in many laptops; thanks to hollywoodb.
system/stardict: Added - StarDict is a cross-platform and international
dictionary written in Gtk2; thanks to Jick Nan. --robw810
+--------------------------+
Fri Dec 8 20:22:08 UTC 2006
desktop/wmii: Added - wmii (window manager improved 2) is a dynamic and light
window manager. Thanks to Skorobogatko Alexey.
development/geany: Added - geany is a small and lightweight Integrated
Development Environment (IDE). Thanks to hollywoodb.
multimedia/audacity: Include a doinst.sh postinstall script to update the
desktop database.
multimedia/MPlayer: fixed up a few minor issues in the script; added a doinst.sh
postinstall script to update the desktop database.
network/weechat: Added - WeeChat is a light & fast multilingual curses-based
multiplatform IRC client. Thanks to hollywoodb. --robw810
+--------------------------+
Thu Dec 7 22:42:02 UTC 2006
Still behind, but here are a few more... :-) --robw810
academic/galculator: Added - galculator is a GTK 2 based scientific calculator.
Thanks to MagicMan.
desktop/icewm: Updated for version 1.2.29.
graphics/gqview: Updated for version 2.1.5.
network/putty: Added - PuTTY is a free implementation of Telnet and SSH for
Win32 and Unix platforms. Thanks to Motoko-chan.
misc/wine: Updated for version 0.9.26.
office/xpad: Added - Xpad is a sticky note application written in GTK 2.
Thanks to MagicMan.
system/graveman: Added - graveman is a GTK2 front end to cdrecord, mkisofs,
readcd, sox, flac, dvd+rw-tools, and cdrdao. Thanks to Chess Griffin.
system/xautolock: Added - xautolock can be used to start a screen locker if your
session is left idle for some amount of time. Thanks to Jick Nan.
+--------------------------+
Mon Dec 4 23:45:52 UTC 2006
Sorry for the long delay on testing and approving submissions - we've got quite
a few in the queue to be reviewed. Please be patient - we'll get to them as
soon as possible. In the meantime...
misc/beep: Added - beep does exactly what you would expect: it beeps. However,
it can be quite useful for init scripts (troubleshooting, anyone?) and other
purposes. Thanks to gnubien.
network/openvpn: Added - OpenVPN is a full-featured SSL VPN solution. Thanks
to Alan Hicks of the SlackBuilds.org project.
--robw810
+--------------------------+
Thu Nov 23 06:26:51 UTC 2006
network/dovecot: Added - dovecot is an imap and pop3 server.
Thanks to Alan Hicks of the SlackBuilds.org admin team.
network/postfix: Added - postfix is a fast and secure mail transfer
agent intended as replacement for sendmail. Thanks to Alan Hicks
of the SlackBuilds.org admin team.
Happy Thanksgiving to all the .us folks! :) --robw810
+--------------------------+
Sun Nov 19 11:51:22 UTC 2006
multimedia/audacity: Added - a sound editor. Audacity is free,
open source software for recording and editing sounds.
Thanks to Chess Griffin. --alien
+--------------------------+
Sat Nov 18 13:04:19 UTC 2006
libraries/wxGTK: Added - a cross-platform GUI toolkit. This version
specifically configured for use with Audacity.
Thanks to Chess Griffin. --alien
+--------------------------+
Mon Nov 13 12:41:07 UTC 2006
misc/wine: Updated for version 0.9.25. The World of Warcraft patch for
nvidia cards is no longer needed in most cases (according to the folks
who maintain it - see the script for details), but we're leaving the
capability to patch it for at least one more release cycle in case some
people still need it. --robw810
+--------------------------+
Mon Nov 13 07:27:35 UTC 2006
development/mono: Added - Mono is a open-source implementation of the
.NET Framework. Thanks to dadexter.
games/scummvm: Added - ScummVM is a collection of interpreters capable of
emulating several adventure game engines. This one probably should have
gone in /misc with wine, but that's going to require more thought.
Thanks to Yalla-One.
games/wesnoth: Updated for version 1.1.12. Thanks to Michiel van Wessem.
libraries/id3lib: Added - id3lib is a software library for manipulating ID3v1
and ID3v2 tags. Thanks to Yalla-One.
libraries/libgdiplus: Added - libgdiplus is an open source implementation of
the GDI+ API and is part of the Mono project. Thanks to dadexter.
multimedia/easytag: Added - easytag is exactly what it sounds like: a tag
editor for mp3, ogg, and various other files. Thanks to Yalla-One.
office/openoffice.org: Added a doinst.sh script to update the desktop and
mime databases after installation; fixed a (stupid) bug that caused an
error if an older version's extracted sources were still present in $TMP.
Thanks to colmcille for the report.
The template.SlackBuild script (http://slackbuilds.org/template.SlackBuild)
has been modified slightly to reflect some lessons learned - please
adjust your local templates accordingly. --robw810/elohim
+--------------------------+
Sat Nov 11 03:10:46 UTC 2006
development/bluefish: Updated for version 1.0.7; the installation script
now updates the desktop and mime databases.
development/nano: Updated to version 2.0.0. Thanks to elohim.
games/ksudoku: Added - ksudoku is a full-featured Sudoku puzzle generator
and solver for KDE. Thanks to Yalla-One.
libraries/lame: Added - lame is an mp3 encoding library. Thanks to dadexter.
libraries/libsndfile: Added - libsndfile is a C library for reading and writing
files containing sampled sound. Thanks to Paul Wisehart.
office/abook: Added - abook is an ncurses-based address book for *nix
operating systems. Thanks to dadexter.
office/kmymoney2: Added - kmymoney2 is a personal finance manager and
accounting application. Thanks to Michiel van Wessem.
office/pdftk: Added - pdftk is the PDF ToolKit. Thanks to Yalla-One.
office/scribus: Added - scribus is a page layout/creator application. Thanks
to dadexter.
system/emelfm2: Added - emelfm2 is a twin-pane file manager with a look
similar to that pioneered by Norton Commander in the 1980's. Thanks
to Chess Griffin.
+--------------------------+
Tue Nov 7 02:38:18 UTC 2006
graphics/gqview: Updated for version 2.1.4.
libraries/locale-gettext: Added the locale::gettext perl module. This is
required for frozen-bubble. Sorry for the initial oversight on this.
network/bitlbee: Added - bitlbee is an irc/instant messenger gateway.
system/cabextract: Added - cabextract is used to extract items from
Microsoft's CABinet files. Thanks to Yalla-One.
system/unrar: Added - unrar allows decompression of WinRar archives.
Thanks to Yalla-One.
+--------------------------+
Wed Nov 1 16:58:44 UTC 2006
libraries/SDL_image: Removed.
libraries/SDL_mixer: Removed.
libraries/SDL_net: Removed.
These are bundled with the Slackware SDL package. If you built and
installed these from SBo and wish to remove them, you will need to
re-install the official SDL package to get these libraries back.
This was my fault for not checking closely enough, sorry. --elohim
+--------------------------+
Mon Oct 30 04:20:23 UTC 2006
system/gkrellm-volume: Added - a sound mixer plugin for gkrellm. Thanks to
Paul Wisehart. I made a relatively heavy patch to the Makefiles included
with this plugin to support installing with DESTDIR, and my changes seem
fine as far as I can tell here, but let me know if there's anything I
missed - we can always manually copy the needed files to their locations.
system/cdrkit: Fixed an overlooked -mcpu flag.
system/yakuake: Fixed an overlooked -mcpu flag. Thanks to dadexter for both
of these - it's nice to have someone with too much time on their hands. :-)
+--------------------------+
Mon Oct 30 01:13:54 UTC 2006
Well, it looks like we've had a Hack-A-Thon this weekend, and here are the
results; enjoy! --robw810
academic/maxima: Added - maxima is a system for the manipulation of symbolic
and numerical expressions. Thanks to Joćo Medeiros.
desktop/moodin: Added - moodin is a kde splash screen engine. Thanks to
dadexter.
games/frozen-bubble: Added - frozen-bubble is must-have game! :) Thanks to
elohim.
games/tmw: Added - The Mana World (TMW) is a serious effort to create an
innovative free and open source MMORPG. Thanks to elohim.
libraries/SDL_Pango: Added - SDL_Pango connects the Pango text rendering engine
to SDL.
libraries/SDL_image: Added - an image file loading library for SDL.
libraries/SDL_mixer: Added - a sample multi-channel audio mixer library.
libraries/SDL_net: Added - SDL_net is a small sample cross-platform networking
library for SDL.
libraries/SDL_perl: Added - Simple DirectMedia Library Bindings for Perl.
Thanks to elohim for all of the SDL stuff.
libraries/gtk-qt-engine: Added - gtk-qt-engine is a GTK theme engine to make
GTK2 apps fit better in qt/kde style desktops. Thanks to dadexter.
libraries/guichan: Added - guichan is a small, efficient C++ GUI library
designed for games. Thanks to elohim.
libraries/physfs: Added - PhysicsFS is a library to provide abstract access to
various archives. Thanks to elohim.
misc/dosbox: Added - dosbox is a DOS emulator/virtual machine for X11 and Unix.
Thanks to dadexter.
multimedia/kanola: Added - kanola is a lightweight mpd client. Thanks to
dadexter.
network/dillo: Added - dillo is a lightweight web browser. Thanks to dadexter.
network/konversation: Added - konversation is an irc client for kde. Thanks
to Michiel van Wessem.
network/mod_hosts_access: Added - this is a DSO (dynamically shared object)
module for the Apache webserver that uses libwrap (TCP Wrappers) to check
if the connecting hosts is allowed. Thanks to Menno Duursma.
network/rt2500: Added - driver for the Ralink 2500 series chipsets in wifi
adapters. Thanks to dadexter.
office/openoffice.org: Fixed an apparent error in the script caused by sed
attempting to operate on a symlink. A harmless error message was displayed,
but it did create the appearance of a problem, so it's fixed now. Thanks
to Yalla-One for the report.
system/mrxvt: Added - mrxvt is a lightweight terminal emulator. Thanks to
Paul Wisehart.
+--------------------------+
Thu Oct 26 17:47:59 UTC 2006
multimedia/mplayer-codecs-all: Updated for version 20061022.
multimedia/MPlayer: Updated for version 1.0rc1.
+--------------------------+
Sat Oct 21 18:46:15 UTC 2006
network/opera: Added - opera is a closed-source, but feature-rich and
standards-compliant web browser. This script simply repackages the one
distributed by opera to make it adhere more closely to Slackware's packaging
standards. Thanks to dadexter. --robw810/elohim
+--------------------------+
Sat Oct 21 02:16:33 UTC 2006
system/apcupsd: Added the --enable-powerflute flag to configure. Thanks to
elohim for pointing this out; I've gone all this time without noticing it.
While I was editing it already, I took the liberty of doing a few other
miscellaneous script cleanups. --robw810
+--------------------------+
Thu Oct 19 21:02:41 UTC 2006
academic/xdrawchem: Minor cleanup to the build script; fixed the icon path
in the xdrawchem.desktop file.
games/wesnoth: Added - wesnoth is a turn-based strategy game. Thanks to
Michiel P.H. van Wessem.
office/acroread: Miscellaneous (minor) cleanup to the script.
libraries/libdvbpsi: Cleaned up the script quite a bit.
libraries/libdvdcss: Same as above.
libraries/libdvdplay: Same as above.
libraries/libdvdread: Same as above.
libraries/openbabel: Minor cleanup to the build script.
+--------------------------+
Sun Oct 15 17:22:26 UTC 2006
graphics/gqview: Updated to version 2.1.2.
misc/wine: Updated to version 0.9.23.
multimedia/mp3blaster: Updated to version 3.2.3. Thanks to dadexter.
network/muttng: Updated the script to automatically detect the VERSION
string from the latest snapshot. Thanks to dadexter.
+--------------------------+
Sat Oct 14 16:40:12 UTC 2006
office/openoffice.org: Added a patch to fix the Exec paths given in the
.desktop files to work around the Xfce bug mentioned below. This should
not change anything with respect to other window managers. --robw810
+--------------------------+
Sat Oct 14 01:20:20 UTC 2006
This is an 'information-only' update related to OpenOffice.org. After
further investigation, it seems as if the problem mentioned below is
only present in Xfce 4.4 development versions - it works fine in kde
and gnome, as well as xfce 4.2.x. Of course, it could turn out to be
completely unrelated, but for now, see this for more information:
http://bugzilla.xfce.org/show_bug.cgi?id=2430 --robw810
+--------------------------+
Fri Oct 13 05:39:06 UTC 2006
office/openoffice.org: Updated to version 2.0.4. There is one bug in
the resulting package - the menu entries created do not start the
individual office component that they're supposed to call; instead,
they start the plain office 'shell' - manually running the Exec lines
in the .desktop files from an xterm results in correct behavior, so
I'm uncertain as to what the problem may be. Under normal conditions,
this wouldn't have been upgraded due to the bug, but it's just now come
to my attention (thanks to MagicMan), and it was present in the builds
from the older script as well, so we may as well get this out there so
that more eyes can have a look at it. If you happen to find a solution
before we do, please post a message to slackbuilds-users[at]slackbuilds.org.
--robw810
+--------------------------+
Thu Oct 12 15:05:51 UTC 2006
desktop/slim: Updated to version 1.2.6. Thanks to dadexter.
office/lyx: Updated to version 1.4.3. Thanks to dadexter.
system/yakuake: Added - a Quake-style terminal emulator based on KDE's
Konsole. Thanks to Steffen Schwebel.
--robw810
+--------------------------+
Thu Oct 12 03:52:33 UTC 2006
academic/calcoo: Miscellaneous script cleanup.
development/bluefish: Updated to version 1.0.6 and cleaned up the script
a bit.
libraries/fox-toolkit: Updated to version 1.4.34 and cleaned up the script
a bit.
misc/wine: Updated to version 0.9.22.
system/krusader: Updated to version 1.70.1 and cleaned up the script a bit.
system/xfe: Miscellaneous script cleanup.
--robw810
+--------------------------+
Wed Oct 11 19:28:22 UTC 2006
network/openntpd: Added - OpenNTPD is the network time protocol server/client
developed and maintained by the OpenBSD project. It is intended as a
replacement for the stock Slackware ntp package. Be sure to read the README
file for important information about adding the _ntp user and group; we're
looking at some better code to handle this, but it's not ready yet.
--PiterPunk/robw810
+--------------------------+
Wed Oct 11 18:23:56 UTC 2006
development/check: Added - check is a unit test framework for C. Thanks
to Jules Villard.
--PiterPunk
+--------------------------+
Wed Oct 11 15:24:23 UTC 2006
desktop/icewm: Updated to version 1.2.28 and cleaned up the script a bit.
Thanks to The-spiki for the heads-up on the new release.
--robw810
+--------------------------+
Wed Oct 11 13:55:36 UTC 2006
academic/chemtool: Fixed a typo in the chemtool.desktop file and cleaned up
the script a bit.
desktop/slim: Updated for version 1.2.5. Thanks to dadexter.
development/cmake: Added - an extensible, open-source system that manages
the build process in an operating system and compiler independent
manner. Thanks to Motoko-chan.
development/libcap: fixed a typo in the build script.
system/cdrkit: Added - cdrkit is a fork of cdrtools. It will require
libcap, cmake, and zisofs-tools. Thanks to Motoko-chan.
system/cpufreqd: Added - similar to the speedstep applet; used for
monitoring cpu usage, battery level, AC state, and cpu frequency.
This requires the cpufrequtils package.
system/zisofs-tools: Added - these are the user tools for zisofs (mkzftree
and mkisofs) which are bundled with cdrtools, but are split out for
cdrkit.
--robw810
+--------------------------+
Mon Oct 2 04:03:17 UTC 2006
libraries/cpufrequtils: Added - cpufrequtils is a unified access method
for userspace tools and programs to the cpufreq core and drivers in the
Linux kernel.
multimedia/mplayer-codecs-all: Updated to version 20060611.
multimedia/MPlayer: changed the default path of the codecs back to
/usr/lib/codecs - this is configurable in the script, and we're going
to assume that anyone building MPlayer from here has also built the
codecs from here. On that note, the README was also edited to reflect
that the codecs don't actually have to be installed - so long as the
directory is specified in the configure, support for them will be built.
--robw810
+--------------------------+
Sun Oct 1 23:42:25 UTC 2006
multimedia/MPlayer: fixed bad path in doinst.sh script; thanks to Dasajev.
Changed the default codecs path to /usr/local/lib/codecs, which is what
it would be if the user follows the instructions at MPlayer's site - this
is still configurable in the script in case the user has installed them
with our SlackBuild script. Changed the method for gzipping manpages
(added detection of symlinks); thanks to Eric Hameleers.
misc/wine: Changed manpage detection/gzipping; added mandir=/usr/man to
the configure command. Added better permissions checking in the extracted
source. Added support for OpenGL acceleration. Thanks to Eric Hameleers.
graphics/gqview: Better permissions checking; better manpage compression.
--robw810
+--------------------------+
Mon Sep 25 14:21:00 UTC 2006
This one hasn't been explained yet, but we somehow lost three of our scripts
in the recent work on the site, and we just caught the mistake today.
Luckily, elohim had backups... :) --robw810
development/nano: Added.
multimedia/MPlayer: Added.
network/msmtp: Added.
+--------------------------+
Fri Sep 22 21:20:45 UTC 2006
We're mostly finished with the cosmetic changes mentioned below, and some
of them required some changes to the README requirements. All things
considered, this should make things easier on submitters, as the app's
home page, download location, and md5sum only have to be put into one
file now, and the README is just for, well, READING purposes. Anyway,
make sure you have a look at http://slackbuilds.org/guidelines/ before
entering any new submissions.
Maybe we can get back to the fun stuff now (like adding new stuff to the
repository). :) --robw810
+--------------------------+
Thu Sep 21 05:21:52 UTC 2006
Okay, I think we've got everything back to normal (whatever that means) :)
There are some more cosmetic changes coming to the public portion of the
site, and some of them should also improve the usability side of things
too. One major change that's been requested is the ability to download
a tarball of an application's entire directory, and that's now available.
We're still working on quite a few things in the site backend, but most
of that will be transparent to the public (or at least that's what we
hope to be the case). Anyway, thanks for your patience with us, and
happy Slackin' :-)
misc/wine: Updated to wine-0.9.21. Added semi-official patches for both
nvidia cards and ati cards that still need one; please read the comments
in the SlackBuild script.
--robw810
+--------------------------+
Fri Sep 15 05:34:15 UTC 2006
We're doing some 'behind the scenes' work on the site backend, so the
repo is currently offline. If all goes well, it will be back up in
24-48 hours. Sorry for the downtime. --robw810
+--------------------------+
Tue Sep 12 13:10:48 UTC 2006
network/rdesktop: Removed - this is now part of the official Slackware
package set. --robw810
+--------------------------+
Sun Sep 10 18:15:50 UTC 2006
desktop/slim: Fixed - config files are no longer clobbered on upgrade.
--robw810
+--------------------------+
Fri Sep 8 15:10:12 UTC 2006
network/openntpd: Removed. There are a few issues with this I need to
work out, so it will be back sooner or later.
office/openoffice.org: Fixed a few issues. This no longer includes any
custom *.desktop files; instead, we use the ones included in the original
binaries. Also, we no longer add/replace/modify /etc/mailcap or
/etc/mime.types on the system - this was badly broken behavior that should
not have slipped by earlier.
development/cpan2tgz: Added. cpan2tgz is an app to make Slackware packages
from perl modules.
--robw810
+--------------------------+
Thu Sep 7 12:27:43 EDT 2006
network/rdesktop: Fixed problem in the SlackBuild. I have no idea how this
slipped through the cracks. An if-else statement wasn't closed, causing
bash to fail to execute pretty much anything in this script.
--Alan Hicks
+--------------------------+
Sun Sep 3 03:40:37 UTC 2006
network/snownews: Added. Snownews is a text mode RSS/RDF newsreader.
network/LimeWire: Updated to version 4.12.6 and fixed some oversights
from the last version bump.
--robw810
+--------------------------+
Tue Aug 29 15:07:10 UTC 2006
development/lua: Added lua, a free software light-weight
programming language designed for extending applications.
libraries/libinklevel: Added libinklevel, a library to check
printer ink levels. Required by ink.
multimedia/kaffeine: Added kaffeine, a full featured Multimedia-
Player for KDE.
network/arptables: Added arptables, an administration tool for arp
packet filtering.
system/ink: Added ink, a command line tool for checking the ink
level of your printer on a system which runs Linux. It makes use
of libinklevel.
--elohim
+--------------------------+
Thu Aug 24 22:06:29 UTC 2006
system/ulogd: added ulogd man page and logrotate script to the
package. The logrotate script will install as a .new script
into /etc/logrotate.d/, as many people will need to edit it
for custom logfile names, and we don't want to clobber the
custom version on upgrade.
--robw810
+--------------------------+
Wed Aug 23 06:09:15 UTC 2006
multimedia/mpd: Added. Music Player Daemon allows remote access for
both playing music and editing playlists.
system/apcupsd: Upgraded to apcupsd 3.12.4
--robw810
+--------------------------+
Tue Aug 22 20:45:26 UTC 2006
multimedia/MPlayer: added a doinst.sh file to the package to prevent
clobbering of the existing /etc/mplayer.conf file on upgrade.
Also, I'm in the process of modifying all of the current repository
to separate the BUILD and TAG variables (BUILD=1 TAG=_SBo), as well
as a few other minor issues not worth mentioning here (yes, I'm
being pedantic) :)
--robw810
+--------------------------+
Tue Aug 22 14:48:38 UTC 2006
system/aterm: Upgraded to aterm-1.0.0 and cleaned up the script some.
--robw810
+--------------------------+
Tue Aug 15 04:02:39 UTC 2006
system/worker: Added - worker is a graphical file manager similar
to Midnight Commander.
system/xbindkeys: Added - xbindkeys is a program that allows you to
launch shell commands with your keyboard or mouse under X Windows
--robw810/elohim on both
+--------------------------+
Mon Aug 14 22:54:15 UTC 2006
system/ulogd: Fixed two major problems in the script -
/usr/local/lib is no longer used (no, I don't know how I missed
that), and existing config files are no longer clobbered.
--robw810
+--------------------------+
Mon Aug 14 05:36:31 UTC 2006
system/arp-scan: Added - ARP scanning and fingerprinting tool
desktop/icewm: Updated for version 1.2.27, and many changes to
improve the original script.
--robw810/elohim
+--------------------------+
Mon Aug 14 04:53:05 UTC 2006
system/apcupsd: Fixed the script to prevent overwriting of files
in /etc/apcupsd/ during an upgrade; doinst.sh now checks for
for differences and installs them as *.new if they're not identical.
The same applies for /etc/rc.d/rc.apcupsd.
--robw810
+--------------------------+
Mon Aug 14 03:31:00 UTC 2006
network/LimeWire: Updated to version 4.12.4
network/muttng: Added. mutt "next generation" is a fork of the mutt
email client.
--robw810/elohim
+--------------------------+
Thu Aug 10 23:50:06 UTC 2006
system/hplip: Removed. This is a temporary removal until I can work
out a better way to do a few things - I'm not at all happy with
any package creating *.new files that are normally considered part
of other packages, *especially* not sysvinit.
--robw810
+--------------------------+
Wed Aug 9 18:02:52 UTC 2006
system/apcupsd: Modified to use --sbindir=/sbin instead of /usr/sbin,
as some systems with /usr on a separate partition might not poweroff
completely after halt if /usr is unmounted first.
--robw810
+--------------------------+
Tue Aug 8 20:40:32 UTC 2006
network/heimdal: Added - a free Kerberos implementation,
mostly compatible to MIT Kerberos.
--alien
+--------------------------+
Mon Aug 7 23:12:46 UTC 2006
Anonymous FTP access to the repository is now available via
ftp://ftp.slackbuilds.org - this is a feature that got several
requests, and it should make for easier downloading via wget's
recursive feature :)
libraries/libcap: Added - a library for getting and setting POSIX.1e
(formerly POSIX 6) draft 15 capabilities
+--------------------------+
Mon Aug 7 13:23:12 UTC 2006
system/conserver: Added. Conserver is a console server.
--robw810/alien
+--------------------------+
Sun Aug 6 22:17:53 UTC 2006
misc/wine: Updated the build script to 0.9.18, and also replaced
the WOW patch with one for the new version. According to the
developers maintaining the WOW patches, they're no longer
necessary for some ATI cards.
libraries/freealut: Added - freealut is a free implementation of
OpenAL's ALUT standard; it requires OpenAL (obviously), which
is also available here.
--robw810
+--------------------------+
Sun Aug 6 01:53:39 UTC 2006
libraries/ffcall: Added - collection of foreign function call libraries;
needed by GNUstep apps (which are coming soon)
--robw810
+--------------------------+
Fri Aug 4 05:32:19 UTC 2006
office/lyx: graphical TeX based document processor
--robw810/elohim
+--------------------------+
Fri Aug 4 03:37:46 UTC 2006
development/splint: Added - Splint (Secure Programming Lint)
--elohim
+--------------------------+
Thu Aug 3 04:00:54 UTC 2006
libraries/sqlite: Added - SQLite is a small C library that implements
a simple SQL database engine.
--robw810
+--------------------------+
Wed Aug 2 21:32:18 UTC 2006
libraries/OpenAL: Added - OpenAL is a 3D audio API useful for gaming
and other audio applications
--robw810
+--------------------------+
Wed Aug 2 04:56:47 UTC 2006
network/centericq: Added - centericq is a multi-protocol console based
instant messaging client.
--robw810
+--------------------------+
Tue Aug 1 23:29:05 UTC 2006
development/nano: Added - GNU nano attempts to move even closer to
the goal of a 'compatible but enhanced' Pico clone.
--elohim
+--------------------------+
Tue Aug 1 21:35:38 UTC 2006
system/apcupsd: Added - apcupsd is a daemon for controlling APC UPS
units. I've implemented some better fixes for apcupsd's broken
behavior of writing outside DESTDIR during the build process.
--robw810
+--------------------------+
Tue Aug 1 03:29:56 UTC 2006
network/msmtp: Added msmtp, a simple smtp client
--robw810
+--------------------------+
Mon Jul 31 20:19:11 UTC 2006
system/aterm: Added aterm, a terminal emulator
system/apcupsd: Removed. This is temporary until I fix a few things to
better work around the broken slackware-specific installation by
apcupsd's source. I've got some patches that I've submitted to the
apcupsd developers, but I want to ensure that they work properly before
committing them here.
--robw810
+--------------------------+
Mon Jul 31 19:25:00 UTC 2006
desktop/slim: Updated for slim 1.2.5
--robw810
+--------------------------+
Sun Jul 30 03:57:18 UTC 2006
The site is officially live! Enjoy :)
--robw810
+--------------------------+
Wed Jul 26 22:07:27 UTC 2006
development/ruby: Removed (now part of official Slackware package set).
--robw810
+--------------------------+
Mon Jul 24 05:04:53 UTC 2006
We now have a mailing list for bug reports -
http://lists.slackbuilds.org/ for more information
--robw810
+--------------------------+
Wed Jul 19 15:22:22 UTC 2006
games/bzflag: Added; bzflag is a "Capture the Flag" game.
--robw810
+--------------------------+
Tue Jul 18 23:33:18 UTC 2006
office/acroread: fixed a problem where the symlink for AdobeReader.png
in /usr/share/pixmaps was incorrect. The reason for the frequent
problems with symlinks is due to the fact that Adobe Reader expects
to be installed in /opt/Adobe/Acrobat$VERSION/, and the default links
are created with that assumption. Anyway, maybe I've got all of the
bugs stomped by now... :)
--robw810
+--------------------------+
Tue Jul 18 15:33:10 UTC 2006
desktop/icewm: Added icewm window manager.
--robw810
+--------------------------+
Tue Jul 18 04:44:31 UTC 2006
office/acroread: fixed a problem where the symlink for AdobeReader.desktop
wasn't properly created.
I'm currently testing some changes to the OpenOffice.org script as well,
so maybe they'll be committed within a day or so...
--robw810
+--------------------------+
Thu Jul 13 05:39:34 UTC 2006
office/acroread: fixed a problem where the mime entry wasn't properly linked
in the script
--robw810
+--------------------------+
Wed Jul 12 02:31:54 UTC 2006
system/hplip: Updated to version 1.6.6a
misc/wine: Updated to version 0.9.17
--robw810
+--------------------------+
Mon Jul 10 03:31:58 UTC 2006
multimedia/mp3blaster: Added - a console audio player
desktop/ratpoison: Added - a very minimalist window manager
--robw810
+--------------------------+
Thu Jul 6 16:23:04 UTC 2006
We're not quite ready to officially launch yet, but it's probably a good idea
to go ahead and get this started, so...
academic/calcoo: a scientific calculator application
academic/chemtool: a chemistry molecule drawing application
academic/octave: a MatLab clone
academic/xdrawchem: a chemistry molecule drawing application
desktop/slim: a lightweight graphical login manager; similar to xdm, but
prettier :)
development/bluefish: a graphical html/css/other stuff editor
development/ruby: object oriented scripting language
games/ppracer: Power Penguin Racer; derived from TuxRacer
games/supertux: clone of Super Mario Brothers game
graphics/gimpshop: The GIMP! modified to behave more like Adobe Photoshop
graphics/gqview: gtk+ image viewer
graphics/wpclipart: free clipart for any office suite
libraries/fox-toolkit: Graphical C++ toolkit; required by xfe
libraries/libdvbpsi: library for working with MPEG TS and DVB PSI tables
libraries/libdvdcss: library for playing encrypted dvd's
libraries/libdvdplay: library for playing dvd's
libraries/libdvdread: library needed for playing dvd's
libraries/openbabel: clone of the Babel library; required by xdrawchem
misc/wine: Win32 API support for *nix
multimedia/MPlayer: multimedia player
multimedia/mplayer-codecs-all: codecs for all supported multimedia
network/LimeWire: java-based peer-to-peer file sharing application
network/openntpd: OpenBSD's ntp server/client
network/rdesktop: Microsoft RDP client
office/acroread: Adobe's Acrobat Reader
office/openoffice.org: Full-featured office suite
system/apcupsd: APC UPS monitoring and interaction software
system/hplip: HP Linux Inkjet Printer/Scanner drivers
system/krusader: gui file manager with a Midnight Commander look
system/torsmo: system monitoring software
system/ulogd: userspace logging daemon for iptables
system/xfe: MS Explorer-like gui file manager
--robw810
|