| 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 | 5 |
| 6 DESCRIPTION="Adds some developer niceties on top of Chrome OS for debugging." | 6 DESCRIPTION="Adds some developer niceties on top of Chrome OS for debugging." |
| 7 HOMEPAGE="http://src.chromium.org" | 7 HOMEPAGE="http://src.chromium.org" |
| 8 | 8 |
| 9 LICENSE="GPL-2" | 9 LICENSE="GPL-2" |
| 10 SLOT="0" | 10 SLOT="0" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 # - python packages: (dbus-python, pygobject, pygtk...) | 35 # - python packages: (dbus-python, pygobject, pygtk...) |
| 36 # - media-gfx/imagemagick | 36 # - media-gfx/imagemagick |
| 37 RDEPEND="${RDEPEND} | 37 RDEPEND="${RDEPEND} |
| 38 app-admin/sudo | 38 app-admin/sudo |
| 39 app-arch/tar | 39 app-arch/tar |
| 40 app-crypt/nss | 40 app-crypt/nss |
| 41 x86? ( app-editors/qemacs ) | 41 x86? ( app-editors/qemacs ) |
| 42 app-editors/vim | 42 app-editors/vim |
| 43 app-shells/bash | 43 app-shells/bash |
| 44 chromeos-base/autox | 44 chromeos-base/autox |
| 45 x86? ( chromeos-base/devkey-firmware ) |
| 45 chromeos-base/gmerge | 46 chromeos-base/gmerge |
| 46 chromeos-base/minifakedns | 47 chromeos-base/minifakedns |
| 47 dev-lang/python | 48 dev-lang/python |
| 48 dev-python/dbus-python | 49 dev-python/dbus-python |
| 49 dev-python/pygobject | 50 dev-python/pygobject |
| 50 dev-python/pygtk | 51 dev-python/pygtk |
| 51 dev-python/pyopenssl | 52 dev-python/pyopenssl |
| 52 x86? ( dev-util/perf ) | 53 x86? ( dev-util/perf ) |
| 53 dev-util/strace | 54 dev-util/strace |
| 54 media-gfx/imagemagick[png] | 55 media-gfx/imagemagick[png] |
| (...skipping 17 matching lines...) Expand all Loading... |
| 72 sys-power/powertop | 73 sys-power/powertop |
| 73 sys-process/procps | 74 sys-process/procps |
| 74 sys-process/time | 75 sys-process/time |
| 75 opengl? ( x11-apps/mesa-progs ) | 76 opengl? ( x11-apps/mesa-progs ) |
| 76 x86? ( x11-apps/intel-gpu-tools ) | 77 x86? ( x11-apps/intel-gpu-tools ) |
| 77 x86? ( x11-misc/read-edid ) | 78 x86? ( x11-misc/read-edid ) |
| 78 x86? ( sys-apps/i2c-tools ) | 79 x86? ( sys-apps/i2c-tools ) |
| 79 " | 80 " |
| 80 | 81 |
| 81 # TODO: Re-add strace once we can compile it again dev-util/strace | 82 # TODO: Re-add strace once we can compile it again dev-util/strace |
| OLD | NEW |