Difference between revisions of "QuickSynergy"

From CBLFS
Jump to navigationJump to search
 
(3 intermediate revisions by the same user not shown)
Line 11: Line 11:
  
 
=== Required ===
 
=== Required ===
* [[Synergy2]]
+
* [[Synergy2]] or [[Synergy-plus]]
 
* [[Gtk2]]
 
* [[Gtk2]]
  
Line 23: Line 23:
 
Install the package:
 
Install the package:
  
  make install
+
  make install &&
 +
install -m644 src/logo/qslogo.png /usr/share/pixmaps
 +
 
 +
Create the desktop file:
 +
 
 +
cat > /usr/share/applications/quicksynergy.desktop << "EOF"
 +
[Desktop Entry]
 +
Encoding=UTF-8
 +
Name=Quick Synergy
 +
Comment=
 +
Exec=quicksynergy
 +
Icon=qslogo.png
 +
Terminal=false
 +
Type=Application
 +
MimeType=text/html;
 +
Categories=GNOME;GTK;System;
 +
EOF
  
 
== Multilib ==
 
== Multilib ==
Line 38: Line 54:
 
Install the package:
 
Install the package:
  
  make install
+
  make install &&
 +
install -m644 src/logo/qslogo.png /usr/share/pixmaps
  
 
=== N32 ===
 
=== N32 ===
  
 
Compile the package:
 
Compile the package:
 
  
 
  CC="gcc ${BUILDN32}" PKG_CONFIG_PATH=${PKG_CONFIG_PATHN32} USE_ARCH=n32 \
 
  CC="gcc ${BUILDN32}" PKG_CONFIG_PATH=${PKG_CONFIG_PATHN32} USE_ARCH=n32 \
Line 51: Line 67:
 
Install the package:
 
Install the package:
  
  make install
+
  make install &&
 +
install -m644 src/logo/qslogo.png /usr/share/pixmaps
  
 
=== 64Bit ===
 
=== 64Bit ===
  
 
Compile the package:
 
Compile the package:
 
  
 
  CC="gcc ${BUILD64}" PKG_CONFIG_PATH=${PKG_CONFIG_PATH64} USE_ARCH=64 \
 
  CC="gcc ${BUILD64}" PKG_CONFIG_PATH=${PKG_CONFIG_PATH64} USE_ARCH=64 \
Line 64: Line 80:
 
Install the package:
 
Install the package:
  
  make install
+
  make install &&
 +
install -m644 src/logo/qslogo.png /usr/share/pixmaps
 +
 
 +
Create the desktop file:
 +
 
 +
cat > /usr/share/applications/quicksynergy.desktop << "EOF"
 +
[Desktop Entry]
 +
Encoding=UTF-8
 +
Name=Quick Synergy
 +
Comment=
 +
Exec=quicksynergy
 +
Icon=qslogo.png
 +
Terminal=false
 +
Type=Application
 +
MimeType=text/html;
 +
Categories=GNOME;GTK;System;
 +
EOF
 +
 
 +
[[Category:X Window Applications]]

Latest revision as of 18:52, 9 August 2009

Download Source: http://downloads.sourceforge.net/quicksynergy/quicksynergy-0.9.0.tar.gz

Introduction to QuickSynergy

QuickSynergy is a graphical interface (GUI) for easily configuring Synergy2, an application that allows the user to share his mouse and keyboard between two or more computers.

Project Homepage: http://quicksynergy.sourceforge.net/

Dependencies

Required

Non-Multilib

Compile the package:

./configure --prefix=/usr &&
make

Install the package:

make install &&
install -m644 src/logo/qslogo.png /usr/share/pixmaps

Create the desktop file:

cat > /usr/share/applications/quicksynergy.desktop << "EOF"
[Desktop Entry]
Encoding=UTF-8
Name=Quick Synergy
Comment=
Exec=quicksynergy
Icon=qslogo.png
Terminal=false
Type=Application
MimeType=text/html;
Categories=GNOME;GTK;System;
EOF

Multilib

This package does not provide any libraries so only one installation is required.

32Bit

Compile the package:

CC="gcc ${BUILD32}" PKG_CONFIG_PATH=${PKG_CONFIG_PATH32} USE_ARCH=32 \
./configure --prefix=/usr &&
make

Install the package:

make install &&
install -m644 src/logo/qslogo.png /usr/share/pixmaps

N32

Compile the package:

CC="gcc ${BUILDN32}" PKG_CONFIG_PATH=${PKG_CONFIG_PATHN32} USE_ARCH=n32 \
./configure --prefix=/usr &&
make

Install the package:

make install &&
install -m644 src/logo/qslogo.png /usr/share/pixmaps

64Bit

Compile the package:

CC="gcc ${BUILD64}" PKG_CONFIG_PATH=${PKG_CONFIG_PATH64} USE_ARCH=64 \
./configure --prefix=/usr &&
make

Install the package:

make install &&
install -m644 src/logo/qslogo.png /usr/share/pixmaps

Create the desktop file:

cat > /usr/share/applications/quicksynergy.desktop << "EOF"
[Desktop Entry]
Encoding=UTF-8
Name=Quick Synergy
Comment=
Exec=quicksynergy
Icon=qslogo.png
Terminal=false
Type=Application
MimeType=text/html;
Categories=GNOME;GTK;System;
EOF