blob: aa108d3d95400c766bc01e8f55f50159fcb307cf (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libbs2b/libbs2b-3.0.0.ebuild,v 1.5 2009/05/20 05:09:34 jer Exp $
inherit base
DESCRIPTION="Bauer stereophonic-to-binaural DSP library"
HOMEPAGE="http://bs2b.sourceforge.net/"
SRC_URI="mirror://sourceforge/bs2b/${P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd"
IUSE=""
RDEPEND="media-libs/libsndfile"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
PATCHES=("${FILESDIR}/${P}-freebsd.patch")
src_install()
{
emake install DESTDIR="${D}" || die "emake install failed"
}
|