| 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="90a95ed5e266dd8cdbc6c573b5de42bb79e70490" | 5 CROS_WORKON_COMMIT="4447946641b4ff0b2684307e21b8fe6d3fddd6c7" |
| 6 | 6 |
| 7 inherit cros-workon | 7 inherit cros-workon |
| 8 | 8 |
| 9 DESCRIPTION="Chrome OS Installer" | 9 DESCRIPTION="Chrome OS Installer" |
| 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 DEPEND="" | 17 DEPEND="" |
| 18 | 18 |
| 19 # TODO(adlr): remove coreutils dep if we move to busybox | 19 # TODO(adlr): remove coreutils dep if we move to busybox |
| 20 RDEPEND="dev-libs/shflags | 20 RDEPEND="dev-libs/shflags |
| 21 sys-apps/coreutils | 21 sys-apps/coreutils |
| 22 sys-apps/util-linux | 22 sys-apps/util-linux |
| 23 sys-fs/e2fsprogs" | 23 sys-fs/e2fsprogs" |
| 24 | 24 |
| 25 CROS_WORKON_LOCALNAME="installer" | 25 CROS_WORKON_LOCALNAME="installer" |
| 26 CROS_WORKON_PROJECT="installer" | 26 CROS_WORKON_PROJECT="installer" |
| 27 | 27 |
| 28 src_install() { | 28 src_install() { |
| 29 dodir /usr/sbin | 29 dodir /usr/sbin |
| 30 | 30 |
| 31 install -m 0755 -o root -g root "${S}"/chromeos-* "${D}"/usr/sbin | 31 install -m 0755 -o root -g root "${S}"/chromeos-* "${D}"/usr/sbin |
| 32 dosym usr/sbin/chromeos-postinst /postinst | 32 dosym usr/sbin/chromeos-postinst /postinst |
| 33 } | 33 } |
| OLD | NEW |