diff options
| author | Jonathan Bauer | 2013-03-14 18:30:10 +0100 |
|---|---|---|
| committer | Jonathan Bauer | 2013-03-14 18:30:10 +0100 |
| commit | 765e0502c315d250ab8f671bc726fef6f63a026a (patch) | |
| tree | e5624ec583c98fd3202caefad9b37289d9cad348 /remote/modules/xorg | |
| parent | base -> base32 and started new base31 (diff) | |
| download | tm-scripts-765e0502c315d250ab8f671bc726fef6f63a026a.tar.gz tm-scripts-765e0502c315d250ab8f671bc726fef6f63a026a.tar.xz tm-scripts-765e0502c315d250ab8f671bc726fef6f63a026a.zip | |
restructuring...
Diffstat (limited to 'remote/modules/xorg')
| -rw-r--r-- | remote/modules/xorg/xorg.build | 21 | ||||
| -rw-r--r-- | remote/modules/xorg/xorg.conf | 47 |
2 files changed, 68 insertions, 0 deletions
diff --git a/remote/modules/xorg/xorg.build b/remote/modules/xorg/xorg.build new file mode 100644 index 00000000..4adcd214 --- /dev/null +++ b/remote/modules/xorg/xorg.build @@ -0,0 +1,21 @@ +#!/bin/bash + +fetch_source() { + : +} + +build() { + COPYLIST="list_dpkg_output" + [ -e "$COPYLIST" ] && rm "$COPYLIST" + + list_packet_files >> "$COPYLIST" + tarcopy "$(cat "$COPYLIST" | sort -u)" "${MODULE_BUILD_DIR}" +} + +post_copy() { + mkdir -p "${TARGET_BUILD_DIR}/etc/X11" + [ ! -e ${TARGET_BUILD_DIR}/etc/X11/X ] && ln -s /usr/bin/Xorg ${TARGET_BUILD_DIR}/etc/X11/X + mkdir -p "${TARGET_BUILD_DIR}/var/lib/xkb" + cp /var/lib/xkb/server* "${TARGET_BUILD_DIR}/var/lib/xkb/" || perror "Copying /var/lib/xkb/server* to '${TARGET_BUILD_DIR}/var/lib/xkb/' failed." +} + diff --git a/remote/modules/xorg/xorg.conf b/remote/modules/xorg/xorg.conf new file mode 100644 index 00000000..e41c25a5 --- /dev/null +++ b/remote/modules/xorg/xorg.conf @@ -0,0 +1,47 @@ +REQUIRED_PACKAGES=" xserver-xorg + xserver-xorg-core + libgl1-mesa-dri + xkb-data + x11-xkb-utils + xserver-xorg-input-evdev + xserver-xorg-input-mouse + xserver-xorg-input-vmmouse + xserver-xorg-video-intel + xserver-xorg-video-openchrome + xserver-xorg-video-savage + xserver-xorg-video-trident + xserver-xorg-video-ati + xserver-xorg-video-mach64 + xserver-xorg-video-qxl + xserver-xorg-video-siliconmotion + xserver-xorg-video-vesa + xserver-xorg-video-cirrus + xserver-xorg-video-mga + xserver-xorg-video-r128 + xserver-xorg-video-sis + xserver-xorg-video-vmware + xserver-xorg-video-fbdev + xserver-xorg-video-neomagic + xserver-xorg-video-radeon + xserver-xorg-video-sisusb + xserver-xorg-video-geode + xserver-xorg-video-nouveau + xserver-xorg-video-s3 + xserver-xorg-video-tdfx" +REQUIRED_BINARIES=" Xorg + vmwarectrl + gtf + cvt + X + xkbcomp + xkbvleds + xkbprint + setxkbmap + xkbwatch + xkbbell + xkbevd + vmmouse_detect" +REQUIRED_DIRECTORIES=" /lib/udev + /usr/lib + /usr/share/X11" +REQUIRED_FILES="" |
