| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # This file contains the list of packages we install on the production | 5 # This file contains the list of packages we install on the production |
| 6 # machines (ie, end users). One package per line | 6 # machines (ie, end users). One package per line |
| 7 | 7 |
| 8 # To read these into a line in a script, do: | 8 # To read these into a line in a script, do: |
| 9 # PKGS=`cat $PACKAGE_LIST_FILE | grep -v ' *#' | grep -v '^ *$' | tr '\n' ' '` | 9 # PKGS=`cat $PACKAGE_LIST_FILE | grep -v ' *#' | grep -v '^ *$' | tr '\n' ' '` |
| 10 # change "' '" to "','" for a comma separated list | 10 # change "' '" to "','" for a comma separated list |
| 11 | 11 |
| 12 # TODO: Something broke in the dependencies so we need to manually | 12 # TODO: Something broke in the dependencies so we need to manually |
| 13 # ensure that we have some X input packages | 13 # ensure that we have some X input packages |
| 14 xserver-xorg-input-kbd | 14 xserver-xorg-input-kbd |
| 15 xserver-xorg-input-mouse | 15 xserver-xorg-input-mouse |
| 16 xserver-xorg-input-synaptics | 16 xserver-xorg-input-synaptics |
| 17 xserver-xorg-video-intel | 17 xserver-xorg-video-intel |
| 18 | 18 |
| 19 # xserver | 19 # xserver |
| 20 xserver-xorg | 20 xserver-xorg |
| 21 | 21 |
| 22 # Newer packages of chromium-browser don't seem to have libgconf2 as | 22 # Newer packages of chromium-browser don't seem to have libgconf2 as |
| 23 # part of their depends, but chrome won't run without. | 23 # part of their depends, but chrome won't run without. |
| 24 libgconf2-4 | 24 libgconf2-4 |
| 25 | 25 |
| 26 # DRI drivers are needed to run the clutter-based WM. | 26 # DRI drivers are needed to run the clutter-based WM. |
| 27 libgl1-mesa-dri | 27 libgl1-mesa-dri |
| 28 | 28 |
| 29 # TODO: Remove. For now, install ssh server until things are farther | 29 # TODO: Remove. For now, install these useful packages until things are farther |
| 30 # along in development. | 30 # along in development. |
| 31 bootchart |
| 32 less |
| 31 openssh-server | 33 openssh-server |
| 32 | |
| 33 # TODO: Remove. For now, install xterm until things are further along. | |
| 34 xterm | 34 xterm |
| 35 | 35 |
| 36 # TODO: Remove. For now, install bootchart until things are futher. | |
| 37 bootchart | |
| 38 | |
| 39 # TODO: For Karmic, we might need to add squashfs-tools until they get | |
| 40 # get updated. | |
| 41 #squashfs-tools | |
| 42 | |
| 43 # Fonts | 36 # Fonts |
| 44 ttf-dejavu | 37 ttf-dejavu |
| 45 ttf-droid | 38 ttf-droid |
| 46 ttf-sil-abyssinica | 39 ttf-sil-abyssinica |
| 47 | 40 |
| 48 # for power events (needed specifically to trap lid-close) | 41 # For power events (needed specifically to trap lid-close) |
| 49 acpid | 42 acpid |
| 50 | 43 |
| 51 # for power management (battery monitor) | 44 # For power management (battery monitor) |
| 52 devicekit-power | 45 devicekit-power |
| 53 | 46 |
| 54 # for mounting | 47 # For mounting |
| 55 devicekit-disks | 48 devicekit-disks |
| 56 policykit-1 | 49 policykit-1 |
| 57 | 50 |
| 58 # for shutdown to cleanly unmount the stateful partition | 51 # For shutdown to cleanly unmount the stateful partition |
| 59 lsof | 52 lsof |
| 60 | 53 |
| 61 # For sound (needed specifically for volume adjustment) | 54 # For sound (needed specifically for volume adjustment) |
| 62 alsa-utils | 55 alsa-utils |
| 63 | 56 |
| 64 # For firewalling | 57 # For firewalling |
| 65 iptables | 58 iptables |
| 66 | 59 |
| 67 # For setting time | 60 # For setting time |
| 68 ntp | 61 ntp |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 ibus-chewing | 98 ibus-chewing |
| 106 ibus-hangul | 99 ibus-hangul |
| 107 ibus-m17n | 100 ibus-m17n |
| 108 ibus-gtk | 101 ibus-gtk |
| 109 | 102 |
| 110 # For partitioning (GPT format) | 103 # For partitioning (GPT format) |
| 111 gptpart | 104 gptpart |
| 112 | 105 |
| 113 # For collecting metrics | 106 # For collecting metrics |
| 114 time | 107 time |
| OLD | NEW |