aboutsummaryrefslogtreecommitdiff
blob: 81713d302ea048441c35639744c61ee0fd470625 (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit distutils

DESCRIPTION="Wrappers for accessing the ALSA API from Python"
HOMEPAGE="http://www.wilstrup.net/pyalsaaudio/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"

LICENSE="PSF-2.2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""

DEPEND="media-libs/alsa-lib"

RESTRICT="mirror"

# test files
TESTFILES="mixertest.py playbacktest.py recordtest.py test.py"

src_install() {
	distutils_src_install
	# html documentation
	dohtml -A tex -r doc/*
	# copy examples and test files
	dodir /usr/share/${PN}
	cp ${TESTFILES} ${D}/usr/share/${PN}
}