A Working Pianobar Ebuild
by Will on 10/04/2011Thanks to Ted: There is a working ebuild for media-sound/pianobar. Make sure you add this one to ‘/usr/local/portage/media-sound’. (A great replacement to the flash based Pandora radio).
|
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 |
<code># Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=3 #EAPI="2" inherit git DESCRIPTION="A free, MIT-licensed replacement for pandora's flash player." HOMEPAGE="http://uint16.ath.cx/software/pandora_client.en.html" SRC_URI="" EGIT_REPO_URI="git://github.com/PromyLOPh/pianobar.git" LICENSE="MIT" SLOT="0" KEYWORDS="x86 ~amd64" IUSE="alsa esd network oss pulseaudio" DEPEND="media-libs/libao net-misc/curl media-libs/faad2 media-libs/libmad dev-libs/libxml2" RDEPEND="alsa? ( media-libs/alsa-lib ) esd? ( media-sound/esound ) pulseaudio? ( media-sound/pulseaudio )" src_compile() { emake || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "emake install failed." dodoc AUTHORS README COPYING }</code> |