1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name darkice |
---|
6 | version 1.0 |
---|
7 | categories audio |
---|
8 | maintainers syndicat.com:nd |
---|
9 | description live audio encoder and streamer |
---|
10 | long_description DarkIce is a live audio streamer. It records audio from an audio interface \ |
---|
11 | (e.g. sound card), encodes it and sends it to a streaming server (i.e. IceCast, ShoutCast...). |
---|
12 | |
---|
13 | homepage http://www.darkice.org/ |
---|
14 | platforms darwin freebsd |
---|
15 | master_sites http://darkice.googlecode.com/files/ \ |
---|
16 | http://darkice.org/download/ |
---|
17 | |
---|
18 | checksums md5 1804e63d42a9703d01fe378c9a77c473 \ |
---|
19 | sha1 dcf9b16f9421c57d5c4afdc601a5a482aa815028 \ |
---|
20 | rmd160 644fa78893ff566f6967265212f151dc658bca34 |
---|
21 | |
---|
22 | |
---|
23 | configure.args --mandir=${prefix}/share/man |
---|
24 | |
---|
25 | default_variants +jack +lame |
---|
26 | |
---|
27 | |
---|
28 | variant jack description {Add JACK Audio connectivity} { |
---|
29 | depends_lib-append \ |
---|
30 | port:jack |
---|
31 | configure.args-append \ |
---|
32 | --with-jack-prefix=${prefix} \ |
---|
33 | --with-jack |
---|
34 | } |
---|
35 | |
---|
36 | variant lame description {Add LAME encoding} { |
---|
37 | depends_lib-append \ |
---|
38 | port:lame |
---|
39 | configure.args-append \ |
---|
40 | --with-lame-prefix=${prefix} \ |
---|
41 | --with-lame |
---|
42 | } |
---|
43 | |
---|
44 | variant twolame description {Add TWOLAME encoding} { |
---|
45 | depends_lib-append \ |
---|
46 | port:twolame |
---|
47 | configure.args-append \ |
---|
48 | --with-twolame-prefix=${prefix} \ |
---|
49 | --with-twolame |
---|
50 | } |
---|
51 | |
---|
52 | variant faac description {Add FAAC encoding} { |
---|
53 | depends_lib-append \ |
---|
54 | port:faac |
---|
55 | configure.args-append \ |
---|
56 | --with-faac-prefix=${prefix} \ |
---|
57 | --with-faac |
---|
58 | } |
---|
59 | |
---|
60 | variant vorbis description {Add OGG-VORBIS encoding} { |
---|
61 | depends_lib-append \ |
---|
62 | port:libvorbis |
---|
63 | configure.args-append \ |
---|
64 | --with-vorbis-prefix=${prefix} \ |
---|
65 | --with-vorbis |
---|
66 | } |
---|
67 | |
---|
68 | variant samplerate description {Add Samplerate encoding} { |
---|
69 | depends_lib-append \ |
---|
70 | port:libsamplerate |
---|
71 | configure.args-append \ |
---|
72 | --with-samplerate-prefix=${prefix} \ |
---|
73 | --with-samplerate |
---|
74 | } |
---|
75 | |
---|