OLD | NEW |
1 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2009 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="e31a6e9592486e4ea635b8c4beb28553267e6607" | 5 CROS_WORKON_COMMIT="c5f214a66a742c49dfb5128876fa0bf82a82e00d" |
| 6 |
6 inherit cros-workon | 7 inherit cros-workon |
7 | 8 |
8 DESCRIPTION="Chrome OS ACPI Scripts" | 9 DESCRIPTION="Chrome OS ACPI Scripts" |
9 HOMEPAGE="http://src.chromium.org" | 10 HOMEPAGE="http://src.chromium.org" |
10 SRC_URI="" | 11 SRC_URI="" |
11 LICENSE="BSD" | 12 LICENSE="BSD" |
12 SLOT="0" | 13 SLOT="0" |
13 KEYWORDS="amd64 x86" | 14 KEYWORDS="amd64 x86" |
14 IUSE="" | 15 IUSE="" |
15 | 16 |
16 DEPEND="" | 17 DEPEND="" |
17 | 18 |
18 RDEPEND="sys-power/acpid" | 19 RDEPEND="sys-power/acpid" |
19 | 20 |
20 CROS_WORKON_LOCALNAME="acpi" | 21 CROS_WORKON_LOCALNAME="acpi" |
21 CROS_WORKON_PROJECT="acpi" | 22 CROS_WORKON_PROJECT="acpi" |
22 | 23 |
23 src_install() { | 24 src_install() { |
24 dodir /etc/acpi/events | 25 dodir /etc/acpi/events |
25 dodir /etc/acpi | 26 dodir /etc/acpi |
26 | 27 |
27 install -m 0755 -o root -g root "${S}"/event_* "${D}"/etc/acpi/events | 28 install -m 0755 -o root -g root "${S}"/event_* "${D}"/etc/acpi/events |
28 install -m 0755 -o root -g root "${S}"/action_* "${D}"/etc/acpi | 29 install -m 0755 -o root -g root "${S}"/action_* "${D}"/etc/acpi |
29 } | 30 } |
OLD | NEW |