| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2011 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="Chrome OS (meta package)" | 6 DESCRIPTION="Chrome OS (meta package)" |
| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 RDEPEND="${RDEPEND} | 114 RDEPEND="${RDEPEND} |
| 115 arm? ( | 115 arm? ( |
| 116 virtual/u-boot | 116 virtual/u-boot |
| 117 ) | 117 ) |
| 118 " | 118 " |
| 119 | 119 |
| 120 RDEPEND="${RDEPEND} | 120 RDEPEND="${RDEPEND} |
| 121 virtual/chromeos-bsp | 121 virtual/chromeos-bsp |
| 122 " | 122 " |
| 123 | 123 |
| 124 # Specifically include the editor we want to appear in chromeos images, so that |
| 125 # it is deterministic which editor is chosen by 'virtual/editor' dependencies |
| 126 # (such as in the 'sudo' package). See crosbug.com/5777. |
| 127 RDEPEND="${RDEPEND} |
| 128 app-editors/vim |
| 129 " |
| 130 |
| 124 #TODO(micahc): Remove board-devices from RDEPEND in lieu of virtual/chromeos-bsp | 131 #TODO(micahc): Remove board-devices from RDEPEND in lieu of virtual/chromeos-bsp |
| 125 RDEPEND="${RDEPEND} | 132 RDEPEND="${RDEPEND} |
| 126 app-admin/rsyslog | 133 app-admin/rsyslog |
| 127 app-arch/sharutils | 134 app-arch/sharutils |
| 128 app-crypt/trousers | 135 app-crypt/trousers |
| 129 app-i18n/ibus-chewing | 136 app-i18n/ibus-chewing |
| 130 app-i18n/ibus-hangul | 137 app-i18n/ibus-hangul |
| 131 app-i18n/ibus-m17n | 138 app-i18n/ibus-m17n |
| 132 app-i18n/ibus-mozc | 139 app-i18n/ibus-mozc |
| 133 app-i18n/ibus-pinyin | 140 app-i18n/ibus-pinyin |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 qemu_run "/usr/bin/gdk-pixbuf-query-loaders" \ | 269 qemu_run "/usr/bin/gdk-pixbuf-query-loaders" \ |
| 263 > "${ROOT}/${gtk2_confdir}/gdk-pixbuf.loaders" | 270 > "${ROOT}/${gtk2_confdir}/gdk-pixbuf.loaders" |
| 264 } | 271 } |
| 265 | 272 |
| 266 pkg_postinst() { | 273 pkg_postinst() { |
| 267 generate_font_cache | 274 generate_font_cache |
| 268 | 275 |
| 269 # This can be moved to gtk+ ebuild if necessary. | 276 # This can be moved to gtk+ ebuild if necessary. |
| 270 generate_gtk_config | 277 generate_gtk_config |
| 271 } | 278 } |
| OLD | NEW |