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 # xserver | |
13 xserver-xorg | |
14 | |
15 # TODO: Something broke in the dependencies so we need to manually | 12 # TODO: Something broke in the dependencies so we need to manually |
16 # ensure that we have some X input packages | 13 # ensure that we have some X input packages |
17 xserver-xorg-input-kbd | 14 xserver-xorg-input-kbd |
18 xserver-xorg-input-mouse | 15 xserver-xorg-input-mouse |
19 xserver-xorg-input-synaptics | 16 xserver-xorg-input-synaptics |
| 17 xserver-xorg-video-intel |
| 18 |
| 19 # xserver |
| 20 xserver-xorg |
20 | 21 |
21 # 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 |
22 # part of their depends, but chrome won't run without. | 23 # part of their depends, but chrome won't run without. |
23 libgconf2-4 | 24 libgconf2-4 |
24 | 25 |
25 # DRI drivers are needed to run the clutter-based WM. | 26 # DRI drivers are needed to run the clutter-based WM. |
26 libgl1-mesa-dri | 27 libgl1-mesa-dri |
27 | 28 |
28 # TODO: Remove. For now, install ssh server until things are farther | 29 # TODO: Remove. For now, install ssh server until things are farther |
29 # along in development. | 30 # along in development. |
30 openssh-server | 31 openssh-server |
31 | 32 |
| 33 # TODO: Remove. For now, install xterm until things are further along. |
| 34 xterm |
| 35 |
32 # TODO: For Karmic, we might need to add squashfs-tools until they get | 36 # TODO: For Karmic, we might need to add squashfs-tools until they get |
33 # get updated. | 37 # get updated. |
34 #squashfs-tools | 38 #squashfs-tools |
35 | 39 |
36 # Attempt to get nvidia drivers working | |
37 # TODO: This currently does not work, so uncomment with caution. | |
38 #nvidia-glx-180 | |
39 #nvidia-180-modaliases | |
40 | |
41 # Fonts | 40 # Fonts |
42 ttf-dejavu | 41 ttf-dejavu |
43 ttf-droid | 42 ttf-droid |
44 ttf-sil-abyssinica | 43 ttf-sil-abyssinica |
45 | 44 |
46 # for power events (needed specifically to trap lid-close) | 45 # for power events (needed specifically to trap lid-close) |
47 acpid | 46 acpid |
48 | 47 |
49 # for power management (battery monitor) | 48 # for power management (battery monitor) |
50 devicekit-power | 49 devicekit-power |
51 | 50 |
52 # for mounting | 51 # for mounting |
53 devicekit-disks | 52 devicekit-disks |
54 policykit-1 | 53 policykit-1 |
55 | 54 |
| 55 # for shutdown to cleanly unmount the stateful partition |
| 56 lsof |
| 57 |
56 # For sound (needed specifically for volume adjustment) | 58 # For sound (needed specifically for volume adjustment) |
57 alsa-utils | 59 alsa-utils |
58 | 60 |
59 # For firewalling | 61 # For firewalling |
60 iptables | 62 iptables |
61 | 63 |
62 # For setting time | 64 # For setting time |
63 ntp | 65 ntp |
64 | 66 |
65 # For encrypted home directories | 67 # For encrypted home directories |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 # For IBus | 99 # For IBus |
98 ibus | 100 ibus |
99 ibus-anthy | 101 ibus-anthy |
100 ibus-chewing | 102 ibus-chewing |
101 ibus-gtk | 103 ibus-gtk |
102 libibus1 | 104 libibus1 |
103 python-ibus | 105 python-ibus |
104 | 106 |
105 # For partitioning (GPT format) | 107 # For partitioning (GPT format) |
106 gptpart | 108 gptpart |
OLD | NEW |