Ticket #24867: Portfile.3

File Portfile.3, 2.4 KB (added by nielsd (Niels Dettenbach), 13 years ago)

updated Portfile (just some cosmetics and typo removed)

Line 
1# $Id$
2
3PortSystem          1.0
4
5name                darkice
6version             1.0
7categories          audio
8maintainers         syndicat.com:nd
9description         live audio encoder and streamer
10long_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
13homepage            http://www.darkice.org/
14platforms           darwin freebsd
15master_sites        http://darkice.googlecode.com/files/ \
16                    http://darkice.org/download/
17
18checksums           md5     1804e63d42a9703d01fe378c9a77c473 \
19                    sha1    dcf9b16f9421c57d5c4afdc601a5a482aa815028 \
20                    rmd160  644fa78893ff566f6967265212f151dc658bca34
21
22
23configure.args      --mandir=${prefix}/share/man
24
25default_variants    +jack +lame
26
27
28variant 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
36variant 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
44variant 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
52variant 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
60variant 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
68variant 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