Configurar mouse touchpad+synclient

Conversações gerais a respeito de Sabayon Linux

Moderator: Moderators

Configurar mouse touchpad+synclient

Postby deusr » Sat Jun 16, 2012 5:55

Pessoal, eu comprei um Ultrabook Acer S3 e o único problema para configurar é o touchpad que não tem botão, é igual do macbook, No Ubuntu eu tinha usado o synclient para configurar, vejam a configuração que estou usando:

Code: Select all
# Clicar e selecionar
synclient ClickPad=1

# Scroll circular começando do cando superior esquerdo
synclient CircularScrolling=1 CircScrollDelta=0.1 CircScrollTrigger=8

# Maior sensibilidade
synclient FingerLow=10 FingerHigh=20

# Movimenos mais rápidos
synclient MinSpeed=3.1 MaxSpeed=5.1 AccelFactor=0.1

# Rolar com 2 dedos
synclient VertTwoFingerScroll=1 HorizTwoFingerScroll=1

# Acostamento mais rápido
synclient CoastingSpeed=10 CoastingFriction=25

# Permitir à TAP clique em (2 dedos de botão do meio, 3 dedos para botão direito)
synclient TapButton1=1 TapButton2=3 TapButton3=2

#  tap tap mais rápido e duas vezes
synclient FastTaps=1 MaxDoubleTapTime=100

# continuar a arrastar o movimento quando se atinge a extremidade do movimento
synclient EdgeMotionMinZ=30 EdgeMotionMaxZ=40 EdgeMotionMinSpeed=100 EdgeMotionMaxSpeed=400


Quero saber se tem algum lugar específico para configurar o synclient? Todas as documentações que estou a procurar estão desatualizadas.
deusr
Simple Hen
 
Posts: 83
Joined: Mon Feb 23, 2009 7:23

Re: Configurar mouse touchpad+synclient

Postby Fitzcarraldo » Sat Jun 16, 2012 12:48

Arch Wiki wrote:After you have successfully tried and tested your options through synclient, you can make these changes permanent by adding them to /etc/X11/xorg.conf.d/10-synaptics.conf.

No meu caso:

Code: Select all
$ cat /etc/X11/xorg.conf.d/30-synaptics.conf
Section "InputClass"
   Identifier "touchpad"
   Driver "synaptics"
   MatchIsTouchpad "on"
      Option "TapButton1" "1"
      Option "TapButton2" "2"
      Option "TapButton3" "3"
      Option "VertEdgeScroll" "on"
      Option "VertTwoFingerScroll" "on"
      Option "HorizEdgeScroll" "on"
      Option "HorizTwoFingerScroll" "on"
      Option "CircularScrolling" "on"
      Option "CircScrollTrigger" "2"
      Option "EmulateTwoFingerMinZ" "40"
      Option "EmulateTwoFingerMinW" "8"
      Option "LeftEdge" "1700" # x coord left
      Option "RightEdge" "5300" # x coord right
      Option "TopEdge" "1700" # y coord top
      Option "BottomEdge" "4200" # y coord bottom
      Option "FingerLow" "25" # pressure below this level triggers release
      Option "FingerHigh" "30" # pressure above this level triggers touch
      Option "MaxTapTime" "180" # max time in ms for detecting tap
EndSection
User avatar
Fitzcarraldo
Sagely Hen
 
Posts: 7335
Joined: Sat Mar 10, 2007 5:40
Location: United Kingdom

Re: Configurar mouse touchpad+synclient

Postby deusr » Sun Jun 17, 2012 6:18

Tinha respondido, mas parece que não foi enviado!

Eu quero saber qual a versão do Sabayon está a utilizar? O seu notebook tem um touchpad parecido com o meu? Que é parecido com do macbook. Quando eu usava o gentoo e o hald essa configuração ficava no /etc/hal/fdi/policity.. algo assim, agora não fica mais?
deusr
Simple Hen
 
Posts: 83
Joined: Mon Feb 23, 2009 7:23

Re: Configurar mouse touchpad+synclient

Postby deusr » Sun Jun 24, 2012 7:54

Alguém sabe como que eu instalo a versão mais nova do synclient, uma versão que tenho o ClickPad? E se eu instalar e tiver que instalar do gentoo, tem como voltar para a versão anterior sem corromper o sistema? Ou seja, posso avançar e voltar nas instalações entre pacotes do sabayon e gentoo numa boa?
deusr
Simple Hen
 
Posts: 83
Joined: Mon Feb 23, 2009 7:23

Re: Configurar mouse touchpad+synclient

Postby Fitzcarraldo » Sun Jun 24, 2012 18:28

deusr wrote:Eu quero saber qual a versão do Sabayon está a utilizar? O seu notebook tem um touchpad parecido com o meu? Que é parecido com do macbook. Quando eu usava o gentoo e o hald essa configuração ficava no /etc/hal/fdi/policity.. algo assim, agora não fica mais?

A versão não importa: /etc/X11/xorg.conf.d/30-synaptics.conf é o método oficial. Repito:

