Revision: 75791 http://trac.macports.org/changeset/75791 Author: ryandesign@macports.org Date: 2011-02-08 12:06:01 -0800 (Tue, 08 Feb 2011) Log Message: ----------- darkice: new port, version 1.0; see #24867 Added Paths: ----------- trunk/dports/audio/darkice/ trunk/dports/audio/darkice/Portfile Added: trunk/dports/audio/darkice/Portfile =================================================================== --- trunk/dports/audio/darkice/Portfile (rev 0) +++ trunk/dports/audio/darkice/Portfile 2011-02-08 20:06:01 UTC (rev 75791) @@ -0,0 +1,73 @@ +# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 +# $Id$ + +PortSystem 1.0 + +name darkice +version 1.0 +categories audio +platforms darwin freebsd +maintainers syndicat.com:nd + +description live audio encoder and streamer + +long_description DarkIce is a live audio streamer. It records audio from \ + an audio interface (e.g. sound card), encodes it and \ + sends it to a streaming server (i.e. IceCast, ShoutCast...). + +homepage http://www.darkice.org/ +master_sites googlecode \ + ${homepage}download/ + +checksums sha1 dcf9b16f9421c57d5c4afdc601a5a482aa815028 \ + rmd160 644fa78893ff566f6967265212f151dc658bca34 + +default_variants +jack +lame + +variant jack description {Add JACK Audio connectivity} { + depends_lib-append \ + port:jack + configure.args-append \ + --with-jack-prefix=${prefix} \ + --with-jack +} + +variant lame description {Add LAME encoding} { + depends_lib-append \ + port:lame + configure.args-append \ + --with-lame-prefix=${prefix} \ + --with-lame +} + +variant twolame description {Add TWOLAME encoding} { + depends_lib-append \ + port:twolame + configure.args-append \ + --with-twolame-prefix=${prefix} \ + --with-twolame +} + +variant faac description {Add FAAC encoding} { + depends_lib-append \ + port:faac + configure.args-append \ + --with-faac-prefix=${prefix} \ + --with-faac +} + +variant vorbis description {Add OGG-VORBIS encoding} { + depends_lib-append \ + port:libvorbis + configure.args-append \ + --with-vorbis-prefix=${prefix} \ + --with-vorbis +} + +variant samplerate description {Add Samplerate encoding} { + depends_lib-append \ + port:libsamplerate + configure.args-append \ + --with-samplerate-prefix=${prefix} \ + --with-samplerate +} Property changes on: trunk/dports/audio/darkice/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native
participants (1)
-
ryandesign@macports.org