| 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 inherit toolchain-funcs cros-workon | 5 inherit toolchain-funcs cros-workon |
| 6 | 6 |
| 7 DESCRIPTION="Chrome OS Update Engine." | 7 DESCRIPTION="Chrome OS Update Engine." |
| 8 HOMEPAGE="http://src.chromium.org" | 8 HOMEPAGE="http://src.chromium.org" |
| 9 SRC_URI="" | 9 SRC_URI="" |
| 10 LICENSE="BSD" | 10 LICENSE="BSD" |
| 11 SLOT="0" | 11 SLOT="0" |
| 12 KEYWORDS="~amd64 ~arm ~x86" | 12 KEYWORDS="~amd64 ~arm ~x86" |
| 13 | 13 |
| 14 RDEPEND="app-arch/bzip2 | 14 RDEPEND="app-arch/bzip2 |
| 15 chromeos-base/libchrome | 15 chromeos-base/libchrome |
| 16 chromeos-base/metrics | 16 chromeos-base/metrics |
| 17 chromeos-base/verity | 17 chromeos-base/verity |
| 18 dev-cpp/gflags | 18 dev-cpp/gflags |
| 19 dev-libs/glib | 19 dev-libs/glib |
| 20 dev-libs/libpcre | 20 dev-libs/libpcre |
| 21 dev-libs/libxml2 | 21 dev-libs/libxml2 |
| 22 dev-libs/protobuf | 22 dev-libs/protobuf |
| 23 dev-util/bsdiff | 23 dev-util/bsdiff |
| 24 net-misc/curl | 24 net-misc/curl |
| 25 sys-apps/rootdev |
| 25 sys-libs/zlib" | 26 sys-libs/zlib" |
| 26 DEPEND="chromeos-base/libchromeos | 27 DEPEND="chromeos-base/libchromeos |
| 27 dev-cpp/gmock | 28 dev-cpp/gmock |
| 28 dev-cpp/gtest | 29 dev-cpp/gtest |
| 29 dev-libs/dbus-glib | 30 dev-libs/dbus-glib |
| 30 ${RDEPEND}" | 31 ${RDEPEND}" |
| 31 | 32 |
| 32 src_compile() { | 33 src_compile() { |
| 33 tc-export CC CXX AR RANLIB LD NM | 34 tc-export CC CXX AR RANLIB LD NM |
| 34 export CCFLAGS="$CFLAGS" | 35 export CCFLAGS="$CFLAGS" |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 insinto /usr/share/dbus-1/services | 68 insinto /usr/share/dbus-1/services |
| 68 doins org.chromium.UpdateEngine.service | 69 doins org.chromium.UpdateEngine.service |
| 69 | 70 |
| 70 insinto /etc/dbus-1/system.d | 71 insinto /etc/dbus-1/system.d |
| 71 doins UpdateEngine.conf | 72 doins UpdateEngine.conf |
| 72 | 73 |
| 73 insinto /usr/include/chromeos/update_engine | 74 insinto /usr/include/chromeos/update_engine |
| 74 doins update_engine.dbusserver.h | 75 doins update_engine.dbusserver.h |
| 75 doins update_engine.dbusclient.h | 76 doins update_engine.dbusclient.h |
| 76 } | 77 } |
| OLD | NEW |