81 lines
2.4 KiB
Bash
81 lines
2.4 KiB
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.124.1.ebuild,v 1.2 2015/01/29 18:52:33 mgorny Exp $
|
|
|
|
EAPI=5
|
|
|
|
inherit flag-o-matic eutils multilib multilib-minimal
|
|
|
|
DESCRIPTION="A low-latency audio server"
|
|
HOMEPAGE="http://www.jackaudio.org"
|
|
SRC_URI="http://www.jackaudio.org/downloads/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2 LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd"
|
|
IUSE="cpu_flags_x86_3dnow altivec alsa coreaudio doc debug examples oss cpu_flags_x86_sse cpudetection pam"
|
|
|
|
# readline: only used for jack_transport -> useless for non native ABIs
|
|
# libsndfile: ditto for jackrec
|
|
RDEPEND="
|
|
sys-libs/readline
|
|
>=media-libs/libsndfile-1.0.0
|
|
alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] )
|
|
>=media-libs/libsamplerate-0.1.8-r1[${MULTILIB_USEDEP}]
|
|
!media-sound/jack-cvs
|
|
abi_x86_32? ( !<=app-emulation/emul-linux-x86-soundlibs-20130224-r7
|
|
!app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)] )"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig
|
|
doc? ( app-doc/doxygen )"
|
|
RDEPEND="${RDEPEND}
|
|
alsa? ( sys-process/lsof )
|
|
pam? ( sys-auth/realtime-base )"
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}/${PN}-sparc-cpuinfo.patch"
|
|
epatch "${FILESDIR}/${PN}-freebsd.patch"
|
|
}
|
|
|
|
DOCS=( AUTHORS TODO README )
|
|
|
|
multilib_src_configure() {
|
|
local myconf=""
|
|
|
|
# CPU Detection (dynsimd) uses asm routines which requires 3dnow, mmx and sse.
|
|
if use cpudetection && use cpu_flags_x86_3dnow && use cpu_flags_x86_sse ; then
|
|
einfo "Enabling cpudetection (dynsimd). Adding -mmmx, -msse, -m3dnow and -O2 to CFLAGS."
|
|
myconf="${myconf} --enable-dynsimd"
|
|
append-flags -mmmx -msse -m3dnow -O2
|
|
fi
|
|
|
|
use doc || export ac_cv_prog_HAVE_DOXYGEN=false
|
|
|
|
ECONF_SOURCE="${S}" econf \
|
|
$(use_enable altivec) \
|
|
$(use_enable alsa) \
|
|
$(use_enable coreaudio) \
|
|
$(use_enable debug) \
|
|
$(use_enable oss) \
|
|
--disable-portaudio \
|
|
$(use_enable cpu_flags_x86_sse sse) \
|
|
--with-html-dir=/usr/share/doc/${PF} \
|
|
--disable-dependency-tracking \
|
|
--libdir=/usr/$(get_libdir) \
|
|
${myconf}
|
|
|
|
if [ "${ABI}" != "${DEFAULT_ABI}" ] ; then
|
|
for i in tools man ; do
|
|
sed -i -e "s/ ${i}//" Makefile || die
|
|
done
|
|
fi
|
|
}
|
|
|
|
multilib_src_install_all() {
|
|
einstalldocs
|
|
if use examples; then
|
|
insinto /usr/share/doc/${PF}
|
|
doins -r "${S}/example-clients"
|
|
docompress -x /usr/share/doc/${PF}/example-clients
|
|
fi
|
|
}
|