Arch Wiki wrote:Depois de ter experimentado e testado com sucesso as suas opções através do synclient, você pode fazer essas alterações permanentes, adicionando-as a /etc/X11/xorg.conf.d/10-synaptics.conf.

HAL daemon não existe mais. É obsoleto.

deusr wrote:Alguém sabe como que eu instalo a versão mais nova do synclient

synclient vem vem com o pacote xf86-input-synaptics, que inclui o driver Synaptics. A versão mais nova em Gentoo é 1.6.2:

Code: Select all
[I] x11-drivers/xf86-input-synaptics
     Available versions:  1.4.0 (~)1.5.2 (~)1.6.1 1.6.2
     Installed versions:  1.6.2(18:09:59 24/06/12)
     Homepage:            http://cgit.freedesktop.org/xorg/driver/xf86-input-synaptics/
     Description:         Driver for Synaptics touchpads

Para instalar em SL:

Code: Select all
equo install git
emerge --sync
layman -S
layman -d sabayon
layman -d sabayon-distro
layman -a sabayon
layman -a  sabayon-distro
layman -S
emerge -1v xf86-input-synaptics
equo rescue spmsync


deusr wrote:E se eu instalar e tiver que instalar do gentoo, tem como voltar para a versão anterior sem corromper o sistema?

Sim.

deusr wrote:Ou seja, posso avançar e voltar nas instalações entre pacotes do sabayon e gentoo numa boa?

Sim. Leia:

entropy in gentoo

Masking and Unmasking Packages in Entropy

Preventing entropy from downgrading portage packages
User avatar
Fitzcarraldo
Sagely Hen
 
Posts: 7335
Joined: Sat Mar 10, 2007 5:40
Location: United Kingdom

Re: Configurar mouse touchpad+synclient

Postby deusr » Mon Jun 25, 2012 1:23

Estou tentando configurar o meu touchpad mas está complicado :/ Meu arquivo está da seguinte forma..

Code: Select all
Section "InputClass"
   Identifier "touchpad"
   Driver "synaptics"
   MatchIsTouchpad "on"
        # Maior sensibilidade
        Option "FingerLow" "10"
        Option "FingerHigh" "20"

        # Rolar com 2 dedos
        Option "VertTwoFingerScroll" "on"
        Option "HorizTwoFingerScroll" "on"

        # Rolar circular
        Option "CircularScrolling" "on"
        Option "CircScrollDelta" "0.1"
        Option "CircScrollTrigger" "8"

        # ClickPad
        Option "ClickPad"         "on"
        Option "EmulateMidButtonTime" "0"
        Option "SoftButtonAreas"  "50% 0 82% 0 0 0 0 0"
EndSection


Sendo que rolagem com 2 botões não fuciona e nem o clickPad funciona, as outras configurações funcionam. Alguém poderia me ajudar?

Peguei informação nesses 2 links:
- https://wiki.archlinux.org/index.php/To ... ickPads.29
- http://fedoraproject.org/wiki/Input_dev ... enablement
deusr
Simple Hen
 
Posts: 83
Joined: Mon Feb 23, 2009 7:23

Re: Configurar mouse touchpad+synclient

Postby deusr » Mon Jun 25, 2012 5:10

ERRO de Colisão

Code: Select all
neit xorg.conf.d # emerge -1v xf86-input-synaptics

These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild     U  ] x11-drivers/xf86-input-synaptics-1.6.2 [1.5.2] 0 kB

Total: 1 package (1 upgrade), Size of downloads: 0 kB

!!! The following installed packages are masked:
- net-wireless/broadcom-sta-5.100.82.112-r2::sabayon (masked by: Broadcom license(s))
A copy of the 'Broadcom' license is located at '/usr/portage/licenses/Broadcom'.

- net-im/skype-4.0.0.7-r2::gentoo (masked by: skype-4.0.0.7-copyright license(s))
A copy of the 'skype-4.0.0.7-copyright' license is located at '/usr/portage/licenses/skype-4.0.0.7-copyright'.

- www-plugins/adobe-flash-11.2.202.233::gentoo (masked by: AdobeFlash-10.3 license(s))
A copy of the 'AdobeFlash-10.3' license is located at '/usr/portage/licenses/AdobeFlash-10.3'.

For more information, see the MASKED PACKAGES section in the emerge
man page or refer to the Gentoo Handbook.



>>> Verifying ebuild manifests
>>> Running pre-merge checks for x11-drivers/xf86-input-synaptics-1.6.2
 * Determining the location of the kernel source code
 * Found kernel source directory:
 *     /usr/src/linux
 * Found sources for kernel version:
 *     3.4.0-sabayon

>>> Emerging (1 of 1) x11-drivers/xf86-input-synaptics-1.6.2
 * xf86-input-synaptics-1.6.2.tar.bz2 RMD160 SHA1 SHA256 size ;-) ...                                                      [ ok ]
 * Determining the location of the kernel source code
 * Found kernel source directory:
 *     /usr/src/linux
 * Found sources for kernel version:
 *     3.4.0-sabayon
