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="0b1cd5d3136c3d2feffc6a34694bf34bbf315a6a" | 5 CROS_WORKON_COMMIT="0b07a169bb1bcffa7f8a24ea490a00ade4f360b6" |
6 | 6 |
7 inherit cros-workon autotools | 7 inherit cros-workon autotools |
8 | 8 |
9 DESCRIPTION="Chromium OS network usage tracking daemon" | 9 DESCRIPTION="Chromium OS network usage tracking daemon" |
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="" |
(...skipping 21 matching lines...) Expand all Loading... |
37 src_install() { | 37 src_install() { |
38 emake DESTDIR="${D}" install || die "emake install failed" | 38 emake DESTDIR="${D}" install || die "emake install failed" |
39 | 39 |
40 # TODO(vlaviano): do the following in autotools `make install` instead? | 40 # TODO(vlaviano): do the following in autotools `make install` instead? |
41 | 41 |
42 # install upstart config file. | 42 # install upstart config file. |
43 dodir /etc/init | 43 dodir /etc/init |
44 install --owner=root --group=root --mode=0644 \ | 44 install --owner=root --group=root --mode=0644 \ |
45 "${S}"/src/cashew.conf "${D}"/etc/init/ | 45 "${S}"/src/cashew.conf "${D}"/etc/init/ |
46 } | 46 } |
OLD | NEW |