Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Arjan Bouter (d868e1a31539eb027ab4aba5ce9d6e19d42117be)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Arjan Bouter <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Arjan Bouter (d868e1a31539eb027ab4aba5ce9d6e19d42117be)
  • Date: Sun, 16 Aug 2009 20:33:06 -0500

GIT changes to master grimoire by Arjan Bouter <abouter AT sourcemage.org>:

disk/grub2/BUILD | 2 ++
disk/grub2/CONFIGURE | 18 ++++++++++++++++++
disk/grub2/HISTORY | 3 +++
xorg-driver/xf86-input-synaptics/DEPENDS | 3 ++-
xorg-driver/xf86-input-synaptics/HISTORY | 10 ++++++++++
xorg-driver/xf86-input-synaptics/INSTALL | 7 +++++++
6 files changed, 42 insertions(+), 1 deletion(-)

New commits:
commit d868e1a31539eb027ab4aba5ce9d6e19d42117be
Author: Arjan Bouter <abouter AT sourcemage.org>
Commit: Arjan Bouter <abouter AT sourcemage.org>

xf86-input-synaptics: too useful to sit in devel-xorg

commit afe1333089fd54c0e29918b037c217aa6508c057
Author: Arjan Bouter <abouter AT sourcemage.org>
Commit: Arjan Bouter <abouter AT sourcemage.org>

grub2: added more configure options

diff --git a/disk/grub2/BUILD b/disk/grub2/BUILD
new file mode 100755
index 0000000..91d98b1
--- /dev/null
+++ b/disk/grub2/BUILD
@@ -0,0 +1,2 @@
+OPTS="${OPTS} ${GRUB2_OPTS}" &&
+default_build
diff --git a/disk/grub2/CONFIGURE b/disk/grub2/CONFIGURE
new file mode 100755
index 0000000..103a2e6
--- /dev/null
+++ b/disk/grub2/CONFIGURE
@@ -0,0 +1,18 @@
+config_query_option GRUB2_OPTS 'build and install the grub-emu debugging
utility?' n \
+ '--enable-grub-emu' \
+ '--disable-grub-emu' &&
+config_query_option GRUB2_OPTS 'build and install the grub-emu-usb debugging
utility?' n \
+ '--enable-grub-emu-usb' \
+ '--disable-grub-emu-usb' &&
+config_query_option GRUB2_OPTS 'build and install the grub-fstest debugging
utility?' n \
+ '--enable-grub-fstest' \
+ '--disable-grub-fstest' &&
+config_query_option GRUB2_OPTS 'build and install the grub-pe2elf conversion
utility?' y \
+ '--enable-grub-pe2elf' \
+ '--disable-grub-pe2elf' &&
+config_query_option GRUB2_OPTS 'build and install the grub-mkfont utility?'
y \
+ '--enable-grub-mkfont' \
+ '--disable-grub-mkfont' &&
+config_query_option GRUB2_OPTS 'build and install the efiemu runtimes?' y \
+ '--enable-efiemu' \
+ '--disable-efiemu'
diff --git a/disk/grub2/HISTORY b/disk/grub2/HISTORY
index d46e639..a8f9ec7 100644
--- a/disk/grub2/HISTORY
+++ b/disk/grub2/HISTORY
@@ -3,3 +3,6 @@
grub-default, configs, volatiles: created spell
* smgl-splash.xpm.gz is installed to use in a personal config, it's
not used by the default config.
+
+2009-08-15 Arjan Bouter <abouter AT sourcemage.org>
+ * BUILD, CONFIGURE: added
diff --git a/xorg-driver/xf86-input-synaptics/DEPENDS
b/xorg-driver/xf86-input-synaptics/DEPENDS
index 3decf7f..ae0428c 100755
--- a/xorg-driver/xf86-input-synaptics/DEPENDS
+++ b/xorg-driver/xf86-input-synaptics/DEPENDS
@@ -1,3 +1,4 @@
depends util-macros &&
depends xproto &&
-depends xorg-server
+depends xorg-server &&
+optional_depends hal '' '' 'install hal policy file?'
diff --git a/xorg-driver/xf86-input-synaptics/HISTORY
b/xorg-driver/xf86-input-synaptics/HISTORY
index 65aada1..e8b8a47 100644
--- a/xorg-driver/xf86-input-synaptics/HISTORY
+++ b/xorg-driver/xf86-input-synaptics/HISTORY
@@ -1,3 +1,10 @@
+2009-08-17 Arjan Bouter <abouter AT sourcemage.org>
+ * DEPENDS: added hal, the driver doesn't use it, but xorg
+ auto-configure does and an extra file needs to be installed
+ for that to work.
+ * INSTALL: added, install fdi file when hal dep is enabled
+ so hal can actually configure the touchpad
+
2009-08-02 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Updated to 1.1.3
SOURCE matches upstream posted MD5
@@ -12,6 +19,9 @@
2009-03-15 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Updated to 1.1.0

+2009-02-28 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
+ * DETAILS: updated spell to 1.0.0
+
2008-09-18 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 0.15.2

diff --git a/xorg-driver/xf86-input-synaptics/INSTALL
b/xorg-driver/xf86-input-synaptics/INSTALL
new file mode 100755
index 0000000..7034ebb
--- /dev/null
+++ b/xorg-driver/xf86-input-synaptics/INSTALL
@@ -0,0 +1,7 @@
+default_install &&
+if ( is_depends_enabled $SPELL hal ); then
+ install -m 0644 ${SOURCE_DIRECTORY}/fdi/11-x11-synaptics.fdi \
+ ${INSTALL_ROOT}/usr/share/hal/fdi/policy/20thirdparty/ &&
+ message "${PROBLEM_COLOR}the policyfile is in
${INSTALL_ROOT}/usr/share/hal/fdi/policy/20thirdparty/" &&
+ message "copy it to ${INSTALL_ROOT}/etc/hal/fdi/policy/ to use
it${DEFAULT_COLOR}"
+fi



  • [SM-Commit] GIT changes to master grimoire by Arjan Bouter (d868e1a31539eb027ab4aba5ce9d6e19d42117be), Arjan Bouter, 08/16/2009

Archive powered by MHonArc 2.6.24.

Top of Page