35 lines
966 B
Bash
35 lines
966 B
Bash
|
# Copyright 1999-2011 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: /var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20110928.ebuild,v 1.4 2011/10/16 12:09:34 ssuominen Exp $
|
||
|
|
||
|
EAPI="4"
|
||
|
|
||
|
inherit emul-linux-x86
|
||
|
|
||
|
LICENSE="as-is BSD FDL-1.2 GPL-2 LGPL-2 LGPL-2.1 gsm public-domain"
|
||
|
KEYWORDS="-* amd64"
|
||
|
IUSE="alsa pulseaudio"
|
||
|
|
||
|
RDEPEND="pulseaudio? ( media-sound/pulseaudio )
|
||
|
~app-emulation/emul-linux-x86-baselibs-${PV}
|
||
|
~app-emulation/emul-linux-x86-medialibs-${PV}"
|
||
|
|
||
|
QA_DT_HASH="usr/lib32/.*"
|
||
|
|
||
|
src_prepare() {
|
||
|
_ALLOWED="${S}/etc/env.d"
|
||
|
use alsa && _ALLOWED="${_ALLOWED}|${S}/usr/bin/aoss"
|
||
|
ALLOWED="(${_ALLOWED})"
|
||
|
|
||
|
emul-linux-x86_src_prepare
|
||
|
|
||
|
if use alsa; then
|
||
|
mv -f "${S}"/usr/bin/aoss{,32} || die
|
||
|
fi
|
||
|
|
||
|
# libs without the rest of pulseaudio cause problems, bug 302003
|
||
|
if ! use pulseaudio; then
|
||
|
rm -rf $(find "${S}" -name '*pulse*' -not -name '*impulse*') || die
|
||
|
fi
|
||
|
}
|