Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved. | |
| 2 # Distributed under the terms of the GNU General Public License v2 | |
| 3 | |
| 4 EAPI=2 | |
| 5 | |
| 6 inherit cros-workon | |
| 7 | |
| 8 DESCRIPTION="Upstart jobs for the Chrome OS factory test image" | |
| 9 HOMEPAGE="http://src.chromium.org" | |
| 10 SRC_URI="" | |
| 11 LICENSE="BSD" | |
| 12 SLOT="0" | |
| 13 KEYWORDS="~x86 ~arm" | |
| 14 IUSE="" | |
| 15 | |
| 16 DEPEND="" | |
| 17 | |
| 18 RDEPEND="\ | |
|
Vince Laviano
2011/03/18 02:15:05
Stylistic nit. The convention that I've seen is fo
jrbarnette
2011/03/18 18:56:12
True. I don't know what came over me here...
| |
| 19 chromeos-base/chromeos-init | |
| 20 sys-apps/coreutils | |
| 21 sys-apps/module-init-tools | |
| 22 sys-apps/upstart | |
| 23 sys-process/procps | |
| 24 " | |
| 25 | |
| 26 CROS_WORKON_LOCALNAME="factory_test" | |
| 27 CROS_WORKON_PROJECT="factory_test" | |
| 28 | |
| 29 src_install() { | |
| 30 insinto /etc/init | |
|
Vince Laviano
2011/03/18 02:15:05
This may be overly paranoid, but we might want to
jrbarnette
2011/03/18 18:56:12
Ah. Reading the relevant Gentoo docs, I see that
| |
| 31 doins factory.conf | |
| 32 doins factorylog.conf | |
| 33 } | |
| OLD | NEW |