31 lines
756 B
Bash
31 lines
756 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyalsa/pyalsa-1.0.25.ebuild,v 1.7 2012/04/01 14:58:50 armin76 Exp $
|
|
|
|
EAPI="2"
|
|
PYTHON_DEPEND="2"
|
|
SUPPORT_PYTHON_ABIS="1"
|
|
RESTRICT_PYTHON_ABIS="3.* *-jython"
|
|
|
|
inherit distutils eutils
|
|
|
|
DESCRIPTION="Python bindings for ALSA library"
|
|
HOMEPAGE="http://alsa-project.org/"
|
|
SRC_URI="mirror://alsaproject/pyalsa/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ppc ppc64 sparc x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="media-libs/alsa-lib"
|
|
DEPEND="${RDEPEND}
|
|
dev-python/setuptools"
|
|
|
|
PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
|
|
|
|
src_prepare() {
|
|
distutils_src_prepare
|
|
|
|
epatch "${FILESDIR}/${P}-no-build-symlinks.patch"
|
|
}
|