Compiz: Difference between revisions

From CBLFS
Jump to navigationJump to search
No edit summary
 
(4 intermediate revisions by one other user not shown)
Line 2: Line 2:
|-
|-
!Download Source:
!Download Source:
| http://releases.compiz-fusion.org/0.7.8/0.7.8/compiz-0.7.8.tar.bz2
| {{Compiz Fusion-Mirror}}/{{Compiz Fusion-Version}}/compiz-{{Compiz Fusion-Version}}.tar.bz2
|}
|}


Line 15: Line 15:
* [[Startup-notification]]
* [[Startup-notification]]
* [[LibXSLT]]
* [[LibXSLT]]
* [[Intltool]]
=== Optional ===
=== Optional ===
* [[Glib2]]
* [[Glib2]]
Line 23: Line 25:
* [[Gtk2]], [[libwnck]], [[Pango]], and [[Cairo]]
* [[Gtk2]], [[libwnck]], [[Pango]], and [[Cairo]]
* [[Metacity]] (For theme support)
* [[Metacity]] (For theme support)
* [[GNOME Control Center]]
* [[Control Center]]
* [[KdeLibs]]
* [[KdeLibs]]
* [[KDE4/KdeLibs]]
* [[KDE4/KdeLibs]]
Line 29: Line 31:
Compile the package:
Compile the package:


  ./configure --prefix=/opt/fusion --sysconfdir=/etc/gnome &&
  ./configure --prefix=/usr --sysconfdir=/etc/gnome &&
  make
  make


Line 44: Line 46:
  CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
  CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
  PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" USE_ARCH=32 \
  PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" USE_ARCH=32 \
  ./configure --prefix=/opt/fusion --sysconfdir=/etc/gnome &&
  ./configure --prefix=/usr --sysconfdir=/etc/gnome &&
  make
  make


Line 61: Line 63:
  CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
  CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
  PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" USE_ARCH=64 \
  PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" USE_ARCH=64 \
  ./configure --prefix=/opt/fusion --libdir=/opt/fusion/lib64\
  ./configure --prefix=/usr --libdir=/usr/lib64\
     --sysconfdir=/etc/gnome &&
     --sysconfdir=/etc/gnome &&
  make
  make
Line 68: Line 70:


  make install
  make install
== Configuring ==
Create a Bash startup file for compiz-fusion:
cat > /etc/profile.d/40-fusion.sh << "EOF"
# Begin /etc/profile.d/40-fusion.sh
export PATH="${PATH}:/opt/fusion/bin"
export PKG_CONFIG_PATH32="${PKG_CONFIG_PATH32}${PKG_CONFIG_PATH32+:}/opt/fusion/lib/pkgconfig"
export PKG_CONFIG_PATHN32="${PKG_CONFIG_PATHN32}${PKG_CONFIG_PATHN32+:}/opt/fusion/lib32/pkgconfig"
export PKG_CONFIG_PATH64="${PKG_CONFIG_PATH64}${PKG_CONFIG_PATH64+:}/opt/fusion/lib64/pkgconfig"
# End /etc/profile.d/40-fusion.sh
EOF
source /etc/profile

Latest revision as of 03:20, 19 January 2011

Download Source: http://releases.compiz-fusion.org/0.8.4/0.8.4/compiz-0.8.4.tar.bz2

Introduction to Compiz

Compiz Fusion, the reunification of Compiz and the Beryl fork, is a set of plugins and add-ons for Compiz, an OpenGL window and compositing manager.

Project Homepage: Unknown

Dependencies

Required

Optional

Compile the package:

./configure --prefix=/usr --sysconfdir=/etc/gnome &&
make

Install the package:

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" USE_ARCH=32 \
./configure --prefix=/usr --sysconfdir=/etc/gnome &&
make

Install the package:

make install

N32

TO DO!

64Bit

Compile the package:

CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" USE_ARCH=64 \
./configure --prefix=/usr  --libdir=/usr/lib64\
    --sysconfdir=/etc/gnome &&
make

Install the package:

make install
Retrieved from "?title=Compiz&oldid=20951"