>>> Unpacking source...
>>> Unpacking xf86-input-synaptics-1.6.2.tar.bz2 to /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work
>>> Source unpacked in /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work
>>> Preparing source in /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2 ...
 * Running elibtoolize in: xf86-input-synaptics-1.6.2/
 *   Applying portage/1.2.0 patch ...
 *   Applying sed/1.5.6 patch ...
>>> Source prepared.
>>> Configuring source in /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2 ...
>>> Working in BUILD_DIR: "/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2_build"
 * econf: updating xf86-input-synaptics-1.6.2/config.sub with /usr/share/gnuconfig/config.sub
 * econf: updating xf86-input-synaptics-1.6.2/config.guess with /usr/share/gnuconfig/config.guess
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/configure --prefix=/usr --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --libdir=/usr/lib64 --disable-dependency-tracking --docdir=/usr/share/doc/xf86-input-synaptics-1.6.2 --disable-dependency-tracking
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking how to print strings... printf
checking for style of include used by make... GNU
checking for x86_64-pc-linux-gnu-gcc... x86_64-pc-linux-gnu-gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether x86_64-pc-linux-gnu-gcc accepts -g... yes
checking for x86_64-pc-linux-gnu-gcc option to accept ISO C89... none needed
checking dependency style of x86_64-pc-linux-gnu-gcc... none
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for fgrep... /bin/grep -F
checking for ld used by x86_64-pc-linux-gnu-gcc... /usr/x86_64-pc-linux-gnu/bin/ld
checking if the linker (/usr/x86_64-pc-linux-gnu/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/x86_64-pc-linux-gnu/bin/ld option to reload object files... -r
checking for x86_64-pc-linux-gnu-objdump... x86_64-pc-linux-gnu-objdump
checking how to recognize dependent libraries... pass_all
checking for x86_64-pc-linux-gnu-dlltool... no
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for x86_64-pc-linux-gnu-ar... x86_64-pc-linux-gnu-ar
checking for archiver @FILE support... @
checking for x86_64-pc-linux-gnu-strip... x86_64-pc-linux-gnu-strip
checking for x86_64-pc-linux-gnu-ranlib... x86_64-pc-linux-gnu-ranlib
checking command to parse /usr/bin/nm -B output from x86_64-pc-linux-gnu-gcc object... ok
checking for sysroot... no
checking for x86_64-pc-linux-gnu-mt... no
checking for mt... no
checking if : is a manifest tool... no
checking how to run the C preprocessor... x86_64-pc-linux-gnu-gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if x86_64-pc-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
checking for x86_64-pc-linux-gnu-gcc option to produce PIC... -fPIC -DPIC
checking if x86_64-pc-linux-gnu-gcc PIC flag -fPIC -DPIC works... yes
checking if x86_64-pc-linux-gnu-gcc static flag -static works... yes
checking if x86_64-pc-linux-gnu-gcc supports -c -o file.o... yes
checking if x86_64-pc-linux-gnu-gcc supports -c -o file.o... (cached) yes
checking whether the x86_64-pc-linux-gnu-gcc linker (/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking for x86_64-pc-linux-gnu-gcc option to accept ISO C99... -std=gnu99
checking whether __clang__ is declared... no
checking whether __INTEL_COMPILER is declared... no
checking whether __SUNPRO_C is declared... no
checking for x86_64-pc-linux-gnu-pkg-config... no
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Werror=unknown-warning-option... no
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Werror=unused-command-line-argument... no
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Wall... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Wpointer-arith... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Wstrict-prototypes... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Wmissing-prototypes... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Wmissing-declarations... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Wnested-externs... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Wbad-function-cast... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Wformat=2... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Wold-style-definition... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Wdeclaration-after-statement... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Wunused... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Wuninitialized... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Wshadow... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Wcast-qual... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Wmissing-noreturn... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Wmissing-format-attribute... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Wredundant-decls... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Werror=implicit... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Werror=nonnull... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Werror=init-self... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Werror=main... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Werror=missing-braces... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Werror=sequence-point... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Werror=return-type... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Werror=trigraphs... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Werror=array-bounds... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Werror=write-strings... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Werror=address... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Werror=int-to-pointer-cast... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Werror=pointer-to-int-cast... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -pedantic... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Werror... yes
checking if x86_64-pc-linux-gnu-gcc -std=gnu99 supports -Werror=attributes... yes
Package xorg-macros was not found in the pkg-config search path.
Perhaps you should add the directory containing `xorg-macros.pc'
to the PKG_CONFIG_PATH environment variable
No package 'xorg-macros' found
checking whether make supports nested variables... yes
checking whether to build unit test cases... auto
checking for rint in -lm... yes
checking if RANDR is defined... yes
checking for XORG... yes
checking for XI22... no
checking which optional backends will be build... ps2comm alpscomm eventcomm
checking for XI... yes
checking for XTST... yes
checking for X11/extensions/record.h... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating man/Makefile
config.status: creating tools/Makefile
config.status: creating conf/Makefile
config.status: creating include/Makefile
config.status: creating test/Makefile
config.status: creating xorg-synaptics.pc
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
>>> Source configured.
>>> Compiling source in /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2 ...
>>> Working in BUILD_DIR: "/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2_build"
make -j16 -s
Making all in include
Making all in src
  CC     synaptics.lo
  CC     synproto.lo
  CC     properties.lo
  CC     alpscomm.lo
  CC     ps2comm.lo
  CC     eventcomm.lo
  CCLD   synaptics_drv.la
Making all in man
  GEN    synaptics.4
  GEN    synclient.1
  GEN    syndaemon.1
Making all in tools
  CC     syndaemon-syndaemon.o
  CC     synclient.o
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/tools/syndaemon.c: In function ‘main’:
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/tools/syndaemon.c:613:14: warning: ignoring return value of ‘chdir’, declared with attribute warn_unused_result [-Wunused-result]
  CCLD   synclient
  CCLD   syndaemon
Making all in conf
Making all in test
  CC     eventcomm-test.o
  CC     eventcomm.o
  CC     synproto.o
  CC     fake-symbols.o
In file included from /usr/include/xorg/privates.h:145:0,
                 from /usr/include/xorg/cursor.h:54,
                 from /usr/include/xorg/scrnintstr.h:54,
                 from /usr/include/xorg/xf86str.h:39,
                 from /usr/include/xorg/xf86Xinput.h:55,
                 from /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/src/eventcomm.h:32,
                 from /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/src/eventcomm.c:32:
/usr/include/xorg/dix.h:532:22: warning: redundant redeclaration of ‘ffs’ [-Wredundant-decls]
In file included from /usr/include/xorg/privates.h:145:0,
                 from /usr/include/xorg/cursor.h:54,
                 from /usr/include/xorg/scrnintstr.h:54,
                 from /usr/include/xorg/xf86str.h:39,
                 from /usr/include/xorg/xf86Xinput.h:55,
                 from /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/src/synproto.h:32,
                 from /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/src/synproto.c:24:
/usr/include/xorg/dix.h:532:22: warning: redundant redeclaration of ‘ffs’ [-Wredundant-decls]
In file included from /usr/include/xorg/privates.h:145:0,
                 from /usr/include/xorg/cursor.h:54,
                 from /usr/include/xorg/scrnintstr.h:54,
                 from /usr/include/xorg/xf86str.h:39,
                 from /usr/include/xorg/xf86Xinput.h:55,
                 from /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:2,
                 from /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.c:1:
/usr/include/xorg/dix.h:532:22: warning: redundant redeclaration of ‘ffs’ [-Wredundant-decls]
In file included from /usr/include/xorg/privates.h:145:0,
                 from /usr/include/xorg/cursor.h:54,
                 from /usr/include/xorg/scrnintstr.h:54,
                 from /usr/include/xorg/xf86str.h:39,
                 from /usr/include/xorg/xf86Xinput.h:55,
                 from /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/src/synproto.h:32,
                 from /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/src/synapticsstr.h:25,
                 from /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/eventcomm-test.c:35:
/usr/include/xorg/dix.h:532:22: warning: redundant redeclaration of ‘ffs’ [-Wredundant-decls]
In file included from /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.c:1:0:
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:19:16: warning: redundant redeclaration of ‘xf86ReplaceIntOption’ [-Wredundant-decls]
/usr/include/xorg/xf86Opt.h:113:26: note: previous declaration of ‘xf86ReplaceIntOption’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:21:16: warning: redundant redeclaration of ‘xf86AddNewOption’ [-Wredundant-decls]
/usr/include/xorg/xf86Opt.h:82:26: note: previous declaration of ‘xf86AddNewOption’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:23:14: warning: redundant redeclaration of ‘xf86OptionName’ [-Wredundant-decls]
/usr/include/xorg/xf86Opt.h:89:24: note: previous declaration of ‘xf86OptionName’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:24:20: warning: redundant redeclaration of ‘xf86FindOptionValue’ [-Wredundant-decls]
/usr/include/xorg/xf86Opt.h:93:24: note: previous declaration of ‘xf86FindOptionValue’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:25:12: warning: redundant redeclaration of ‘xf86NameCmp’ [-Wredundant-decls]
/usr/include/xorg/xf86Opt.h:111:22: note: previous declaration of ‘xf86NameCmp’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:26:14: warning: redundant redeclaration of ‘xf86CheckStrOption’ [-Wredundant-decls]
/usr/include/xorg/xf86Opt.h:79:24: note: previous declaration of ‘xf86CheckStrOption’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:28:14: warning: redundant redeclaration of ‘xf86SetStrOption’ [-Wredundant-decls]
/usr/include/xorg/xf86Opt.h:74:24: note: previous declaration of ‘xf86SetStrOption’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:30:12: warning: redundant redeclaration of ‘xf86SetBoolOption’ [-Wredundant-decls]
/usr/include/xorg/xf86Opt.h:75:22: note: previous declaration of ‘xf86SetBoolOption’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:31:16: warning: redundant redeclaration of ‘xf86AddNewOption’ [-Wredundant-decls]
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:21:16: note: previous declaration of ‘xf86AddNewOption’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:33:20: warning: redundant redeclaration of ‘xf86FindOptionValue’ [-Wredundant-decls]
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:24:20: note: previous declaration of ‘xf86FindOptionValue’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:34:14: warning: redundant redeclaration of ‘xf86OptionName’ [-Wredundant-decls]
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:23:14: note: previous declaration of ‘xf86OptionName’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:35:14: warning: redundant redeclaration of ‘xf86OptionValue’ [-Wredundant-decls]
/usr/include/xorg/xf86Opt.h:90:24: note: previous declaration of ‘xf86OptionValue’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:36:12: warning: redundant redeclaration of ‘xf86NameCmp’ [-Wredundant-decls]
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:25:12: note: previous declaration of ‘xf86NameCmp’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:37:14: warning: redundant redeclaration of ‘xf86CheckStrOption’ [-Wredundant-decls]
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:26:14: note: previous declaration of ‘xf86CheckStrOption’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:38:13: warning: redundant redeclaration of ‘xf86AddEnabledDevice’ [-Wredundant-decls]
/usr/include/xorg/xf86Xinput.h:152:23: note: previous declaration of ‘xf86AddEnabledDevice’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:39:13: warning: redundant redeclaration of ‘xf86RemoveEnabledDevice’ [-Wredundant-decls]
/usr/include/xorg/xf86Xinput.h:153:23: note: previous declaration of ‘xf86RemoveEnabledDevice’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:41:13: warning: redundant redeclaration of ‘xf86AddInputDriver’ [-Wredundant-decls]
/usr/include/xorg/xf86Xinput.h:161:23: note: previous declaration of ‘xf86AddInputDriver’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:44:2: warning: redundant redeclaration of ‘xf86ScaleAxis’ [-Wredundant-decls]
/usr/include/xorg/xf86Xinput.h:145:22: note: previous declaration of ‘xf86ScaleAxis’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:46:13: warning: redundant redeclaration of ‘DeleteInputDeviceRequest’ [-Wredundant-decls]
/usr/include/xorg/input.h:565:24: note: previous declaration of ‘DeleteInputDeviceRequest’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:49:13: warning: redundant redeclaration of ‘FreeInputAttributes’ [-Wredundant-decls]
/usr/include/xorg/input.h:534:23: note: previous declaration of ‘FreeInputAttributes’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:53:1: warning: redundant redeclaration of ‘xf86PostButtonEvent’ [-Wredundant-decls]
/usr/include/xorg/xf86Xinput.h:126:23: note: previous declaration of ‘xf86PostButtonEvent’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:57:12: warning: redundant redeclaration of ‘Xasprintf’ [-Wredundant-decls]
/usr/include/xorg/Xprintf.h:51:22: note: previous declaration of ‘Xasprintf’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:61:21: warning: redundant redeclaration of ‘xf86FirstLocalDevice’ [-Wredundant-decls]
/usr/include/xorg/xf86Xinput.h:144:31: note: previous declaration of ‘xf86FirstLocalDevice’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:62:13: warning: redundant redeclaration of ‘xf86DeleteInput’ [-Wredundant-decls]
/usr/include/xorg/xf86Xinput.h:165:23: note: previous declaration of ‘xf86DeleteInput’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:63:16: warning: redundant redeclaration of ‘xf86OptionListDuplicate’ [-Wredundant-decls]
/usr/include/xorg/xf86Opt.h:87:26: note: previous declaration of ‘xf86OptionListDuplicate’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:66:1: warning: redundant redeclaration of ‘InitButtonClassDeviceStruct’ [-Wredundant-decls]
/usr/include/xorg/input.h:288:23: note: previous declaration of ‘InitButtonClassDeviceStruct’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:74:2: warning: redundant redeclaration of ‘xf86PostKeyboardEvent’ [-Wredundant-decls]
/usr/include/xorg/xf86Xinput.h:142:23: note: previous declaration of ‘xf86PostKeyboardEvent’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:76:2: warning: redundant redeclaration of ‘xf86SetIntOption’ [-Wredundant-decls]
/usr/include/xorg/xf86Opt.h:72:22: note: previous declaration of ‘xf86SetIntOption’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:79:1: warning: redundant redeclaration of ‘xf86PostButtonEventP’ [-Wredundant-decls]
/usr/include/xorg/xf86Xinput.h:129:23: note: previous declaration of ‘xf86PostButtonEventP’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:88:2: warning: redundant redeclaration of ‘InitPtrFeedbackClassDeviceStruct’ [-Wredundant-decls]
/usr/include/xorg/input.h:326:23: note: previous declaration of ‘InitPtrFeedbackClassDeviceStruct’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:95:15: warning: redundant redeclaration of ‘GetTimeInMillis’ [-Wredundant-decls]
/usr/include/xorg/os.h:169:25: note: previous declaration of ‘GetTimeInMillis’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:98:2: warning: redundant redeclaration of ‘NewInputDeviceRequest’ [-Wredundant-decls]
/usr/include/xorg/input.h:561:22: note: previous declaration of ‘NewInputDeviceRequest’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:105:2: warning: redundant redeclaration of ‘InitLedFeedbackClassDeviceStruct’ [-Wredundant-decls]
/usr/include/xorg/input.h:354:23: note: previous declaration of ‘InitLedFeedbackClassDeviceStruct’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:108:25: warning: redundant redeclaration of ‘DuplicateInputAttributes’ [-Wredundant-decls]
/usr/include/xorg/input.h:533:35: note: previous declaration of ‘DuplicateInputAttributes’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:110:12: warning: redundant redeclaration of ‘ValidAtom’ [-Wredundant-decls]
/usr/include/xorg/dix.h:297:23: note: previous declaration of ‘ValidAtom’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:113:1: warning: redundant redeclaration of ‘InitKeyboardDeviceStruct’ [-Wredundant-decls]
/usr/include/xorg/input.h:377:23: note: previous declaration of ‘InitKeyboardDeviceStruct’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:129:13: warning: redundant redeclaration of ‘xf86IDrvMsg’ [-Wredundant-decls]
/usr/include/xorg/xf86Xinput.h:170:23: note: previous declaration of ‘xf86IDrvMsg’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:134:1: warning: redundant redeclaration of ‘xf86PostMotionEventP’ [-Wredundant-decls]
/usr/include/xorg/xf86Xinput.h:116:23: note: previous declaration of ‘xf86PostMotionEventP’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:143:1: warning: redundant redeclaration of ‘InitValuatorClassDeviceStruct’ [-Wredundant-decls]
/usr/include/xorg/input.h:298:23: note: previous declaration of ‘InitValuatorClassDeviceStruct’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:147:1: warning: redundant redeclaration of ‘xf86ReplaceStrOption’ [-Wredundant-decls]
/usr/include/xorg/xf86Opt.h:117:26: note: previous declaration of ‘xf86ReplaceStrOption’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:149:16: warning: redundant redeclaration of ‘xf86NextOption’ [-Wredundant-decls]
/usr/include/xorg/xf86Opt.h:84:26: note: previous declaration of ‘xf86NextOption’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:155:13: warning: redundant redeclaration of ‘MakeAtom’ [-Wredundant-decls]
/usr/include/xorg/dix.h:292:23: note: previous declaration of ‘MakeAtom’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:157:12: warning: redundant redeclaration of ‘GetMotionHistorySize’ [-Wredundant-decls]
/usr/include/xorg/input.h:485:22: note: previous declaration of ‘GetMotionHistorySize’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:161:1: warning: redundant redeclaration of ‘xf86PostProximityEventP’ [-Wredundant-decls]
/usr/include/xorg/xf86Xinput.h:122:23: note: previous declaration of ‘xf86PostProximityEventP’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/fake-symbols.h:168:13: warning: redundant redeclaration of ‘InitFocusClassDeviceStruct’ [-Wredundant-decls]
/usr/include/xorg/input.h:309:23: note: previous declaration of ‘InitFocusClassDeviceStruct’ was here
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/src/eventcomm.c: In function ‘event_get_abs’:
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/src/eventcomm.c:358:26: warning: declaration of ‘abs’ shadows a global declaration [-Wshadow]
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/src/eventcomm.c: In function ‘event_query_axis_ranges’:
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/src/eventcomm.c:385:34: warning: unused variable ‘proto_data’ [-Wunused-variable]
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/src/eventcomm.c: In function ‘count_fingers’:
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/src/eventcomm.c:621:34: warning: unused variable ‘proto_data’ [-Wunused-variable]
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/eventcomm-test.c: In function ‘test_read_hw_state’:
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/eventcomm-test.c:146:10: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/eventcomm-test.c: In function ‘write_event’:
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/eventcomm-test.c:73:10: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]
/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/test/eventcomm-test.c:74:10: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]
  CCLD   eventcomm-test
>>> Source compiled.
>>> Test phase [not enabled]: x11-drivers/xf86-input-synaptics-1.6.2

>>> Install xf86-input-synaptics-1.6.2 into /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/image/ category x11-drivers
>>> Working in BUILD_DIR: "/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2_build"
make -j16 -s DESTDIR=/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/image/ docdir=/usr/share/doc/xf86-input-synaptics-1.6.2 install
Making install in include
 /usr/bin/install -c -m 644 /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/include/synaptics.h /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/include/synaptics-properties.h '/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/image//usr/include/xorg'
Making install in src
 /bin/sh ../libtool   --mode=install /usr/bin/install -c   synaptics_drv.la '/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/image//usr/lib64/xorg/modules/input'
libtool: install: /usr/bin/install -c .libs/synaptics_drv.so /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/image//usr/lib64/xorg/modules/input/synaptics_drv.so
libtool: install: /usr/bin/install -c .libs/synaptics_drv.lai /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/image//usr/lib64/xorg/modules/input/synaptics_drv.la
libtool: install: warning: remember to run `libtool --finish /usr/lib64/xorg/modules/input'
Making install in man
 /usr/bin/install -c -m 644 synclient.1 '/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/image//usr/share/man/man1'
 /usr/bin/install -c -m 644 syndaemon.1 '/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/image//usr/share/man/man1'
 /usr/bin/install -c -m 644 synaptics.4 '/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/image//usr/share/man/man4'
Making install in tools
  /bin/sh ../libtool   --mode=install /usr/bin/install -c synclient syndaemon '/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/image//usr/bin'
libtool: install: /usr/bin/install -c synclient /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/image//usr/bin/synclient
libtool: install: /usr/bin/install -c syndaemon /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/image//usr/bin/syndaemon
Making install in conf
 /usr/bin/install -c -m 644 /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/work/xf86-input-synaptics-1.6.2/conf/50-synaptics.conf '/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/image//usr/share/X11/xorg.conf.d'
Making install in test
 /usr/bin/install -c -m 644 xorg-synaptics.pc '/var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/image//usr/lib64/pkgconfig'
 * Removing unnecessary /usr/lib64/xorg/modules/input/synaptics_drv.la (requested)
>>> Completed installing xf86-input-synaptics-1.6.2 into /var/tmp/portage/x11-drivers/xf86-input-synaptics-1.6.2/image/

strip: x86_64-pc-linux-gnu-strip --strip-unneeded -R .comment -R .GCC.command.line
   usr/bin/syndaemon
   usr/bin/synclient
   usr/lib64/xorg/modules/input/synaptics_drv.so
ecompressdir: bzip2 -9 /usr/share/doc
ecompressdir: bzip2 -9 /usr/share/man

>>> Installing (1 of 1) x11-drivers/xf86-input-synaptics-1.6.2
 * checking 15 files for package collisions
 * This package will overwrite one or more files that may belong to other
 * packages (see list below). You can use a command such as `portageq
 * owners / <filename>` to identify the installed package that owns a
 * file. If portageq reports that only one package owns a file then do
 * NOT file a bug report. A bug report is only useful if it identifies at
 * least two or more packages that are known to install the same file(s).
 * If a collision occurs and you can not explain where the file came from
 * then you should simply ignore the collision since there is not enough
 * information to determine if a real problem exists. Please do NOT file
 * a bug report at http://bugs.gentoo.org unless you report exactly which
 * two packages install the same file(s). Once again, please do NOT file
 * a bug report unless you have completely understood the above message.
 *
 * Detected file collision(s):
 *
 *    /usr/lib/debug/usr/bin/synclient.debug
 *    /usr/lib/debug/usr/bin/syndaemon.debug
 *    /usr/lib/debug/usr/lib64/xorg/modules/input/synaptics_drv.so.debug
 *
 * Searching all installed packages for file collisions...
 *
 * Press Ctrl-C to Stop
 *
 * None of the installed packages claim the file(s).
 *
 * Package 'x11-drivers/xf86-input-synaptics-1.6.2' merged despite file
 * collisions. If necessary, refer to your elog messages for the whole
 * content of the above message.
>>> Merging x11-drivers/xf86-input-synaptics-1.6.2 to /
--- /usr/
--- /usr/include/
--- /usr/include/xorg/
>>> /usr/include/xorg/synaptics.h
>>> /usr/include/xorg/synaptics-properties.h
--- /usr/lib64/
--- /usr/lib64/xorg/
--- /usr/lib64/xorg/modules/
--- /usr/lib64/xorg/modules/input/
>>> /usr/lib64/xorg/modules/input/synaptics_drv.so
--- /usr/lib64/pkgconfig/
>>> /usr/lib64/pkgconfig/xorg-synaptics.pc
--- /usr/share/
--- /usr/share/man/
--- /usr/share/man/man1/
>>> /usr/share/man/man1/synclient.1.bz2
>>> /usr/share/man/man1/syndaemon.1.bz2
--- /usr/share/man/man4/
>>> /usr/share/man/man4/synaptics.4.bz2
--- /usr/share/X11/
--- /usr/share/X11/xorg.conf.d/
>>> /usr/share/X11/xorg.conf.d/50-synaptics.conf
--- /usr/share/doc/
>>> /usr/share/doc/xf86-input-synaptics-1.6.2/
>>> /usr/share/doc/xf86-input-synaptics-1.6.2/README.bz2
>>> /usr/share/doc/xf86-input-synaptics-1.6.2/ChangeLog.bz2
--- /usr/bin/
>>> /usr/bin/synclient
>>> /usr/bin/syndaemon
--- /usr/lib/
--- /usr/lib/debug/
--- /usr/lib/debug/usr/
--- /usr/lib/debug/usr/bin/
>>> /usr/lib/debug/usr/bin/synclient.debug
>>> /usr/lib/debug/usr/bin/syndaemon.debug
--- /usr/lib/debug/usr/lib64/
--- /usr/lib/debug/usr/lib64/xorg/
--- /usr/lib/debug/usr/lib64/xorg/modules/
--- /usr/lib/debug/usr/lib64/xorg/modules/input/
>>> /usr/lib/debug/usr/lib64/xorg/modules/input/synaptics_drv.so.debug
>>> Safely unmerging already-installed instance...
No package files given... Grabbing a set.
--- replaced obj /usr/share/man/man4/synaptics.4.bz2
--- replaced dir /usr/share/man/man4
--- replaced obj /usr/share/man/man1/syndaemon.1.bz2
--- replaced obj /usr/share/man/man1/synclient.1.bz2
--- replaced dir /usr/share/man/man1
--- replaced dir /usr/share/man
<<<          obj /usr/share/doc/xf86-input-synaptics-1.5.2/README.bz2
<<<          obj /usr/share/doc/xf86-input-synaptics-1.5.2/ChangeLog.bz2
--- replaced dir /usr/share/doc
--- replaced obj /usr/share/X11/xorg.conf.d/50-synaptics.conf
--- replaced dir /usr/share/X11/xorg.conf.d
--- replaced dir /usr/share/X11
--- replaced dir /usr/share
--- replaced obj /usr/lib64/xorg/modules/input/synaptics_drv.so
--- replaced dir /usr/lib64/xorg/modules/input
--- replaced dir /usr/lib64/xorg/modules
--- replaced dir /usr/lib64/xorg
--- replaced obj /usr/lib64/pkgconfig/xorg-synaptics.pc
--- replaced dir /usr/lib64/pkgconfig
--- replaced dir /usr/lib64
--- cfgpro   dir /usr/lib
--- replaced obj /usr/include/xorg/synaptics.h
--- replaced obj /usr/include/xorg/synaptics-properties.h
--- replaced dir /usr/include/xorg
--- replaced dir /usr/include
--- replaced obj /usr/bin/syndaemon
--- replaced obj /usr/bin/synclient
--- replaced dir /usr/bin
--- replaced dir /usr
<<<          dir /usr/share/doc/xf86-input-synaptics-1.5.2
>>> Regenerating /etc/ld.so.cache...
>>> Original instance of package unmerged safely.
>>> x11-drivers/xf86-input-synaptics-1.6.2 merged.

 * Messages for package x11-drivers/xf86-input-synaptics-1.6.2:

 * This package will overwrite one or more files that may belong to other
 * packages (see list below). You can use a command such as `portageq
 * owners / <filename>` to identify the installed package that owns a
 * file. If portageq reports that only one package owns a file then do
 * NOT file a bug report. A bug report is only useful if it identifies at
 * least two or more packages that are known to install the same file(s).
 * If a collision occurs and you can not explain where the file came from
 * then you should simply ignore the collision since there is not enough
 * information to determine if a real problem exists. Please do NOT file
 * a bug report at http://bugs.gentoo.org unless you report exactly which
 * two packages install the same file(s). Once again, please do NOT file
 * a bug report unless you have completely understood the above message.
 *
 * Detected file collision(s):
 *
 *    /usr/lib/debug/usr/bin/synclient.debug
 *    /usr/lib/debug/usr/bin/syndaemon.debug
 *    /usr/lib/debug/usr/lib64/xorg/modules/input/synaptics_drv.so.debug
 *
 * Searching all installed packages for file collisions...
 *
 * Press Ctrl-C to Stop
 *
 * None of the installed packages claim the file(s).
 *
 * Package 'x11-drivers/xf86-input-synaptics-1.6.2' merged despite file
 * collisions. If necessary, refer to your elog messages for the whole
 * content of the above message.
>>> Auto-cleaning packages...

>>> No outdated packages were found on your system.

 * GNU info directory index is up-to-date.

!!! existing preserved libs:
>>> package: media-libs/cogl-1.10.2
 *  - /usr/lib64/libcogl.so.5
 *  - /usr/lib64/libcogl.so.5.0.1
 *      used by /usr/bin/quadrapassel (gnome-extra/gnome-games-3.2.1-r1)
 *      used by /usr/lib64/gnome-shell/libgnome-shell.so (gnome-base/gnome-shell-3.2.2.1)
 *      used by /usr/lib64/libchamplain-0.12.so.0.1.0 (media-libs/libchamplain-0.12.1)
 *      used by 8 other files
>>> package: x11-wm/mutter-3.4.1-r1
 *  - /usr/lib64/libmutter.so.0
 *  - /usr/lib64/libmutter.so.0.0.0
 *      used by /usr/bin/gnome-shell (gnome-base/gnome-shell-3.2.2.1)
 *      used by /usr/bin/mutter (x11-wm/mutter-3.2.2-r1)
 *      used by /usr/bin/mutter-theme-viewer (x11-wm/mutter-3.2.2-r1)
 *      used by /usr/lib64/gnome-shell/libgnome-shell.so (gnome-base/gnome-shell-3.2.2.1)
Use emerge @preserved-rebuild to rebuild packages using these libraries
neit xorg.conf.d #
deusr
Simple Hen
 
Posts: 83
Joined: Mon Feb 23, 2009 7:23


Return to Portuguese

Who is online

Users browsing this forum: No registered users and 0 guests

cron