OLD | NEW |
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
2 # Distributed under the terms of the GNU General Public License v2 | 2 # Distributed under the terms of the GNU General Public License v2 |
3 | 3 |
4 EAPI=2 | 4 EAPI=2 |
5 CROS_WORKON_COMMIT="ff2aa5802d64a3e11181f8eab2d31ecf6f1a0984" | 5 CROS_WORKON_COMMIT="e108e833baa49390a09b57907ebe8c0d3812deca" |
6 | 6 |
7 inherit cros-workon toolchain-funcs | 7 inherit cros-workon toolchain-funcs |
8 | 8 |
9 DESCRIPTION="Audio configuration files." | 9 DESCRIPTION="Audio configuration files." |
10 HOMEPAGE="http://src.chromium.org" | 10 HOMEPAGE="http://src.chromium.org" |
11 SRC_URI="" | 11 SRC_URI="" |
12 LICENSE="BSD" | 12 LICENSE="BSD" |
13 SLOT="0" | 13 SLOT="0" |
14 KEYWORDS="amd64 arm x86" | 14 KEYWORDS="amd64 arm x86" |
15 IUSE="" | 15 IUSE="" |
16 | 16 |
17 RDEPEND="" | 17 RDEPEND="" |
18 DEPEND="${RDEPEND}" | 18 DEPEND="${RDEPEND}" |
19 | 19 |
20 CROS_WORKON_PROJECT="audioconfig" | 20 CROS_WORKON_PROJECT="audioconfig" |
21 CROS_WORKON_LOCALNAME="${CROS_WORKON_PROJECT}" | 21 CROS_WORKON_LOCALNAME="${CROS_WORKON_PROJECT}" |
22 | 22 |
23 src_install() { | 23 src_install() { |
24 dodir /etc | 24 dodir /etc |
25 insinto /etc | 25 insinto /etc |
26 doins "${S}"/asound.conf | 26 doins "${S}"/asound.conf |
27 | 27 |
28 dodir /etc/pulse | 28 dodir /etc/pulse |
29 insinto /etc/pulse | 29 insinto /etc/pulse |
30 doins "${S}"/pulse/* | 30 doins "${S}"/pulse/* |
31 } | 31 } |
OLD | NEW |