1 | # $Id: Portfile 30219 2007-10-22 22:40:35Z jmpp@macports.org $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name ices0 |
---|
5 | version 0.4 |
---|
6 | categories audio net |
---|
7 | maintainers nomaintainer |
---|
8 | description Stream audio to an icecast server |
---|
9 | long_description \ |
---|
10 | source client for broadcasting in MP3 format to an icecast2 server |
---|
11 | homepage http://icecast.org/ices.php |
---|
12 | platforms darwin |
---|
13 | |
---|
14 | master_sites http://downloads.us.xiph.org/releases/ices/ |
---|
15 | distname ices-${version} |
---|
16 | checksums md5 d31450c4011561dae0229f071cb41cb6 |
---|
17 | |
---|
18 | depends_build bin:pkg-config:pkgconfig |
---|
19 | depends_lib port:libxml2 \ |
---|
20 | lib:libmp3lame.0:lame \ |
---|
21 | lib:libshout.3:libshout2 |
---|
22 | |
---|
23 | configure.args --program-suffix=0 \ |
---|
24 | --with-docdir=${prefix}/share/doc \ |
---|
25 | --mandir=${prefix}/share/man \ |
---|
26 | --without-python \ |
---|
27 | --without-perl |
---|
28 | |
---|
29 | variant python { |
---|
30 | configure.args-delete --without-python |
---|
31 | configure.args-append --with-python |
---|
32 | depends_lib-append port:python25 |
---|
33 | } |
---|
34 | |
---|
35 | variant perl { |
---|
36 | configure.args-delete --without-perl |
---|
37 | configure.args-append --with-perl |
---|
38 | depends_lib-append port:perl5.8 |
---|
39 | } |
---|