-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path00-DETAILED-PACKAGES-LIST
2868 lines (2026 loc) · 86.1 KB
/
00-DETAILED-PACKAGES-LIST
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
#------- app-emulation/wineasio --------
wineasio-0.7.3 arch: ~x86 ~amd64
wineasio-0.7.4 arch: ~x86 ~amd64
wineasio-0.7.5 arch: ~x86 ~amd64
wineasio-0.9.0 arch: ~x86 ~amd64
wineasio-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: ASIO driver for WINE
Homepage: http://sourceforge.net/projects/wineasio
#------- app-portage/update_liveset --------
update_liveset-1.0 arch: ~alpha ~amd64 ~hppa ~ppc ~sparc ~x86 ~x86-fbsd
Description: update your live ebuild set
Homepage: http://proaudio.tuxfamily.org/wiki/index.php?title=Main_Page
#------- app-portage/euses --------
euses-2.5.9-r1 arch: ~alpha ~amd64 ~hppa ~ppc ~sparc ~x86 ~x86-fbsd
Description: look up USE flag descriptions fast
Homepage: http://www.xs4all.nl/~rooversj/gentoo
#------- dev-embedded/mios-studio-bin --------
mios-studio-bin-2.4.6 arch: -* ~amd64 ~x86
Description: uCApps.de MIOS Studio
Homepage: http://ucapps.de/
#------- dev-embedded/mios-studio --------
mios-studio-9999 arch: -* ~amd64 ~x86
Description: uCApps.de MIOS Studio
Homepage: http://ucapps.de/
#------- dev-lang/faust --------
faust-0.9.30 arch: ~x86 ~amd64
faust-0.9.58 arch: ~x86 ~amd64
Description: Faust AUdio STreams is a functional programming
language and compiler for fast DSP algorythms.
Homepage: http://faudiostream.sourceforge.net
#------- dev-libs/xerces-c --------
xerces-c-2.8.0-r1 arch: ~alpha ~amd64 ~hppa ppc ~ppc64 ~sparc ~x86 ~x86-fbsd
Description: A validating XML parser written in a portable
subset of C++.
Homepage: http://xerces.apache.org/xerces-c/
#------- dev-libs/icu --------
icu-3.6-r2 arch: alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd
Description: IBM Internationalization Components for Unicode
Homepage: http://ibm.com/software/globalization/icu/
#------- dev-libs/libinstpatch --------
libinstpatch-1.0.0 arch: ~amd64 ~ppc ~x86
libinstpatch-1.0.0_pre1 arch: ~amd64 x86 ~ppc
libinstpatch-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: sound font editor library ?
Homepage: http://swami.sourceforge.net/
#------- dev-libs/hidapi --------
hidapi-9999 arch: ~amd64 ~x86
Description: A multi-platform library for USB and Bluetooth
HID-Class devices
Homepage: http://www.signal11.us/oss/hidapi/
#------- dev-libs/serd --------
serd-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: lightweight C library for RDF syntax
Homepage: http://drobilla.net/software/serd
#------- dev-libs/rollendurchmesserzeitsammler --------
rollendurchmesserzeitsammler-0.1.6 arch: ~amd64 ~x86
Description: The Rollendurchmesserzeitsamler conservative
garbage collector for realtime audio
Homepage: http://users.notam02.no/~kjetism/rollendurchmesserzeitsammler/
#------- dev-libs/sord --------
sord-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: lightweight C library for storing RDF data
in memory
Homepage: http://drobilla.net/software/sord
#------- dev-libs/libwhy --------
libwhy-20121103 arch: ~amd64 ~x86
Description: A library for developing GTK+ audio applications
using Lua
Homepage: http://smbolton.com/linux/
#------- dev-libs/pcl --------
pcl-1.12 arch: ~amd64 ~x86
Description: Portable Coroutine Library (low level functionality
for coroutines
Homepage: http://xmailserver.org/libpcl.html
#------- dev-ml/ocaml-ogg --------
ocaml-ogg-0.4.3 arch: ~x86 ~amd64
Description: An OCaml interface for the Ogg Bitstream
Library
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-lo --------
ocaml-lo-0.1.0 arch: ~x86 ~amd64
Description: OCaml library supporting the OSC protocol
for external controls such as faders.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-lame --------
ocaml-lame-0.3.1 arch: ~x86 ~amd64
Description: OCaml bindings for the lame librar.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-ladspa --------
ocaml-ladspa-0.1.4 arch: ~x86 ~amd64
Description: OCaml interface for LADSPA audio plugins
library.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-voaacenc --------
ocaml-voaacenc-0.1.0 arch: ~x86 ~amd64
Description: OCaml interface for the VisualOn AAC+ encoding
library.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-gstreamer --------
ocaml-gstreamer-0.1.0 arch: ~x86 ~amd64
Description: OCaml interface for gstreamer.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-mad --------
ocaml-mad-0.4.4 arch: ~x86 ~amd64
Description: OCaml bindings for libmad.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-cry --------
ocaml-cry-0.2.2 arch: ~x86 ~amd64
Description: OCaml low level implementation of the shout
protocol.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-xmlplaylist --------
ocaml-xmlplaylist-0.1.3 arch: ~x86 ~amd64
Description: Ocaml parser for various xml playlists.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-bjack --------
ocaml-bjack-0.1.3 arch: ~x86 ~amd64
Description: OCaml blocking API for the jack audio connection
kit.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/biniou --------
biniou-1.0.0 arch: ~x86 ~amd64
Description: A binary data format designed for speed,
safety, ease of use and backward compatibility.
Homepage: http://mjambon.com/.html
#------- dev-ml/ocaml-soundtouch --------
ocaml-soundtouch-0.1.7 arch: ~x86 ~amd64
Description: OCaml interface for libsoundtouch.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-portaudio --------
ocaml-portaudio-0.2.0 arch: ~x86 ~amd64
Description: OCaml interface for the portable audio I/O
library.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-theora --------
ocaml-theora-0.3.0 arch: ~x86 ~amd64
Description: OCaml interface for Theora Video Compression
Codec Library.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-duppy --------
ocaml-duppy-0.4.2 arch: ~x86 ~amd64
Description: An advanced scheduler for Ocaml programmers.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-dssi --------
ocaml-dssi-0.1.0 arch: ~x86 ~amd64
Description: OCaml inteface to the DSSI standard for synthesizer
plugins.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-ao --------
ocaml-ao-0.2.0 arch: ~x86 ~amd64
Description: OCaml interface to libao.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/easy-format --------
easy-format-1.0.0 arch: ~x86 ~amd64
Description: A high-level and functional interface to
the Format module of the OCaml standard
library.
Homepage: http://mjambon.com/.html
#------- dev-ml/ocaml-lastfm --------
ocaml-lastfm-0.3.0 arch: ~x86 ~amd64
Description: OCaml interface for Lastfm API interface.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-mm --------
ocaml-mm-0.2.0 arch: ~x86 ~amd64
Description: A library dedicated to performing operations
on multimedia contents.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-pulseaudio --------
ocaml-pulseaudio-0.1.2 arch: ~x86 ~amd64
Description: OCaml interface for the PulseAudio client
library.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-taglib --------
ocaml-taglib-0.2.0 arch: ~x86 ~amd64
Description: OCaml interface for TagLib Audio Meta-Data
Library.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-faad --------
ocaml-faad-0.3.0 arch: ~x86 ~amd64
Description: Ocaml interface for the AAC audio decoder,
otherwise known as libfaad.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-samplerate --------
ocaml-samplerate-0.1.1 arch: ~x86 ~amd64
Description: OCaml .
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-vorbis --------
ocaml-vorbis-0.6.1 arch: ~x86 ~amd64
Description: OCaml bindings for the libvorbis.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-magic --------
ocaml-magic-0.7.3 arch: ~x86 ~amd64
Description: A binding to libmagic.
Homepage: http://.sourceforge.net/
#------- dev-ml/ocaml-aacplus --------
ocaml-aacplus-0.2.0 arch: ~x86 ~amd64
Description: OCaml interface for the AAC+ encoding library.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-dtools --------
ocaml-dtools-0.2.2 arch: ~x86 ~amd64
Description: OCaml deamon tools library.
Homepage: http://savonet.sourceforge.net
#------- dev-ml/yojson --------
yojson-1.0.3 arch: ~x86 ~amd64
Description: An optimized parsing and printing library
for the JSON format.
Homepage: http://mjambon.com/.html
#------- dev-ml/ocaml-speex --------
ocaml-speex-0.2.0 arch: ~x86 ~amd64
Description: OCaml interface for the Speex codec library.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-schroedinger --------
ocaml-schroedinger-0.1.0 arch: ~x86 ~amd64
Description: OCaml interface for library for encoding/decoding
of Dirac video streams.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/cppo --------
cppo-0.9.2 arch: ~x86 ~amd64
Description: Equivalent of the C preprocessor targeted
at the OCaml language and its variants.
Homepage: http://mjambon.com/.html
#------- dev-ml/ocaml-gavl --------
ocaml-gavl-0.1.4 arch: ~x86 ~amd64
Description: OCaml interface for Gmerlin Audio Video Library,
otherwise known as gavl.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-flac --------
ocaml-flac-0.1.0 arch: ~x86 ~amd64
Description: OCaml interface for the Free Lossless Audio
Codec.
Homepage: http://savonet.sourceforge.net/
#------- dev-ml/ocaml-alsa --------
ocaml-alsa-0.2.1 arch: ~x86 ~amd64
Description: OCaml bindings for alsa.
Homepage: http://savonet.sourceforge.net/
#------- dev-python/python-poppler-qt4 --------
python-poppler-qt4-0.16.2-r1 arch: ~amd64 ~x86 ~x86-fbsd
python-poppler-qt4-0.16.2 arch: ~amd64 ~x86 ~x86-fbsd
Description: Python bindings to the poppler-qt4
Homepage: http://code.google.com/p/python-poppler-qt4
#------- dev-python/PyOSC --------
PyOSC-2013.04.17 arch: ~amd64 ~x86
Description: Simple OSC (Open Sound Control) client code
for Python
Homepage: https://github.com/kaoskorobase/PyOSC
#------- dev-python/enum --------
enum-0.4.4 arch: ~amd64 x86
Description: Robust enumerated type support in Python.
Homepage: http://pypi.python.org/pypi/enum/
#------- dev-python/wmdocklib --------
wmdocklib-1.21-r1 arch: ~amd64 ~x86
wmdocklib-1.21 arch: amd64 x86
Description: Library for windowmaker dockapps using python.
Homepage: http://pywmdockapps.sourceforge.net/old-index.html
#------- dev-util/lv2-c++-tools --------
lv2-c++-tools-1.0.4 arch: amd64 ~x86
Description: some tools and libraries that may come in
handy when writing LV2 plugins
Homepage: http://ll-plugins.nongnu.org/hacking.html
#------- dev-util/faustworks --------
faustworks-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: IDE for the Faust dsp programming language
Homepage: http://www.fauste.grame.fr/
#------- dev-util/premake --------
premake-3.5-r1 arch: amd64 x86
premake-3.7-r1 arch: ~amd64 ~x86
premake-4.3-r1 arch: amd64 ~ppc x86
Description: A makefile generation tool
Homepage: http://industriousone.com/premake
#------- games-misc/linthesia --------
linthesia-0.4_p2 arch: ~amd64 ~x86
Description: A fork of Synthesia, A game of playing music!
You only need a MIDI file to play, and a MIDI
keyboard
Homepage: http://linthesia.sourceforge.net/
#------- media-libs/libgig --------
libgig-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: a C++ library for loading Gigasampler files
and DLS (Downloadable Sounds) Level 1/2 files.
Homepage: http://www.linuxsampler.org/libgig/
#------- media-libs/rtmidi --------
rtmidi-2.0.1 arch: ~amd64 ~x86
Description: RtMidi provide a common C++ API for realtime
MIDI input/output across ALSA and JACK.
Homepage: http://www.music.mcgill.ca/~gary/rtmidi/
#------- media-libs/alsaplayer-python --------
alsaplayer-python-0.3.1-r2 arch: ~x86 ~amd64
Description: New Python bindings for Alsaplayer.
Homepage: http://alsaplayer.sourceforge.net/
#------- media-libs/libclxclient --------
libclxclient-3.6.1 arch: ~amd64 ~ppc ~sparc ~x86
Description: An audio library by Fons Adriaensen <[email protected]>
Homepage: http://kokkinizita.linuxaudio.org/linuxaudio/
#------- media-libs/asio-sdk --------
asio-sdk-2.2 arch: x86 ~amd64
Description: Steinberg ASIO SDK 2.2 - win32
Homepage: http://www.steinberg.net/329+M52087573ab0.html
#------- media-libs/fidlib --------
fidlib-0.9.10-r1 arch: ~amd64 ~x86
Description: Run-time filter design and execution library
Homepage: http://uazu.net/fidlib/
#------- media-libs/zita-convolver --------
zita-convolver-2.0.0 arch: amd64 ~x86
zita-convolver-3.1.0 arch: ~amd64 ~x86
Description: A high performance audio signal convolver
library
Homepage: http://kokkinizita.linuxaudio.org/linuxaudio/
#------- media-libs/gmerlin --------
gmerlin-1.2.0 arch: ~amd64 ~x86
Description: Gmerlin A/V decoder library
Homepage: http://gmerlin.sourceforge.net/
#------- media-libs/libclthreads --------
libclthreads-2.4.0 arch: ~amd64 ~ppc ~sparc ~x86
Description: An audio library by Fons Adriaensen <[email protected]>
Homepage: http://kokkinizita.linuxaudio.org/linuxaudio/
#------- media-libs/pyphat --------
pyphat-0.4.1-r1 arch: ~amd64 ~x86
pyphat-0.4.1 arch: x86 amd64
pyphat-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: python binding for phat
Homepage: http://phat.berlios.de/
#------- media-libs/bml --------
bml-0.6.1 arch: ~amd64 ~x86
bml-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: Buzz Machines Loader for Buzztard
Homepage: http://www.buzztard.org
#------- media-libs/zita-alsa-pcmi --------
zita-alsa-pcmi-0.2.0 arch: ~amd64 ~x86
Description: Successor of clalsadrv. API providing easy
access to ALSA PCM devices
Homepage: http://kokkinizita.linuxaudio.org/linuxaudio/
#------- media-libs/suil --------
suil-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: lightweight C library for loading and wrapping
LV2 plugin UIs
Homepage: http://drobilla.net/software/suil
#------- media-libs/lv2 --------
lv2-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: A simple but extensible successor of LADSPA
Homepage: http://lv2plug.in/
#------- media-libs/zita-resampler --------
zita-resampler-1.3.0 arch: ~amd64 ~x86
Description: C++ library for real-time resampling of audio
signals
Homepage: http://kokkinizita.linuxaudio.org/linuxaudio/
#------- media-libs/gmerlin-avdecoder --------
gmerlin-avdecoder-1.2.0 arch: ~x86 ~amd64
Description: Gmerlin A/V decoder library
Homepage: http://gmerlin.sourceforge.net/
#------- media-libs/zynaddsubfx-collection --------
zynaddsubfx-collection-0.7 arch: ~amd64 ~ppc ~x86
Description: user contributed instruments for zynaddsubfx
Homepage: http://proaudio.tuxfamily.org/files
#------- media-libs/libshout-idjc --------
libshout-idjc-2.3.0 arch: ~amd64 ~x86
Description: Libshout-idjc is libshout plus some extensions
for IDJC
Homepage: http://sourceforge.net/projects/idjc/files/libshout-idjc/
#------- media-libs/lvtk --------
lvtk-1.1.0 arch: ~amd64 ~x86
lvtk-1.1.1 arch: ~amd64 ~x86
lvtk-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: A set C++ wrappers around the LV2 C API.
Homepage: http://lvtoolkit.org/
#------- media-libs/naspro-bridge-it --------
naspro-bridge-it-0.5.0 arch: ~amd64 ~x86
Description: A little helper library to develop insert-your-API-here
to LV2 bridges
Homepage: http://naspro.sourceforge.net/
#------- media-libs/lilv --------
lilv-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: C library to make the use of LV2 plugins
as simple as possible for applications.
Homepage: http://drobilla.net/software/lilv
#------- media-libs/gavl --------
gavl-1.4.0 arch: amd64 ~ppc ~ppc64 x86
Description: library for handling uncompressed audio and
video data
Homepage: http://gmerlin.sourceforge.net
#------- media-libs/joss --------
joss-0.3 arch: x86 ~amd64
Description: JACK sound wrapper for OSS applications
Homepage: http://www.craknet.net/joss
#------- media-libs/liblscp --------
liblscp-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: a C++ library for the Linux Sampler control
protocol.
Homepage: http://www.linuxsampler.org/
#------- media-libs/bsl --------
bsl-0.6.0 arch: ~x86
bsl-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: Buzz Song Loader for Buzztard
Homepage: http://www.buzztard.org
#------- media-libs/vst-sdk --------
vst-sdk-2.3-r3 arch: amd64 x86
vst-sdk-2.3-r4 arch: amd64 x86
Description: Steinberg VST Plug-Ins SDK 2.3 - win32
Homepage: http://ygrabit.steinberg.de/~ygrabit/public_html
#------- media-libs/fst --------
fst-1.6-r1 arch: -> live ebuild: [svn|cvs|...]<-
fst-1.6-r2 arch: -> live ebuild: [svn|cvs|...]<-
fst-1.7-r5 arch: x86
fst-1.8-r1 arch: x86
fst-1.8-r2 arch: x86
fst-1.8-r3 arch: x86
fst-1.8 arch: x86
fst-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: FreeST audio plugin VST container library
Homepage: http://joebutton.co.uk/fst/
#------- media-libs/pyliblo --------
pyliblo-0.8.1 arch: amd64 ~x86
pyliblo-0.9.1-r1 arch: ~amd64 ~x86
pyliblo-0.9.1 arch: ~amd64 ~x86
Description: A Python wrapper for the liblo OSC library
Homepage: http://das.nasophon.de/
#------- media-libs/hydrogen-drumkits --------
hydrogen-drumkits-0.3 arch: amd64 x86
hydrogen-drumkits-0.4 arch: amd64 x86
Description: free drumkits for hydrogen
Homepage: http://www.hydrogen-music.org
#------- media-libs/juce --------
juce-1.53 arch: ~x86 ~amd64
Description: JUCE is an all-encompassing C++ class library
for developing cross-platform applications.
Homepage: http://www.juce.com
#------- media-libs/libmusicxml --------
libmusicxml-2.00 arch: ~amd64 ~x86
Description: C++ support for the MusicXML support
Homepage: http://libmusicxml.sourceforge.net/
#------- media-libs/zynaddsubfx-extras --------
zynaddsubfx-extras-20060419 arch: ~amd64 ~ppc ~x86
zynaddsubfx-extras-20060615 arch: ~amd64 ~ppc ~x86
zynaddsubfx-extras-20101203 arch: ~amd64 ~ppc ~x86
zynaddsubfx-extras-99999999 arch: -> live ebuild: [svn|cvs|...]<-
Description: unsorted bank/instruments and parameters
for zynaddsubfx
Homepage: http://zynaddsubfx.sourceforge.net
#------- media-libs/zynaddsubfx-banks --------
zynaddsubfx-banks-2.2.1 arch: amd64 ppc x86
zynaddsubfx-banks-20060419 arch: amd64 ppc x86
zynaddsubfx-banks-20061031 arch: amd64 ppc x86
zynaddsubfx-banks-20090520 arch: amd64 ppc x86
zynaddsubfx-banks-99999999 arch: -> live ebuild: [svn|cvs|...]<-
Description: ZynAddSubFX banks/instruments
Homepage: http://zynaddsubfx.sourceforge.net/doc/instruments/
#------- media-libs/loris --------
loris-1.8 arch: ~x86 ~amd64
Description: libraries that provide support for the Resource
Description Framework (RDF)
Homepage: http://www.hakenaudio.com/Loris
#------- media-libs/libltc --------
libltc-1.1.1 arch: ~amd64 ~x86
libltc-9999 arch: ~amd64 ~x86
Description: Linear/Logitudinal Time Code (LTC) Library
Homepage: https://github.com/x42/libltc
#------- media-libs/stk --------
stk-4.3.1 arch: ~x86 ~amd64
stk-4.4.2 arch: ~amd64 ~x86
Description: Synthesis ToolKit in C++
Homepage: http://ccrma.stanford.edu/software/stk/
#------- media-libs/portaudio --------
portaudio-9999-r1 arch: -> live ebuild: [svn|cvs|...]<-
portaudio-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: An open-source cross platform audio API.
Homepage: http://www.portaudio.com/
#------- media-libs/phat --------
phat-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: Collection of GTK+ widgets geared toward
pro-audio apps.
Homepage: https://developer.berlios.de/projects/phat/
#------- media-libs/libffado --------
libffado-2.1.0-r1 arch: ~amd64 ~ppc ~x86
libffado-9999-r1 arch: -> live ebuild: [svn|cvs|...]<-
Description: Successor for freebob: Library for accessing
BeBoB IEEE1394 devices
Homepage: http://www.ffado.org
#------- media-libs/oscpack --------
oscpack-1.1.0.1 arch: ~amd64 ~ppc ~x86
Description: Set of C++ classes for packing and unpacking
OSC packets
Homepage: http://www.rossbencina.com/code/
#------- media-libs/ld10k1 --------
ld10k1-0.1.8 arch: x86 ~amd64
Description: EMU10K1 (EMU10K2) effect loader for ALSA
Homepage: http://ld10k1.sourceforge.net/
#------- media-libs/sratom --------
sratom-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: library for serialising LV2 atoms to/from
RDF
Homepage: http://drobilla.net/software/sratom
#------- media-libs/aften --------
aften-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: An A/52 (AC-3) audio encoder
Homepage: http://.sourceforge.net/
#------- media-libs/pyjack --------
pyjack-0.5.2 arch: ~amd64
Description: jack audio client module for python
Homepage: http://py-jack.sourceforge.net/
#------- media-libs/lv2dynparam1 --------
lv2dynparam1-1 arch: ~x86 ~amd64
lv2dynparam1-2 arch: ~x86 amd64
lv2dynparam1-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: LV2 dynparam extension
Homepage: http://home.gna.org/lv2dynparam/
#------- media-libs/libclam --------
libclam-1.4.0-r1 arch: ~amd64 ~x86
libclam-9999-r1 arch: -> live ebuild: [svn|cvs|...]<-
Description: Framework for research and application development
in the Audio and Music domain
Homepage: http://clam-project.org/index.html
#------- media-libs/lv2core --------
lv2core-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: LV2 is a simple but extensible successor
of LADSPA
Homepage: http://lv2plug.in/
#------- media-libs/raul --------
raul-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: Realtime Audio Utility Library in C++
Homepage: http://drobilla.net/software/raul
#------- media-libs/naspro-core --------
naspro-core-0.5.0 arch: ~amd64 ~x86
Description: Portable runtime library at the bottom of
the NASPRO Sound PROcessing Architecture
Homepage: http://naspro.sourceforge.net/
#------- media-libs/aubio --------
aubio-0.3.2-r2 arch: ~amd64 ~x86
Description: Library for audio labelling
Homepage: http://aubio.piem.org
#------- media-plugins/sisco-lv2 --------
sisco-lv2-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: Simple LV2 audio oscilloscope
Homepage: http://x42.github.io/sisco.lv2
#------- media-plugins/convoLV2 --------
convoLV2-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: convoLV2 is a lv2 plugin to convolve audio
signals
Homepage: http://github.com/x42/convoLV2
#------- media-plugins/csa --------
csa-0.5.100810 arch: ~amd64
Description: Control Signal Audio. A group of LADSPA Audio
plugins for FM broadcast and more
Homepage: http://csa.sourceforge.net/index/index_en.html
#------- media-plugins/midifilter-lv2 --------
midifilter-lv2-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: LV2 plugins to filter MIDI events
Homepage: http://github.com/x42/midifilter.lv2
#------- media-plugins/wah-plugins --------
wah-plugins-0.0.2 arch: amd64 x86
Description: Auto-WAH plugin.
Homepage: http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/index.html
#------- media-plugins/preamp --------
preamp-2.0 arch: x86 amd64
Description: preamp LADSPA plugins
Homepage: http://quitte.de/dsp/preamp.html
#------- media-plugins/sineshaper --------
sineshaper-0.4.2 arch: x86 ~amd64
Description: A monophonic synth plugin that sends the
sound from two sine oscillators through
two sine waveshapers in series (DSSI-Plugin)
Homepage: http://www.student.nada.kth.se/~d00-llu/music_dssi.php?lang=en
#------- media-plugins/oscilloscope --------
oscilloscope-0.2.1 arch: x86 ~amd64
Description: An oscilloscope (DSSI-Plugin)
Homepage: http://www.student.nada.kth.se/~d00-llu/music_dssi.php?lang=en
#------- media-plugins/vcf --------
vcf-0.0.5 arch: ~x86
Description: VCF LADSPA plugin filters
Homepage: http://www.suse.de/~mana/ladspa.html
#------- media-plugins/invada-studio-plugins --------
invada-studio-plugins-0.3.1 arch: amd64 ~x86
Description: Invada ladspa package, contains: Compressor,
Filters, Reverb, Input Processor, Tube Simulator
Homepage: https://launchpad.net/invada-studio/ladspa
#------- media-plugins/naspro-bridges --------
naspro-bridges-0.5.0 arch: ~amd64 ~x86
Description: A collection of bridges to LV2 which allows
use of LADSPA and DSSI plugins in LV2 hosts
Homepage: http://naspro.sourceforge.net/
#------- media-plugins/balance-lv2 --------
balance-lv2-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: Stereo balance control with optional per
channel delay
Homepage: http://github.com/x42/balance.lv2
#------- media-plugins/amb-plugins --------
amb-plugins-0.8.1 arch: amd64 x86
Description: AMB-plugins ladspa plugin package. Filters
by Fons Adriaensen
Homepage: http://kokkinizita.linuxaudio.org/linuxaudio/
#------- media-plugins/ir_lv2 --------
ir_lv2-1.2.2 arch: ~amd64 ~x86
ir_lv2-1.3.2 arch: ~amd64 ~x86
Description: LV2 convolver plugin especially for creating
reverb effects
Homepage: http://factorial.hu/plugins/lv2/ir
#------- media-plugins/xfade-lv2 --------
xfade-lv2-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: Stereo DJ X-fade
Homepage: http://github.com/x42/xfade.lv2
#------- media-plugins/mda-lv2 --------
mda-lv2-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: LV2 port of the MDA plugins by Paul Kellett
Homepage: http://drobilla.net/software/mda-lv2
#------- media-plugins/invada-studio-plugins-lv2 --------
invada-studio-plugins-lv2-1.2.0.0 arch: amd64
Description: Invada lv2 package, contains: Delay, Dynamics,
Filters, Reverb, Utility
Homepage: https://lauchpad.net/invada-studio/lv2
#------- media-plugins/ll-plugins --------
ll-plugins-0.2.8 arch: amd64
ll-plugins-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: collection of LV2 plugins, LV2 extension
definitions, and LV2 related tools
Homepage: http://ll-plugins.nongnu.org
#------- media-plugins/distrho --------
distrho-20120518 arch: ~amd64 ~x86
Description: Open-source project that provides Cross-Platform
Audio Plugins using Juce and Qt4
Homepage: http://distrho.sourceforge.net/
#------- media-plugins/ste-plugins --------
ste-plugins-0.0.2 arch: ~amd64 ~x86
Description: STE LADSPA plugins package. Includes stereo
panner and width adjuster.
Homepage: http://kokkinizita.linuxaudio.org/linuxaudio/
#------- media-plugins/gst-buzztard --------
gst-buzztard-0.6.0 arch: ~amd64 ~x86
gst-buzztard-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: GStreamer plugin used by Buzztard
Homepage: http://www.buzztard.org
#------- media-plugins/azr3-lv2 --------
azr3-lv2-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: AZR3
Homepage:
#------- media-plugins/meters-lv2 --------
meters-lv2-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: A colletion of audio level meters with GUI
in LV2 plugin format
Homepage: http://github.com/x42/meters.lv2
#------- media-plugins/calf --------
calf-0.0.19 arch: ~amd64 ~x86
calf-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: A set of open source instruments and effects
for digital audio workstations
Homepage: http://calf.sf.net/
#------- media-plugins/nodelay-lv2 --------
nodelay-lv2-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: LV2 audio delay line with latency reporting
Homepage: http://github.com/x42/nodelay.lv2
#------- media-plugins/buzzmachines --------
buzzmachines-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: Machines for Buzztard
Homepage: http://www.buzztard.org
#------- media-plugins/foo-plugins --------
foo-plugins-1.2 arch: amd64 x86
Description: foo-plugins for ladspa
Homepage: http://code.google.com/p/foo-plugins/
#------- media-plugins/mixtri-lv2 --------
mixtri-lv2-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: MixTri(x) is a matrix mixer and trigger processor
intended to de used with sisco-lv2
Homepage: http://x42.github.io/mixtri.lv2
#------- media-plugins/holap --------
holap-2012.10.26 arch: ~amd64 ~x86
Description: Holborn Audio Plugins: DSSI and LADSPA audio
plugins, including DSP effects and a FM synthesizer
Homepage: http://holap.berlios.de/index.html
#------- media-plugins/caps-plugins --------
caps-plugins-0.9.7 arch: ~amd64 ~x86
Description: The CAPS Audio Plugin Suite - LADSPA plugin
suite
Homepage: http://quitte.de/dsp/caps.html
#------- media-plugins/eq10q --------
eq10q-1.2 arch: ~amd64
Description: An LV2 audio plugin implementing a powerful
and flexible parametric equalizer
Homepage: http://eq10q.sourceforge.net/
#------- media-plugins/tuna-lv2 --------
tuna-lv2-9999 arch: -> live ebuild: [svn|cvs|...]<-
Description: A musical instrument tuner with strobe characteristic
in LV2 plugin formt
Homepage: http://github.com/x42/tuna.lv2
#------- media-plugins/triceratops-lv2 --------
triceratops-lv2-0.1.1d arch: ~amd64
triceratops-lv2-0.1.7 arch: ~amd64
Description: Triceratops is a polyphonic subtractive synthesizer
plugin for use with the LV2 architecture
Homepage: http://sourceforge.net/projects/triceratops/
#------- media-plugins/wasp --------
wasp-0.1.4 arch: amd64 x86
Description: Wave Sculpting LADSPA audio plugins/effects
Homepage: http://linux01.gwdg.de/~nlissne/wasp/