| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 ) | 97 ) |
| 98 " | 98 " |
| 99 | 99 |
| 100 RDEPEND="${RDEPEND} | 100 RDEPEND="${RDEPEND} |
| 101 x86? ( | 101 x86? ( |
| 102 chromeos-base/chromeos-acpi | 102 chromeos-base/chromeos-acpi |
| 103 chromeos-base/chrontel | 103 chromeos-base/chrontel |
| 104 chromeos-base/firmware-utils | 104 chromeos-base/firmware-utils |
| 105 chromeos-base/saft | 105 chromeos-base/saft |
| 106 net-wireless/iwl1000-ucode | 106 net-wireless/iwl1000-ucode |
| 107 net-wireless/iwl3945-ucode |
| 108 net-wireless/iwl4965-ucode |
| 107 >=net-wireless/iwl5000-ucode-8.24.2.12 | 109 >=net-wireless/iwl5000-ucode-8.24.2.12 |
| 108 net-wireless/iwl6000-ucode | 110 net-wireless/iwl6000-ucode |
| 111 net-wireless/iwl6005-ucode |
| 112 net-wireless/iwl6030-ucode |
| 113 net-wireless/iwl6050-ucode |
| 109 sys-apps/flashrom | 114 sys-apps/flashrom |
| 110 sys-apps/mosys | 115 sys-apps/mosys |
| 111 sys-boot/syslinux | 116 sys-boot/syslinux |
| 112 ) | 117 ) |
| 113 " | 118 " |
| 114 | 119 |
| 115 RDEPEND="${RDEPEND} | 120 RDEPEND="${RDEPEND} |
| 116 arm? ( | 121 arm? ( |
| 117 virtual/u-boot | 122 virtual/u-boot |
| 118 ) | 123 ) |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 qemu_run "/usr/bin/gdk-pixbuf-query-loaders" \ | 267 qemu_run "/usr/bin/gdk-pixbuf-query-loaders" \ |
| 263 > "${ROOT}/${gtk2_confdir}/gdk-pixbuf.loaders" | 268 > "${ROOT}/${gtk2_confdir}/gdk-pixbuf.loaders" |
| 264 } | 269 } |
| 265 | 270 |
| 266 pkg_postinst() { | 271 pkg_postinst() { |
| 267 generate_font_cache | 272 generate_font_cache |
| 268 | 273 |
| 269 # This can be moved to gtk+ ebuild if necessary. | 274 # This can be moved to gtk+ ebuild if necessary. |
| 270 generate_gtk_config | 275 generate_gtk_config |
| 271 } | 276 } |
| OLD | NEW |