blob: ad74b8c3b48aec28894653d8afea033b9a416397 (
plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/squeezeslave/squeezeslave-1.1_p381.ebuild,v 1.1 2012/11/24 12:29:28 radhermit Exp $
EAPI="5"
inherit eutils toolchain-funcs
DESCRIPTION="A lightweight streaming audio player for Logitech Media Server"
HOMEPAGE="http://squeezeslave.googlecode.com"
SRC_URI="http://dev.gentoo.org/~radhermit/dist/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="aac +alsa display tremor wma zones"
RDEPEND="media-libs/libmad
media-libs/flac
tremor? ( media-libs/tremor )
!tremor? ( media-libs/libvorbis )
media-libs/libogg
media-libs/portaudio[alsa?]
aac? ( virtual/ffmpeg )
wma? ( virtual/ffmpeg )
display? ( app-misc/lirc )"
DEPEND="${RDEPEND}
app-arch/xz-utils
virtual/pkgconfig"
src_prepare() {
epatch "${FILESDIR}"/${PN}-1.1_p350-tremor-headers.patch
}
src_compile() {
tc-export CC AR RANLIB
local myconf
for i in aac display tremor wma zones ; do
use $i && myconf+=" $i=1"
done
emake ${myconf}
}
src_install() {
dobin bin/${PN}
dodoc ChangeLog TODO
newconfd "${FILESDIR}"/${PN}.confd-r1 ${PN}
newinitd "${FILESDIR}"/${PN}.initd-r1 ${PN}
}
|