blob: 2c772cb5c4e3d20805ca76a52c4b005fa4efbd7e (
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
53
54
55
56
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/rtaudio/rtaudio-4.0.11.ebuild,v 1.1 2012/11/27 07:35:52 radhermit Exp $
EAPI=5
inherit eutils autotools
DESCRIPTION="A set of cross-platform C++ classes for realtime audio I/O"
HOMEPAGE="http://www.music.mcgill.ca/~gary/rtaudio/"
SRC_URI="http://www.music.mcgill.ca/~gary/${PN}/release/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="alsa doc jack pulseaudio static-libs"
RDEPEND="alsa? ( media-libs/alsa-lib )
jack? ( media-sound/jack-audio-connection-kit )
pulseaudio? ( media-sound/pulseaudio )"
DEPEND="${RDEPEND}"
src_prepare() {
epatch "${FILESDIR}"/${P}-cflags.patch
epatch "${FILESDIR}"/${P}-makefile.patch
epatch "${FILESDIR}"/${P}-configure.patch
if ! use static-libs ; then
sed -i '/^LIBRARIES =/s/$(STATIC)//' Makefile.in || die
fi
eautoreconf
}
src_configure() {
# OSS support requires OSSv4
econf \
--without-oss \
$(use_with alsa) \
$(use_with jack) \
$(use_with pulseaudio pulse)
}
src_install() {
dolib.so librtaudio.so*
use static-libs && dolib.a librtaudio.a
dobin rtaudio-config
doheader *.h
dodoc readme doc/release.txt
if use doc ; then
dohtml -r doc/html/*
dodoc -r doc/images
fi
}
|