-
Notifications
You must be signed in to change notification settings - Fork 0
/
available.txt
14078 lines (13377 loc) · 543 KB
/
available.txt
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
Package: localization-config
Priority: optional
Section: admin
Installed-Size: 452
Maintainer: Konstantinos Margaritis <[email protected]>
Architecture: all
Version: 0.116
Replaces: locale-config-skolelinux
Provides: locale-config-skolelinux
Depends: debconf (>= 0.5) | debconf-2.0, perl-base (>= 5.6.0), libapt-pkg-perl, libconfig-inifiles-perl, locales | belocs-locales-data
Conflicts: locale-config-skolelinux
Size: 47904
Description: configures different programs' locale settings
Updates config files of different programs so they use the right
language by default.
.
This package is based on locale-config-skolelinux from the Skolelinux
Project (now Debian-Edu Project).which it replaces.
Package: perlapi-5.8.4
Priority: optional
Section: admin
Installed-Size: 452
Maintainer: Konstantinos Margaritis <[email protected]>
Architecture: all
Version: 0.116
Replaces: locale-config-skolelinux
Provides: locale-config-skolelinux
Package: libapt-pkg-libc6.3-6-3.10
Priority: optional
Section: admin
Installed-Size: 452
Maintainer: Konstantinos Margaritis <[email protected]>
Architecture: all
Version: 0.116
Replaces: locale-config-skolelinux
Provides: locale-config-skolelinux
belocs-l$Conflicts: locale-config-skolelinux
Package: libgtkspell0
Priority: optional
Section: libs
Installed-Size: 316
Maintainer: Ari Pollak <[email protected]>
Architecture: i386
Source: gtkspell
Version: 2.0.10-3
Depends: libaspell15c2 (>= 0.60), libatk1.0-0 (>= 1.9.0), libc6 (>= 2.3.2.ds1-21), libglib2.0-0 (>= 2.6.0), libgtk2.0-0 (>= 2.6.0), libpango1.0-0 (>= 1.8.1)
Size: 18108
Description: a spell-checking addon for GTK's TextView widget
GtkSpell provides MSWord/MacOSX-style highlighting of misspelled words in a
GtkTextView widget. Right-clicking a misspelled word pops up a menu of
suggested replacements.
Package: tcpd
Priority: important
Section: base
Installed-Size: 200
Maintainer: Anthony Towns <[email protected]>
Architecture: i386
Source: tcp-wrappers
Version: 2.3.2.ds1-7
Replaces: libwrap0 (<= 7.6-8)
Depends: libwrap0 (<= 7.6-1.1), libc6 (<= 2.3.2.ds1-21), libc6 (>= 2.3.2.ds1-21), debconf (>= 12.3.2)
Conflicts: netbase (<= 3.16-1)
Size: 73764
Description: Wietse Venema's TCP wrapper utilities
Wietse Venema's network logger, also known as TCPD or LOG_TCP.
These programs log the client host name of incoming telnet,
ftp, rsh, rlogin, finger etc. requests. Security options are:
access control per host, domain and/or service; detection of
host name spoofing or host address spoofing; booby traps to
implement an early-warning system.
Package: python2.3-numeric-ext
Priority: optional
Section: python
Installed-Size: 312
Maintainer: Matthias Klose <[email protected]>
Architecture: i386
Source: python-numeric
Version: 23.8-4
Depends: python2.3, python2.3-numeric (= 23.8-4), lapack3 | atlas3-base | liblapack.so.3, refblas3 | atlas3-base | libblas.so.3, libc6 (>= 2.3.5-1), libg2c0 (>= 1:3.4.4-5)
Size: 84698
Description: Extension modules for Numeric Python
Simple interfaces to existing numerical libraries:
* Linear Algebra (LAPACK)
* Fourier Transforms (FFTPACK)
* Random Arrays (RANLIB)
* Independent Random Streams (RNG, ranf)
* Masked Arrays (MA)
Package: xpdf-utils
Priority: optional
Section: text
Installed-Size: 3556
Maintainer: Hamish Moffatt <[email protected]>
Architecture: i386
Source: xpdf
Version: 3.01-1
Provides: pdf-viewer, postscript-preview
Depends: libc6 (>= 2.3.5-1), libgcc1 (>= 1:4.0.1), libstdc++6 (>= 4.0.1), xpdf-common (= 3.01-1)
Suggests: pdftk
Conflicts: xpdf-i (<= 0.90-8), xpdf (<= 0.93-6)
Size: 1384804
Description: Portable Document Format (PDF) suite -- utilities
xpdf is a suite of tools for Portable Document Format (PDF) files. (These are
sometimes called 'Acrobat' files after the name of Adobe's PDF software.)
.
This package contains pdftops (PDF to PostScript converter),
pdfinfo (PDF document information extractor), pdfimages
(PDF image extractor), pdftotext (PDF to text converter), and
pdffonts (PDF font analyzer).
.
To view PDF files, see the xpdf-reader package. That package
also contains pdftoppm (PDF to Portable Bitmap converter).
Package: libbonoboui2-0
Priority: optional
Section: libs
Installed-Size: 508
Maintainer: Takuo KITAME <[email protected]>
Architecture: i386
Source: libbonoboui
Version: 2.10.0-1
Replaces: libbonoboui2-common (<= 2.4.3-1)
Depends: libart-2.0-2 (>= 2.3.16), libatk1.0-0 (>= 1.9.0), libbonobo2-0 (>= 2.8.0), libbonoboui2-0 (>= 2.5.4), libc6 (>= 2.3.2.ds1-21), libgconf2-4 (>= 2.9), libglade2-0 (>= 1:2.5.1), libglib2.0-0 (>= 2.6.0), libgnome2-0 (>= 2.8.0), libgnomecanvas2-0 (>= 2.6.0), libgnomevfs2-0 (>= 2.10.0-0), libgtk2.0-0 (>= 2.6.0), libice6 | xlibs (>= 4.1.0), liborbit2 (>= 1:2.10.0), libpango1.0-0 (>= 1.8.1), libpopt0 (>= 1.7), libsm6 | xlibs (>= 4.1.0), libx11-6 | xlibs (>= 4.1.0), libxml2 (>= 2.6.16), zlib1g (>= 1:1.2.1), libbonoboui2-common (= 2.10.0-1)
Size: 212088
Description: The Bonobo UI library
The Bonobo UI library
.
This package is a part of GNOME2
Package: libtext-wrapi18n-perl
Priority: important
Section: perl
Installed-Size: 76
Maintainer: Anibal Monsalve Salazar <[email protected]>
Architecture: all
Version: 0.06-2
Depends: libtext-charwidth-perl
Size: 8528
Description: internationalized substitute of Text::Wrap
This module is a substitution for Text::Wrap, supporting
multibyte characters such as UTF-8, EUC-JP, and GB2312, fullwidth
characters such as east Asian characters, combining characters
such as diacritical marks and Thai, and languages which don't
use whitespaces between words such as Chinese and Japanese.
.
It provides wrap().
Package: xfdesktop4
Priority: optional
Section: x11
Installed-Size: 5460
Maintainer: Debian Xfce Maintainers <[email protected]>
Architecture: i386
Version: 4.2.2-1
Depends: libatk1.0-0 (>= 1.9.0), libc6 (>= 2.3.2.ds1-21), libglib2.0-0 (>= 2.6.0), libgtk2.0-0 (>= 2.6.0), xlibs (>= 4.1.0), libpango1.0-0 (>= 1.8.1), xlibs (>= 4.1.0), libstartup-notification0 (>= 0.8-1), xlibs (>= 4.1.0), libxfce4util-1 (>= 4.2.0), libxml2 (>= 2.6.16), zlib1g (>= 1:1.2.1)
Suggests: menu
Conflicts: menu (<= 2.1.12)
Size: 3021390
Description: Provides desktop background and root menu
This package contains a tool that allows you to switch the background image
and a root menu. Additionally, it contains dialogs to change the number
of available desktop workspaces and their names. It also contains a panel
plugin to display the menu on the panel
.
Homepage: http://www.xfce.org/
Package: debconf
Priority: important
Section: admin
Installed-Size: 1408
Maintainer: Joey Hess <[email protected]>
Architecture: all
Version: 1.4.58
Replaces: debconf-tiny
Provides: debconf-2.0
Depends: libc6 (<= 2.3.5-1)
Recommends: apt-utils (>= 0.5.1)
Suggests: debconf-doc, debconf-utils
Conflicts: cdebconf, debconf-tiny, apt (<= 0.3.12.1), menu (<= 2.1.3-1), dialog (<= 0.9b-20020814-1), whiptail (<= 0.51.4-11), whiptail-utf8 (<= 0.50.17-13), debconf-utils (<= 1.3.22)
Size: 110692
Description: Debian configuration management system
Debconf is a configuration management system for debian packages. Packages
use Debconf to ask questions when they are installed.
Package: xserver-common
Priority: optional
Section: x11
Installed-Size: 1020
Maintainer: Debian X Strike Force <[email protected]>
Architecture: i386
Source: xorg-x11
Version: 6.8.2.dfsg.1-6
Replaces: xbase (<= 3.3.2.3a-2), xserver-vga16 (<= 3.3.2.3a-2), xserver-agx (<= 3.3.2.3a-9), xserver-mach32 (<= 3.3.2.3a-9), xserver-mach64 (<= 3.3.2.3a-9), xserver-p9000 (<= 3.3.2.3a-9), xserver-s3 (<= 3.3.2.3a-9), xserver-s3v (<= 3.3.2.3a-9), xserver-tga (<= 3.3.2.3a-9), xserver-w32 (<= 3.3.2.3a-9), xsun-utils
Depends: debconf (>= 1.0.21) | debconf-2.0, x11-common (>= 6.8.1), libc6 (>= 2.3.5-1), debconf (>= 0.5) | debconf-2.0
Suggests: xserver-xorg | xserver, xfonts-base, xfonts-100dpi | xfonts-75dpi, xfonts-scalable, configlet-frontends
Conflicts: xbase (<= 3.3.2.3a-2), xsun-utils, xbase-clients (<= 3.3.6-1), suidmanager (<= 0.50), configlet (<= 0.9.22), xserver-3dlabs (<= 3.3.6-35), xserver-8514 (<= 3.3.6-35), xserver-agx (<= 3.3.6-35), xserver-common-v3 (<= 3.3.6-35), xserver-fbdev (<= 3.3.6-35), xserver-i128 (<= 3.3.6-35), xserver-mach32 (<= 3.3.6-35), xserver-mach64 (<= 3.3.6-35), xserver-mach8 (<= 3.3.6-35), xserver-mono (<= 3.3.6-35), xserver-p9000 (<= 3.3.6-35), xserver-s3 (<= 3.3.6-35), xserver-s3v (<= 3.3.6-35), xserver-svga (<= 3.3.6-35), xserver-tga (<= 3.3.6-35), xserver-vga16 (<= 3.3.6-35), xserver-w32 (<= 3.3.6-35), xserver-xsun (<= 3.3.6-35), xserver-xsun-mono (<= 3.3.6-35), xserver-xsun24 (<= 3.3.6-35), xserver-rage128, xserver-sis
Size: 365332
Description: files and utilities common to all X servers
The X server is the hardware interface of the X Window System. Its job is to
communicate with video display and input devices, and present them in a
standardized, abstract fashion via the X protocol to X clients (X-based
programs). The X server largely relieves programs of having to know or care
about the details of the hardware with which they are interacting (such
things as 32-bit versus 8-bit color, the layout of the keyboard, how many
buttons the mouse has, etc.). The catch is that the X server must itself
know the technical specifications of the graphics hardware and monitor, the
keyboard layout, the protocol used by the mouse, and so forth.
.
X servers either need fonts installed on the local host, or need to know of a
remote host that provides font services (with xfs, for instance). The former
means that font packages are mandatory. The latter means that font packages
may be gratuitous. To err on the side of caution, install at least the
xfonts-base, xfonts-100dpi or xfonts-75dpi, and xfonts-scalable packages.
Package: libmng-dev
Priority: optional
Section: libdevel
Installed-Size: 816
Maintainer: Shiju p. Nair <[email protected]>
Architecture: i386
Source: libmng
Version: 1.0.8-1
Replaces: libmng
Depends: libmng1 (= 1.0.8-1), zlib1g-dev
Size: 249184
Description: M-N-G library (Development headers)
The libmng library supports decoding, displaying, encoding, and various
other manipulations of the Multiple-image Network Graphics (MNG) format
image files. It uses the zlib compression library, and optionally the
JPEG library by the Independent JPEG Group (IJG) and/or
lcms (little cms), a color-management library by Marti Maria Saguar.
.
Development headers
Package: dash
Priority: optional
Section: shells
Installed-Size: 164
Maintainer: Gerrit Pape <[email protected]>
Architecture: i386
Version: 0.5.2-7
Size: 83926
Description: The Debian Almquist Shell
"dash" is a POSIX compliant shell that is much smaller than "bash".
We take advantage of that by making it the shell on the installation
root floppy, where space is at a premium.
.
It can be usefully installed as /bin/sh (because it executes scripts
somewhat faster than "bash"), or as the default shell either of root
or of a second user with a userid of 0 (because it depends on fewer
libraries, and is therefore less likely to be affected by an upgrade
problem or a disk failure). It is also useful for checking that a
script uses only POSIX syntax.
.
"bash" is a better shell for most users, since it has some nice
features absent from "dash", and is a required part of the system.
Package: gimp
Priority: optional
Section: graphics
Installed-Size: 7292
Maintainer: Ari Pollak <[email protected]>
Architecture: i386
Version: 2.2.8-8
Replaces: gimp1.2 (<= 1.2.5-1), gimp1.3, gimp-nonfree, gimp-data (<= 2.0.2-4)
Provides: gimp2.0, gimp-nonfree
Depends: wget, gimp-data (= 2.2.8-8), libaa1 (>= 1.2), libart-2.0-2 (>= 2.3.16), libatk1.0-0 (>= 1.9.0), libc6 (>= 2.3.5-1), libexif12, libexpat1 (>= 1.95.8), libfontconfig1 (>= 2.3.0), libfreetype6 (>= 2.1.7), libgimp2.0 (>= 2.2.0+rel), libglib2.0-0 (>= 2.6.0), libgtk2.0-0 (>= 2.6.0), libice6 | xlibs (>= 4.1.0), liblcms1 (>= 1.08-1), libmng1 (>= 1.0.3-1), libpango1.0-0 (>= 1.8.2), libpng12-0 (>= 1.2.8rel), libsm6 | xlibs (>= 4.1.0), libtiff4, libwmf0.2-7 (>= 0.2.8.3), libx11-6 | xlibs (>= 4.1.0), libxmu6 | xlibs (>= 4.1.0), libxpm4 | xlibs (>= 4.1.0), libxt6 | xlibs (>= 4.1.0), zlib1g (>= 1:1.2.1)
Recommends: gimp-svg, gimp-print
Suggests: gimp-help-en | gimp-help, gimp-python, libgimp-perl, gimp-data-extras, libasound2 (>= 1.0.0)
Conflicts: gimp1.2 (<= 1.2.5-1), gimp1.3, gimp-nonfree, gimp-data (<= 2.0.2-4)
Size: 2833854
Description: The GNU Image Manipulation Program
The GIMP lets you draw, paint, edit images, and much more! GIMP
includes the functionality and plug-ins of other famous image
editing and processing programs.
.
If you'd like to use a MIDI device as an input controller in GIMP,
install libasound2 and read the how-to at /usr/share/doc/gimp/README.MIDI
Package: cdrecord
Priority: optional
Section: otherosfs
Installed-Size: 1132
Maintainer: Joerg Jaspert <[email protected]>
Architecture: i386
Source: cdrtools
Version: 4:2.01+01a01-4
Replaces: cdrtools-doc
Depends: libc6 (>= 2.3.2.ds1-21), libcap1, debconf, makedev (>= 2.3.1-24)
Recommends: mkisofs
Suggests: xcdroast, cdrtools-doc
Conflicts: xcdroast (<= 0.98+0alpha14-5)
Size: 582066
Description: command line CD writing tool
cdrecord allows you to create CDs on a CD recorder.
It supports writing data, audio, mixed, multi-session, and CD+
discs, on just about every type of CD recorder out there.
.
Please install cdrtools-doc if you want most of the documentation and
Readme-files.
Package: dpatch
Priority: optional
Section: devel
Installed-Size: 312
Maintainer: Dpatch Maintainers <[email protected]>
Architecture: all
Version: 2.0.14
Recommends: dpkg-dev, fakeroot, patchutils
Suggests: curl
Size: 81588
Description: patch maintenance system for Debian source packages
dpatch is an easy to use patch system for debian packages, somewhat
similar to the dbs package, but much simpler to use.
.
It lets you store patches and other simple customization templates in
debian/patches and otherwise does not require much reorganization of
your source tree. To get the patches applied at build time you simply
need to include a makefile snippet and then depend on the
patch/unpatch target in the build or clean stage of debian/rules - or
you can use the dpatch patching script directly.
.
It can easily apply patches only on specific architectures if needed.
Package: libart-2.0-2
Priority: optional
Section: libs
Installed-Size: 168
Maintainer: OndÅej Surý <[email protected]>
Architecture: i386
Source: libart-lgpl
Version: 2.3.17-1
Depends: libc6 (>= 2.3.2.ds1-4)
Size: 61306
Description: Library of functions for 2D graphics - runtime files
A library of functions for 2D graphics supporting a superset of the
PostScript imaging model, designed to be integrated with graphics, artwork,
and illustration programs. It is written in optimized C, and is fully
compatible with C++. With a small footprint of 10,000 lines of code, it is
especially suitable for embedded applications.
Package: libgtk1.2-common
Priority: optional
Section: misc
Installed-Size: 940
Maintainer: Akira TAGOH <[email protected]>
Architecture: all
Source: gtk+1.2
Version: 1.2.10-17
Replaces: libgtk1.2 (<= 1.2.10-4)
Size: 208512
Description: Common files for the GTK+ library
The GIMP Toolkit is a freely available set of widgets for X.
GTK is easy to use, and has been implemented in such projects as
The GNU Image Manipulation Program (The GIMP), GNOME, a GNU
desktop set of utilities for X, and gzilla, a GNU web-browser.
.
This package contains the common files which the runtime libraries
need.
Package: shared-mime-info
Priority: optional
Section: misc
Installed-Size: 1513
Maintainer: Filip Van Raemdonck <[email protected]>
Architecture: i386
Version: 0.16-3
Depends: libc6 (>= 2.3.2.ds1-21), libglib2.0-0 (>= 2.6.0), libxml2 (>= 2.6.16), zlib1g (>= 1:1.2.1)
Size: 347174
Description: FreeDesktop.org shared MIME database and spec
This is the shared MIME-info database from the X Desktop Group. It is required
by any program complying to the Shared MIME-Info Database spec, which is also
included in this package.
.
At this time ROX and GNOME use this database. KDE is expected to follow soon,
and hopefully others too.
Package: libt1-5
Priority: optional
Section: libs
Installed-Size: 356
Maintainer: Artur R. Czechowski <[email protected]>
Architecture: i386
Source: t1lib
Version: 5.1.0-2
Depends: libc6 (>= 2.3.2.ds1-21)
Size: 146082
Description: Type 1 font rasterizer library - runtime
T1lib is an enhanced rasterizer for Type 1 fonts.
.
T1lib is based on the X11R5 font rasterizer code, but operates independently
of X11. It includes many enhancements, including underlining, antialiasing,
user-defined slant and extension factors, and rotation.
.
This package contains the shared libraries needed to run programs using T1lib.
Package: libxdmcp6
Priority: optional
Section: libs
Installed-Size: 356
Maintainer: Debian X Strike Force <[email protected]>
Architecture: i386
Source: xorg-x11
Version: 6.8.2.dfsg.1-6
Depends: libc6 (>= 2.3.5-1)
Size: 187600
Description: X Display Manager Control Protocol library
libXdmcp provides an interface to the X Display Manager Control Protocol, which
is used for remote logins to display managers.
Package: esound-common
Priority: optional
Section: sound
Installed-Size: 64
Maintainer: Ryan Murray <[email protected]>
Architecture: all
Source: esound
Version: 0.2.36-1
Size: 37550
Description: Enlightened Sound Daemon - Common files
This program is designed to mix together several digitized
audio streams for playback by a single device.
.
This package contains the documentation and configuration files.
Package: libatk1.0-dev
Priority: optional
Section: libdevel
Installed-Size: 436
Maintainer: Akira TAGOH <[email protected]>
Architecture: i386
Source: atk1.0
Version: 1.10.1-2
Replaces: libatk0-dev, libatk-dev
Depends: libatk1.0-0 (= 1.10.1-2), pkg-config, libglib2.0-dev (>= 2.4.1-2)
Conflicts: libatk0-dev, libatk-dev
Size: 94198
Description: Development files for the ATK accessibility toolkit
ATK is a toolkit providing accessibility interfaces for applications or
other toolkits. By implementing these interfaces, those other toolkits or
applications can be used with tools such as screen readers, magnifiers, and
other alternative input devices.
.
These are the development files for ATK, needed for compilation of
programs or toolkits which use it.
Package: skype
Priority: extra
Section: non-free/net
Installed-Size: 7909
Maintainer: skype <info.skype.net>
Architecture: i386
Version: 1.2.0.11
Depends: libc6 (>= 2.2.4-4), qt (>= 3.2)
Size: 6840840
Description: Skype is free Internet telephony that just works Skype offers free superior sound quality Internet telephony. In addition, it includes: . control Conference calling - enables simultaneous and seamless voice communication between groups of up to five friends, family or colleagues. . control Global Directory - the user-built global Skype contacts directory with numerous search options and an easy add-a-contact tool . control Customization - My Picture image display . control Mobility - login into Skype account on more than one PC anywhere in the world. . control Multiple Skype accounts on one PC
Package: coreutils
Essential: yes
Priority: required
Section: base
Installed-Size: 7096
Maintainer: Michael Stone <[email protected]>
Architecture: i386
Version: 5.2.1-2
Replaces: textutils, shellutils, fileutils, stat, debianutils (<= 2.3.1)
Provides: textutils, shellutils, fileutils
Conflicts: stat
Size: 2580586
Description: The GNU core utilities
This package contains the essential basic system utilities.
.
Specifically, this package includes:
basename cat chgrp chmod chown chroot cksum comm cp csplit cut date dd df dir
dircolors dirname du echo env expand expr factor false fmt fold groups head
hostid id install join link ln logname ls md5sum mkdir mkfifo mknod mv nice nl
nohup od paste pathchk pinky pr printenv printf ptx pwd readlink rm rmdir
sha1sum seq shred sleep sort split stat stty sum sync tac tail tee test touch
tr true tsort tty uname unexpand uniq unlink users vdir wc who whoami yes
Package: libopts25
Priority: optional
Section: libs
Installed-Size: 116
Maintainer: Matt Kraai <[email protected]>
Architecture: i386
Source: autogen
Version: 1:5.7.2-1
Replaces: autogen, libopts9
Depends: libc6 (>= 2.3.2.ds1-21)
Conflicts: libopts9
Size: 51130
Description: automated option processing library based on autogen - runtime
This package contains the shared libraries needed by binaries that
use autoopts for option processing. The package containing the
header files and static libraries is libopts25-dev. The package
containing the development tools is autogen.
Package: libxpm-dev
Priority: optional
Section: libdevel
Installed-Size: 408
Maintainer: Debian X Strike Force <[email protected]>
Architecture: i386
Source: xorg-x11
Version: 6.8.2.dfsg.1-6
Replaces: xlibs-dev (<= 4.3.0)
Depends: libxpm4 (= 6.8.2.dfsg.1-6), libx11-dev, libc6-dev | libc-dev
Conflicts: xlibs-dev (<= 4.3.0)
Size: 209488
Description: X pixmap library development files
Header files and a static version of the Xpm library are provided by this
package.
.
See the libxpm4 package for further information.
Package: sudo
Priority: optional
Section: admin
Installed-Size: 380
Maintainer: Bdale Garbee <[email protected]>
Architecture: i386
Version: 1.6.8p9-2
Depends: libc6 (<= 2.3.2), libpam0g (>= 0.76), libpam-modules (<= 3.3), libc6 (<= 2.3.7)
Size: 159640
Description: Provide limited super user privileges to specific users
Sudo is a program designed to allow a sysadmin to give limited root
privileges to users and log root activity. The basic philosophy is to give
as few privileges as possible but still allow people to get their work done.
Package: libfreetype6
Priority: optional
Section: libs
Installed-Size: 724
Maintainer: Will Newton <[email protected]>
Architecture: i386
Source: freetype
Version: 2.1.10-1
Replaces: freetype0, freetype1
Depends: libc6 (>= 2.3.2.ds1-21), zlib1g (>= 1:1.2.1)
Suggests: libfreetype6-dev
Conflicts: freetype, xpdf-reader (<= 1.00-4)
Size: 419568
Description: FreeType 2 font engine, shared library files
The FreeType project is a team of volunteers who develop free,
portable and high-quality software solutions for digital typography.
They specifically target embedded systems and focus on bringing small,
efficient and ubiquitous products.
.
The FreeType 2 library is their new software font engine. It has been
designed to provide the following important features:
* A universal and simple API to manage font files
* Support for several font formats through loadable modules
* High-quality anti-aliasing
* High portability & performance
.
Supported font formats include:
* TrueType files (.ttf) and collections (.ttc)
* Type 1 font files both in ASCII (.pfa) or binary (.pfb) format
* Type 1 Multiple Master fonts. The FreeType 2 API also provides
routines to manage design instances easily
* Type 1 CID-keyed fonts
* OpenType/CFF (.otf) fonts
* CFF/Type 2 fonts
* Adobe CEF fonts (.cef), used to embed fonts in SVG documents with
the Adobe SVG viewer plugin.
* Windows FNT/FON bitmap fonts
.
This package contains the files needed to run programs that use the
FreeType 2 library.
.
Home Page: http://www.freetype.org/
Authors: David Turner <[email protected]>
Robert Wilhelm <[email protected]>
Werner Lemberg <[email protected]>
Package: debianutils
Essential: yes
Priority: required
Section: base
Installed-Size: 192
Maintainer: Clint Adams <[email protected]>
Architecture: i386
Version: 2.14.3
Replaces: miscutils, cron (<= 3.0pl1-31), tetex-bin (<= 1.0.6-1.1), manpages-fr (<= 0.9.3-1)
Depends: libc6 (>= 2.3.5-1), coreutils (>= 4.5.8-1)
Conflicts: manpages-fr (<= 0.9.3-1)
Size: 57466
Description: Miscellaneous utilities specific to Debian
This package provides a number of small utilities which are used
primarily by the installation scripts of Debian packages, although
you may use them directly.
.
The specific utilities included are: installkernel mkboot mktemp
run-parts savelog sensible-browser sensible-editor sensible-pager
tempfile which.
Package: libsysfs1
Priority: extra
Section: libs
Installed-Size: 92
Maintainer: Martin Pitt <[email protected]>
Architecture: i386
Source: sysfsutils
Version: 1.3.0-2
Depends: libc6 (>= 2.3.2.ds1-21)
Size: 27712
Description: interface library to sysfs
Sysfs is a virtual file system in Linux kernel 2.5+ that provides a
tree of system devices. libsysfs provides a stable programming
interface to sysfs and eases querying system devices and their
attributes.
.
The package sysfsutils contains frontend programs that use this
library. Development files and C examples are provided by the package
libsysfs-dev.
Package: libxml-parser-perl
Priority: optional
Section: perl
Installed-Size: 708
Maintainer: Debian XML/SGML Group <[email protected]>
Architecture: i386
Version: 2.34-4
Depends: perl (>= 5.8.4-4), perlapi-5.8.4, liburi-perl, libwww-perl, libc6 (>= 2.3.2.ds1-4), libexpat1 (>= 1.95.8)
Size: 292264
Description: Perl module for parsing XML files
This module provides ways to parse XML documents. It is built on top
of XML::Parser::Expat, which is a lower level interface to James
Clark's expat library. Each call to one of the parsing methods
creates a new instance of XML::Parser::Expat which is then used to
parse the document. Expat options may be provided when the
XML::Parser object is created. These options are then passed on to
the Expat object on each parse call. They can also be given as extra
arguments to the parse methods, in which case they override options
given at XML::Parser creation time.
.
The behavior of the parser is controlled either by Style and/or
Handlers options, or by setHandlers method. These all provide
mechanisms for XML::Parser to set the handlers needed by
XML::Parser::Expat. If neither Style nor Handlers are specified,
then parsing just checks the document for being well-formed.
.
When underlying handlers get called, they receive as their first
parameter the Expat object, not the Parser object.
Package: libxmuu1
Priority: optional
Section: libs
Installed-Size: 348
Maintainer: Debian X Strike Force <[email protected]>
Architecture: i386
Source: xorg-x11
Version: 6.8.2.dfsg.1-6
Replaces: xlibs (<= 4.3.0)
Depends: libc6 (>= 2.3.5-1)
Conflicts: xlibs (<= 4.3.0)
Size: 185568
Description: lightweight X Window System miscellaneous utility library
libXmuu is a very small set of miscellaneous utility functions extracted
from Xmu, Xt, and Xaw. This library is intended for X clients that need the
occasional useful function from these libraries but do not require the
toolkit overhead. To use libXmuu, simply include the headers for the other
libraries in the client and link against Xmuu instead of Xmu, Xt, and Xaw.
Needless to say, if the client uses functions from Xmu, Xt, or Xaw that are
not present in Xmuu, it will fail to link.
Package: gnome-terminal
Priority: optional
Section: gnome
Installed-Size: 392
Maintainer: Arnaud Patard <[email protected]>
Architecture: i386
Version: 2.10.0-2
Replaces: gnome-terminal2
Provides: x-terminal-emulator
Depends: libatk1.0-0 (>= 1.9.0), libbonobo2-0 (>= 2.8.0), libc6 (>= 2.3.2.ds1-21), libgconf2-4 (>= 2.9), libglade2-0 (>= 1:2.5.1), libglib2.0-0 (>= 2.6.0), libgnome2-0 (>= 2.8.0), libgnomeui-0 (>= 2.8.0), libgtk2.0-0 (>= 2.6.0), liborbit2 (>= 1:2.10.0), libpango1.0-0 (>= 1.8.1), libpopt0 (>= 1.7), libstartup-notification0 (>= 0.8-1), libvte4 (>= 1:0.11.11), libx11-6 | xlibs (>= 4.1.0), scrollkeeper (>= 0.3.14-5), gnome-control-center (>= 1:2.8.0), gnome-terminal-data (= 2.10.0-2)
Recommends: yelp
Conflicts: gnome-terminal2
Size: 160182
Description: The GNOME 2 terminal emulator application
GNOME Terminal is a terminal emulation application that you can use to
perform the following actions:
.
To access a UNIX shell in the GNOME environment.
.
To run any application that is designed to run on VT102, VT220, and xterm
terminals.
Package: libdb1-compat
Priority: required
Section: oldlibs
Installed-Size: 80
Maintainer: Colin Watson <[email protected]>
Architecture: i386
Source: db1-compat
Version: 2.1.3-8
Replaces: libc6 (<= 2.2.5-13), libc6.1 (<= 2.2.5-13), libc0.3 (<= 2.2.5-13)
Depends: libc6 (>= 2.3.5-1)
Size: 32968
Description: The Berkeley database routines [glibc 2.0/2.1 compatibility]
libdb is a library for manipulating database files, developed at Berkeley.
.
It supports three kinds of file formats:
* btree. A representation of a sorted, balanced tree structure.
* hashed. An extensible, dynamic hashing scheme.
* UNIX file oriented. A byte stream file with fixed or variable length
records.
.
This library exists for compatibility with applications built against
glibc 2.0 or 2.1. There is intentionally no corresponding development
package. Do not link new applications against this library!
Package: libxfce4util-1
Priority: optional
Section: libs
Installed-Size: 168
Maintainer: Debian Xfce Maintainers <[email protected]>
Architecture: i386
Source: libxfce4util
Version: 4.2.2-1
Replaces: libxfce4util-0
Depends: libc6 (>= 2.3.2.ds1-21), libglib2.0-0 (>= 2.6.0)
Conflicts: libxfce4util-0
Size: 49610
Description: Utility functions library for Xfce4
This package contains libxfce4util-1, the basic utility
function library for Xfce4. If you intend to run Xfce4,
you need this library.
.
Homepage: http://www.xfce.org/
Package: gdb
Priority: standard
Section: devel
Installed-Size: 5368
Maintainer: Daniel Jacobowitz <[email protected]>
Architecture: i386
Version: 6.3-6
Replaces: gdb-arm, insight (<= 6.1+cvs.2004.04.07-1)
Depends: libc6 (>= 2.3.2.ds1-21), libncurses5 (>= 5.4-1), libreadline4 (>= 4.3-1)
Conflicts: gdb-arm
Size: 2767820
Description: The GNU Debugger
GDB is a source-level debugger, capable of breaking programs at
any specific line, displaying variable values, and determining
where errors occurred. Currently, it works for C, C++, Fortran
Modula 2 and Java programs. A must-have for any serious
programmer.
Package: menu
Priority: optional
Section: admin
Installed-Size: 1628
Maintainer: Bill Allombert <[email protected]>
Architecture: i386
Version: 2.1.25
Depends: libc6 (>= 2.3.2.ds1-21), libgcc1 (>= 1:4.0.0-7), libstdc++5 (>= 1:3.3.4-1), dpkg (>= 1.10)
Suggests: gksu | kdebase-bin | sux
Size: 404226
Description: generates programs menu for all menu-aware applications
Debian menu keeps transparently the menus in the different
window-managers in sync with the list of installed programs.
.
Debian menu relies on a list of menu entries provided by programs
and a list of menu-methods provided by window-managers and other
menu-aware applications.
.
Menu provides system-level and user-level configuration and overrides
for both menu entries and menu-methods.
Package: gdm
Priority: optional
Section: gnome
Installed-Size: 8492
Maintainer: Ryan Murray <[email protected]>
Architecture: i386
Version: 2.6.0.8-1
Provides: x-display-manager
Depends: adduser, debconf (>= 0.5), dpkg (>= 1.9), libart-2.0-2 (>= 2.3.16), libatk1.0-0 (>= 1.7.2), libattr1 (>= 2.4.4-1), libbonobo2-0 (>= 2.8.0), libbonoboui2-0 (>= 2.5.4), libc6 (>= 2.3.2.ds1-4), libgconf2-4 (>= 2.8.1), libglade2-0 (>= 1:2.4.2-2), libglib2.0-0 (>= 2.6.0), libgnome2-0 (>= 2.8.0), libgnomecanvas2-0 (>= 2.6.0), libgnomeui-0 (>= 2.8.0), libgnomevfs2-0 (>= 2.8.3-7), libgtk2.0-0 (>= 2.6.0), libice6 | xlibs (>= 4.1.0), liborbit2 (>= 1:2.10.0), libpam0g (>= 0.76), libpango1.0-0 (>= 1.8.1), libpopt0 (>= 1.7), librsvg2-2 (>= 2.8.1), libselinux1 (>= 1.18), libsm6 | xlibs (>= 4.1.0), libwrap0, libx11-6 | xlibs (>= 4.1.0), libxext6 | xlibs (>= 4.1.0), libxi6 | xlibs (>= 4.1.0), libxml2 (>= 2.6.16), zlib1g (>= 1:1.2.1), libpam-modules (>= 0.72-1), libpam-runtime (>= 0.76-13.1), gnome-session | xterm | x-window-manager | x-terminal-emulator, xbase-clients, gksu (>= 1.0.7)
Recommends: whiptail | dialog, zenity
Suggests: locales, apmd, msttcorefonts
Conflicts: gdm2
Size: 3144130
Description: GNOME Display Manager
gdm provides the equivalent of a "login:" prompt for X displays- it
pops up a login window and starts an X session.
.
It provides all the functionality of xdm, including XDMCP support for
managing remote displays.
.
The greeting window is written using the GNOME libraries and hence
looks like a GNOME application- even to the extent of supporting
themes! By default, the greeter is run as an unprivileged user for
security.
Package: makedev
Priority: required
Section: base
Installed-Size: 156
Maintainer: Bdale Garbee <[email protected]>
Architecture: all
Version: 2.3.1-78
Depends: base-passwd (>= 3.0.4)
Conflicts: udev (<= 0.024-7)
Size: 40872
Description: creates device files in /dev
The MAKEDEV executable is used to create device files, often in /dev.
.
Device files are special files through which applications can interact
with hardware.
Package: xpdf-reader
Priority: optional
Section: text
Installed-Size: 1968
Maintainer: Hamish Moffatt <[email protected]>
Architecture: i386
Source: xpdf
Version: 3.01-1
Provides: pdf-viewer, postscript-preview
Depends: lesstif2, libc6 (>= 2.3.5-1), libfreetype6 (>= 2.1.5-1), libgcc1 (>= 1:4.0.1), libice6 | xlibs (>= 4.1.0), libpaper1, libsm6 | xlibs (>= 4.1.0), libstdc++6 (>= 4.0.1), libt1-5 (>= 5.0.2), libx11-6 | xlibs (>= 4.1.0), libxext6 | xlibs (>= 4.1.0), libxp6 | xlibs (>= 4.1.0), libxpm4 | xlibs (>= 4.1.0), libxt6 | xlibs (>= 4.1.0), zlib1g (>= 1:1.2.1), gsfonts (>= 6.0-1), xpdf-common (= 3.01-1)
Suggests: www-browser
Conflicts: xpdf-i (<= 0.90-8), xpdf (<= 0.93-6)
Size: 759594
Description: Portable Document Format (PDF) suite -- viewer for X11
xpdf is a suite of tools for Portable Document Format (PDF) files. (These are
sometimes called 'Acrobat' files after the name of Adobe's PDF software.)
.
This package contains xpdf itself, a PDF viewer for X11.
xpdf is designed to be small and efficient. xpdf supports encrypted
PDF files. Standard X fonts, Truetype fonts and Type 1 fonts are supported.
.
This package also contains pdftoppm, a utility for converting
PDF files to PBM, PGM and PPM formats.
.
See also the xpdf-utils package for conversion utilities and the
other xpdf-* packages for additional language support.
Package: laptop-detect
Priority: optional
Section: utils
Installed-Size: 12
Maintainer: Thom May <[email protected]>
Architecture: i386
Version: 0.12.1
Depends: dmidecode
Size: 2512
Description: attempt to detect a laptop
Laptop mode attempts to determine whether it is being run on a laptop or a
desktop and appraises its caller of this.
Package: libxml2
Priority: optional
Section: libs
Installed-Size: 1292
Maintainer: Debian XML/SGML Group <[email protected]>
Architecture: i386
Version: 2.6.20-1
Depends: libc6 (>= 2.3.2.ds1-21), zlib1g (>= 1:1.2.1)
Recommends: xml-core
Size: 646664
Description: GNOME XML library
XML is a metalanguage to let you design your own markup language.
A regular markup language defines a way to describe information in
a certain class of documents (eg HTML). XML lets you define your
own customized markup languages for many classes of document. It
can do this because it's written in SGML, the international standard
metalanguage for markup languages.
.
This package provides a library providing an extensive API to handle
such XML data files.
Package: telnet
Priority: standard
Section: net
Installed-Size: 136
Maintainer: Alberto Gonzalez Iniesta <[email protected]>
Architecture: i386
Source: netkit-telnet
Version: 0.17-30
Replaces: netstd
Provides: telnet-client
Depends: netbase, libc6 (>= 2.3.2.ds1-21), libgcc1 (>= 1:4.0.0-7), libncurses5 (>= 5.4-5), libstdc++5 (>= 1:3.3.4-1)
Size: 64312
Description: The telnet client
The telnet command is used for interactive communication with another host
using the TELNET protocol.
Package: login
Essential: yes
Priority: required
Section: base
Installed-Size: 1672
Maintainer: Shadow package maintainers <[email protected]>
Architecture: i386
Source: shadow
Version: 1:4.0.3-39
Replaces: shadow-login, shadow-passwd, shellutils (<= 2.0-2), manpages-fr, manpages-hu, manpages-it, manpages-ko, manpages-ja, manpages-pl (<= 20020406-1)
Depends: libpam-modules (>= 0.72-5)
Conflicts: shadow-login, pam-apps, secure-su, suidregister (<= 0.50)
Size: 579380
Description: system login tools
These tools are required to be able to login and use your system. The
login program invokes your user shell and enables command execution. The
newgrp program is used to change your effective group ID (useful for
workgroup type situations). The su program allows changing your effective
user ID (useful being able to execute commands as another user).
Package: libxfce4mcs-manager-2
Priority: optional
Section: libs
Installed-Size: 84
Maintainer: Debian Xfce Maintainers <[email protected]>
Architecture: i386
Source: libxfce4mcs
Version: 4.2.2-1
Replaces: libxfce4mcs-manager-0, libxfce4mcs-manager-1
Depends: libc6 (>= 2.3.2.ds1-21), libglib2.0-0 (>= 2.6.0), libice6 | xlibs (>= 4.1.0), libsm6 | xlibs (>= 4.1.0), libx11-6 | xlibs (>= 4.1.0), libxfce4util-1 (>= 4.2.0)
Conflicts: libxfce4mcs-manager-0, libxfce4mcs-manager-1
Size: 22746
Description: Manager library for Xfce4 configure interface
This package contains a library which provides basic functions
for the Xfce4 configuration tool.
.
If you intend to use Xfce4, you definetely want to install
this package.
.
Homepage: http://www.xfce.org/
Package: desktop-file-utils
Priority: optional
Section: devel
Installed-Size: 160
Maintainer: Ross Burton <[email protected]>
Architecture: i386
Version: 0.10-1
Depends: libc6 (>= 2.3.2.ds1-4), libglib2.0-0 (>= 2.6.0), libpopt0 (>= 1.7)
Size: 62190
Description: Utilities for .desktop files
Some utilities to make dealing with .desktop files easier:
* update-desktop-database -- update the desktop-MIME mapping
* desktop-file-validate -- validate a desktop file
* desktop-file-install -- install a desktop file, munging en route.
* desktop-menu-tool -- manipulate a desktop file
Package: libzvbi-common
Priority: optional
Section: libs
Installed-Size: 224
Maintainer: Christian Marillat <[email protected]>
Architecture: all
Source: zvbi
Version: 0.2.16-1
Replaces: libzvbi-0.1 (<= 0.2.1-3)
Size: 39420
Description: video Blank Interval decoder (VBI) - common files
The VBI devices capture the hidden lines on a television picture that carry
further information like closed-caption data, Teletext (primarily in
Europe), and now Intercast and the ATVEC Internet television encodings.
.
This package contains internationalization files.
Package: libvorbisfile3
Priority: optional
Section: libs
Installed-Size: 76
Maintainer: Christopher L Cheney <[email protected]>
Architecture: i386
Source: libvorbis
Version: 1.1.0-1
Replaces: libvorbis0 (<= 1.0.0)
Depends: libc6 (>= 2.3.2.ds1-4), libvorbis0a (>= 1.1.0)
Conflicts: libvorbis0 (<= 1.0.0)
Size: 18522
Description: The Vorbis General Audio Compression Codec
Ogg Vorbis is a fully open, non-proprietary, patent-and-royalty-free,
general-purpose compressed audio format for audio and music at fixed
and variable bitrates from 16 to 128 kbps/channel.
.
The Vorbisfile library provides a convenient high-level API for decoding
and basic manipulation of all Vorbis I audio streams.
Package: gettext-base
Priority: standard
Section: base
Installed-Size: 532
Maintainer: Santiago Vila <[email protected]>
Architecture: i386
Source: gettext
Version: 0.14.5-2
Replaces: gettext (<= 0.12.1-1)
Provides: libasprintf0c2
Depends: libc6 (>= 2.3.2.ds1-21)